rpms/nx/FC-5 NX-bufferoverflow.diff, NONE, 1.1 NX-data-range.patch, NONE, 1.1 RenderExtension.diff, NONE, 1.1 ppc-no-signed-char.diff, NONE, 1.1 .cvsignore, 1.2, 1.3 NX-noansi.diff, 1.1, 1.2 NX.diff, 1.1, 1.2 nx.spec, 1.1, 1.2 sources, 1.2, 1.3

Richard A. Stout (zipsonic) fedora-extras-commits at redhat.com
Wed Jun 7 05:29:25 UTC 2006


Author: zipsonic

Update of /cvs/extras/rpms/nx/FC-5
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv14414/FC-5

Modified Files:
	.cvsignore NX-noansi.diff NX.diff nx.spec sources 
Added Files:
	NX-bufferoverflow.diff NX-data-range.patch 
	RenderExtension.diff ppc-no-signed-char.diff 
Log Message:
auto-import nx-1.5.0-8 on branch FC-5 from nx-1.5.0-8.src.rpm

NX-bufferoverflow.diff:

--- NEW FILE NX-bufferoverflow.diff ---
--- nx-X11/lib/X11/XKBBind.c.orig	2005-04-25 16:51:03.000000000 +0000
+++ nx-X11/lib/X11/XKBBind.c	2005-04-25 16:59:53.000000000 +0000
@@ -428,7 +428,7 @@
 
 	if (xkbi->flags&XkbMapPending)
 	     changes= xkbi->changes;
-	else bzero(&changes,sizeof(XkbChangesRec));
+	else bzero(&changes,sizeof(changes));
 	XkbNoteMapChanges(&changes,event,XKB_XLIB_MAP_MASK);
 	LockDisplay(dpy);
 	if ((rtrn=XkbGetMapChanges(dpy,xkbi->desc,&changes))!=Success) {

NX-data-range.patch:

--- NEW FILE NX-data-range.patch ---

imThaiFlt.c:1287: warning: comparison is always true due to limited range of data type
imThaiFlt.c:1308: warning: comparison is always true due to limited range of data type
imThaiFlt.c:1309: warning: comparison is always true due to limited range of data type
imThaiFlt.c:1328: warning: comparison is always true due to limited range of data type
FSOpenFont.c:72: warning: comparison is always false due to limited range of data type
xkb.c:2625: warning: comparison is always false due to limited range of data type
xkbUtils.c:869: warning: comparison is always false due to limited range of data type
xkbUtils.c:873: warning: comparison is always false due to limited range of data type

Index: BUILD/nx-X11/lib/FS/FSOpenFont.c
===================================================================
--- BUILD.orig/nx-X11/lib/FS/FSOpenFont.c
+++ BUILD/nx-X11/lib/FS/FSOpenFont.c
@@ -62,7 +62,7 @@ FSOpenBitmapFont(svr, hint, fmask, name,
     char       *name;
     Font       *otherid;
 {
-    unsigned char nbytes;
+    long nbytes;
     fsOpenBitmapFontReq *req;
     fsOpenBitmapFontReply reply;
     Font        fid;
Index: BUILD/nx-X11/lib/X11/imThaiFlt.c
===================================================================
--- BUILD.orig/nx-X11/lib/X11/imThaiFlt.c
+++ BUILD/nx-X11/lib/X11/imThaiFlt.c
@@ -588,7 +588,7 @@ Private Bool ThaiComposeConvert();
   ( \
    ((c)<=0x7F) ? \
      (wchar_t)(c) : \
-     ((0x0A1<=(c)&&(c)<=0x0FF) ? ((wchar_t)(c)-0xA0+0x0E00) : 0))
+     ((0x0A1<=(c)) ? ((wchar_t)(c)-0xA0+0x0E00) : 0))
 
 /*
  * Macros to save and recall last input character in XIC
Index: BUILD/nx-X11/programs/Xserver/xkb/xkbUtils.c
===================================================================
--- BUILD.orig/nx-X11/programs/Xserver/xkb/xkbUtils.c
+++ BUILD/nx-X11/programs/Xserver/xkb/xkbUtils.c
@@ -855,7 +855,7 @@ XkbComputeDerivedState(xkbi)
 {
 XkbStatePtr	state= &xkbi->state;
 XkbControlsPtr	ctrls= xkbi->desc->ctrls;
-char		grp;
+unsigned char		grp;
 
     state->mods= (state->base_mods|state->latched_mods);
     state->mods|= state->locked_mods;
@@ -866,11 +866,11 @@ char		grp;
 
 
     grp= state->locked_group;
-    if ((grp>=ctrls->num_groups) || (grp<0))
+    if (grp>=ctrls->num_groups)
 	state->locked_group= XkbAdjustGroup(grp,ctrls);
 
     grp= state->locked_group+state->base_group+state->latched_group;
-    if ((grp>=ctrls->num_groups) || (grp<0))
+    if (grp>=ctrls->num_groups)
 	 state->group= XkbAdjustGroup(grp,ctrls);
     else state->group= grp;
     XkbComputeCompatState(xkbi);
--- BUILD.orig/nx-X11/programs/Xserver/xkb/xkb.c.orig	2005-08-15 03:59:22.000000000 +0000
+++ BUILD/nx-X11/programs/Xserver/xkb/xkb.c	2005-08-15 04:07:30.000000000 +0000
@@ -2621,8 +2621,7 @@
 	    stuff->maxKeyCode= xkb->max_key_code;
 	}
 	else {
-	    if ((stuff->minKeyCode<XkbMinLegalKeyCode)||
-				(stuff->maxKeyCode>XkbMaxLegalKeyCode)) {
+	    if (!XkbIsLegalKeycode(stuff->minKeyCode)) {
 		client->errorValue= _XkbErrCode3(2,stuff->minKeyCode,
 							stuff->maxKeyCode);
 		return BadValue;

RenderExtension.diff:

--- NEW FILE RenderExtension.diff ---
--- nxcomp/RenderExtension.h.orig       2005-02-19 18:23:32.000000000 +0000
+++ nxcomp/RenderExtension.h    2005-08-27 23:16:05.000000000 +0100
@@ -68,6 +68,8 @@
 // The message class.
 //

+class RenderMinorExtensionStore;
+
 class RenderExtensionMessage : public Message
 {
   friend class RenderExtensionStore;

ppc-no-signed-char.diff:

--- NEW FILE ppc-no-signed-char.diff ---
--- nx-X11/config/cf/linux.cf.orig	2005-06-28 04:27:36.000000000 +0200
+++ nx-X11/config/cf/linux.cf	2005-06-28 04:28:49.000000000 +0200
@@ -810,7 +810,7 @@
 #endif
 
 #ifdef PpcArchitecture
-# define DefaultCCOptions	-fsigned-char
+# define DefaultCCOptions
 # ifndef OptimizedCDebugFlags
 #  define OptimizedCDebugFlags	DefaultGcc2PpcOpt
 # endif


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/nx/FC-5/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore	11 May 2005 21:59:51 -0000	1.2
+++ .cvsignore	7 Jun 2006 05:29:25 -0000	1.3
@@ -1,9 +1,9 @@
 docs.tar.bz2
-nx-X11-1.4.0-10.tar.gz
-nxagent-1.4.0-65.tar.gz
-nxcomp-1.4.0-31.tar.gz
-nxcompext-1.4.0-3.tar.gz
-nxdesktop-1.4.0-61.tar.gz
-nxproxy-1.4.0-2.tar.gz
-nxscripts-1.4.0-3.tar.gz
-nxviewer-1.4.0-4.tar.gz
+nx-X11-1.5.0-21.tar.gz
+nxagent-1.5.0-112.tar.gz
+nxcomp-1.5.0-80.tar.gz
+nxcompext-1.5.0-20.tar.gz
+nxdesktop-1.5.0-78.tar.gz
+nxproxy-1.5.0-9.tar.gz
+nxscripts-1.5.0-11.tar.gz
+nxviewer-1.5.0-15.tar.gz

NX-noansi.diff:

Index: NX-noansi.diff
===================================================================
RCS file: /cvs/extras/rpms/nx/FC-5/NX-noansi.diff,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- NX-noansi.diff	11 May 2005 21:59:51 -0000	1.1
+++ NX-noansi.diff	7 Jun 2006 05:29:25 -0000	1.2
@@ -1,69 +1,59 @@
 --- lib/Xxf86dga/Imakefile.noansi	2004-04-19 15:55:51.000000000 +0000
 +++ lib/Xxf86dga/Imakefile	2004-04-19 20:10:55.000000000 +0000
-@@ -36,6 +36,11 @@
+@@ -36,6 +36,9 @@
  
  #define UnsharedLibObjCompile(options) LibObjCompile(unshared,$(CDEBUGFLAGS) $(CLIBDEBUGFLAGS) options $(PICFLAGS))
-
-+#if defined(ia64Architecture) 
+ 
 +#undef DefaultCCOptions
 +#define DefaultCCOptions GccWarningOptions
-+#endif
 +
  #include <Library.tmpl>
  
  MANDIR = $(LIBMANDIR)
 --- lib/Xaw6/Imakefile.orig	2004-04-19 20:34:53.000000000 +0000
 +++ lib/Xaw6/Imakefile	2004-04-19 20:35:05.000000000 +0000
-@@ -115,6 +115,11 @@
+@@ -115,6 +115,9 @@
  
  INCLUDES = -I$(AWIDGETSRC)
  
-+#if defined(ia64Architecture)
 +#undef DefaultCCOptions
 +#define DefaultCCOptions GccWarningOptions
-+#endif
 +
  #include <Library.tmpl>
  
  #if DoSharedLib && SharedDataSeparation
 --- lib/Xaw/Imakefile.orig	2004-04-19 20:38:05.000000000 +0000
 +++ lib/Xaw/Imakefile	2004-04-19 20:38:30.000000000 +0000
-@@ -194,6 +194,11 @@
+@@ -194,6 +194,9 @@
  	XawI18n.o \
  	XawInit.o
  
-+#if defined(ia64Architecture)
 +#undef DefaultCCOptions
 +#define DefaultCCOptions GccWarningOptions
-+#endif
 +
  #include <Library.tmpl>
  
  #if DoSharedLib && SharedDataSeparation
 --- programs/xedit/lisp/Imakefile.orig	2004-04-19 21:52:42.000000000 +0000
 +++ programs/xedit/lisp/Imakefile	2004-04-19 21:53:11.000000000 +0000
-@@ -98,6 +98,11 @@
+@@ -98,6 +98,9 @@
  		write.o \
  		xedit.o
  
-+#if defined(ia64Architecture)
 +#undef DefaultCCOptions
 +#define DefaultCCOptions GccWarningOptions
-+#endif
 +
  #include <Library.tmpl>
  
  AllTarget(ProgramTargetName($(SAMP)))
 --- programs/Xserver/hw/xfree86/fbdevhw/Imakefile.orig	2004-04-20 02:04:59.000000000 +0000
 +++ programs/Xserver/hw/xfree86/fbdevhw/Imakefile	2004-04-20 02:06:13.000000000 +0000
-@@ -1,6 +1,10 @@
+@@ -1,6 +1,8 @@
  XCOMM $XFree86: xc/programs/Xserver/hw/xfree86/fbdevhw/Imakefile,v 1.11tsi Exp $
  
  #define IHaveModules
-+#if defined(ia64Architecture)
 +#undef DefaultCCOptions
 +#define DefaultCCOptions GccWarningOptions
-+#endif
  #include <Server.tmpl>
  
  #if defined(LinuxArchitecture) && LinuxFBDevSupport

NX.diff:

Index: NX.diff
===================================================================
RCS file: /cvs/extras/rpms/nx/FC-5/NX.diff,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- NX.diff	11 May 2005 21:59:51 -0000	1.1
+++ NX.diff	7 Jun 2006 05:29:25 -0000	1.2
@@ -1,31 +1,31 @@
---- nxcomp/configure.in.old	2004-05-17 13:33:16.748612843 +0000
-+++ nxcomp/configure.in	2004-05-17 13:37:12.710956205 +0000
-@@ -5,10 +5,8 @@
- AC_INIT(NX.h)
- AC_PREREQ(2.13)
- 
--dnl Reset default compilation flags.
--
--CXXFLAGS="-O3"
--CPPFLAGS="-O3"
-+CFLAGS="-O2 -fPIC"
-+CXXFLAGS="-O2 -fPIC"
- 
- dnl Reset default linking directives.
- 
---- nxcompext/configure.in.old	2004-05-17 14:24:52.506541849 +0000
-+++ nxcompext/configure.in	2004-05-17 14:25:03.294318138 +0000
-@@ -5,8 +5,8 @@
- AC_PREREQ(2.13)
- 
- dnl Reset default compilation flags.
--CXXFLAGS="-O3"
--CPPFLAGS="-O3"
-+CXXFLAGS="-O2 -fPIC"
-+CPPFLAGS="-O2 -fPIC"
- 
- dnl Check for programs.
- AC_PROG_CXX
+#--- nxcomp/configure.in.old	2004-05-17 13:33:16.748612843 +0000
+#+++ nxcomp/configure.in	2004-05-17 13:37:12.710956205 +0000
+#@@ -5,10 +5,8 @@
+# AC_INIT(NX.h)
+# AC_PREREQ(2.13)
+# 
+#-dnl Reset default compilation flags.
+#-
+#-CXXFLAGS="-O3"
+#-CPPFLAGS="-O3"
+#+CFLAGS="-O2 -fPIC"
+#+CXXFLAGS="-O2 -fPIC"
+# 
+# dnl Reset default linking directives.
+# 
+#--- nxcompext/configure.in.old	2004-05-17 14:24:52.506541849 +0000
+#+++ nxcompext/configure.in	2004-05-17 14:25:03.294318138 +0000
+#@@ -5,8 +5,8 @@
+# AC_PREREQ(2.13)
+# 
+# dnl Reset default compilation flags.
+#-CXXFLAGS="-O3"
+#-CPPFLAGS="-O3"
+#+CXXFLAGS="-O2 -fPIC"
+#+CPPFLAGS="-O2 -fPIC"
+# 
+# dnl Check for programs.
+# AC_PROG_CXX
 --- nx-X11/lib/X11/XlcDL.c.old	2004-05-17 15:01:39.385673123 +0000
 +++ nx-X11/lib/X11/XlcDL.c	2004-05-17 15:02:15.963136940 +0000
 @@ -58,10 +58,8 @@
@@ -40,28 +40,17 @@
  # endif /* defined(__sparcv9) */
  # ifdef _MACH64_NAME
  #  define	_MACH64_NAME_LEN	(sizeof (_MACH64_NAME) - 1)
---- nx-X11/lib/xtrans/Xtranssock.c.old	2004-05-17 19:35:29.031496228 +0000
-+++ nx-X11/lib/xtrans/Xtranssock.c	2004-05-17 19:41:28.438822523 +0000
-@@ -2118,7 +2118,7 @@
-          * platforms as well.
-          */
- 
--        #ifndef __sun
-+        #if !defined(__sun) && !defined(__ia64__)
- 
-         sa.sa_restorer = NULL;
- 
---- nxviewer/nxviewer/Imakefile.old	2004-05-31 15:33:45.000000000 +0000
-+++ nxviewer/nxviewer/Imakefile	2004-05-31 15:35:06.000000000 +0000
-@@ -44,6 +44,8 @@
- 
- USRLIBDIR = ../../nx-X11/exports/lib
- 
-+XPLIB =
-+
- #ifdef SunArchitecture
- USRLIBDIR = /usr/NX/lib
- SUN_LIB = -lX11 -lXext -L/usr/openwin/lib
+#--- nxviewer/nxviewer/Imakefile.old	2004-05-31 15:33:45.000000000 +0000
+#+++ nxviewer/nxviewer/Imakefile	2004-05-31 15:35:06.000000000 +0000
+#@@ -44,6 +44,8 @@
+# 
+# USRLIBDIR = ../../nx-X11/exports/lib
+# 
+#+XPLIB =
+#+
+# #ifdef SunArchitecture
+# USRLIBDIR = /usr/NX/lib
+# SUN_LIB = -lX11 -lXext -L/usr/openwin/lib
 --- nx-X11/programs/Imakefile.old	2004-09-11 03:30:15.738465241 +0200
 +++ nx-X11/programs/Imakefile	2004-09-11 03:30:39.661194763 +0200
 @@ -125,7 +125,7 @@


Index: nx.spec
===================================================================
RCS file: /cvs/extras/rpms/nx/FC-5/nx.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nx.spec	11 May 2005 21:59:51 -0000	1.1
+++ nx.spec	7 Jun 2006 05:29:25 -0000	1.2
@@ -1,29 +1,34 @@
 Name:           nx
-Version:        1.4.0
-Release:        5
+Version:        1.5.0
+Release:        8
 Summary:        Proxy system for X11
 
 Group:          Applications/Internet
 License:        GPL, MIT/X11 for X11 bits
 URL:            http://www.nomachine.com
-Source0:	nxproxy-%{version}-2.tar.gz
-Source1:	nxcomp-%{version}-31.tar.gz
-Source2:	nxcompext-%{version}-3.tar.gz
-Source3:	nx-X11-%{version}-10.tar.gz
-Source4:	nxagent-%{version}-65.tar.gz
-Source5:	nxviewer-%{version}-4.tar.gz
-Source6:	nxdesktop-%{version}-61.tar.gz
-Source7:	nxscripts-%{version}-3.tar.gz
-Source8:	nxagent
-Source9:	docs.tar.bz2
+Source0:	nxproxy-1.5.0-9.tar.gz
+Source1:	nxcomp-1.5.0-80.tar.gz
+Source2:	nxcompext-1.5.0-20.tar.gz
+Source3:	nx-X11-1.5.0-21.tar.gz
+Source4:	nxagent-1.5.0-112.tar.gz
+Source5:	nxviewer-1.5.0-15.tar.gz
+Source6:	nxdesktop-1.5.0-78.tar.gz
+Source7:	nxscripts-1.5.0-11.tar.gz
+Source9:	nxagent
+Source10:	docs.tar.bz2
 Patch0:		NX.diff
 Patch1:		NX-noansi.diff
 Patch2:		p_XFree86-4.3-ppc64.diff
+Patch3:		RenderExtension.diff
+Patch5:		NX-bufferoverflow.diff
+Patch6:		NX-data-range.patch
+Patch7:		ppc-no-signed-char.diff
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
-BuildRequires:  expat-devel audiofile-devel openssl-devel libjpeg-devel libpng-devel XFree86-devel
-Requires:	xorg-x11 xorg-x11-tools
+BuildRequires:  expat-devel audiofile-devel openssl-devel libjpeg-devel libpng-devel libX11-devel libXp-devel imake
+Requires:	xorg-x11-server-Xorg xorg-x11-apps xorg-x11-utils policycoreutils
+Excludearch:	x86_64
 
 %description
 NX provides a proxy system for the X Window System.
@@ -31,10 +36,14 @@
 %prep
 %setup -q -T -c %{name}-%{version} -a0 -a1 -a2 -a3 -a4 -a5 -a6 -a7
 %patch0 -p0
+%patch3 -p0
 pushd nx-X11
 %patch1 -p0
 %patch2 -p1
 popd
+%patch5 -p0
+%patch6 -p1
+%patch7 -p0
 ln -s rdesktop.1 nxdesktop/doc/nxdesktop.1
 cat >> nx-X11/config/cf/host.def << EOF
 #ifdef  i386Architecture
@@ -52,14 +61,9 @@
 EOF
 
 %build
-%ifarch x86_64
-export CFLAGS="%{optflags} -fPIC"
-export CXXFLAGS="%{optflags} -fPIC"
-%else
 export CFLAGS="%{optflags}"
 export CXXFLAGS="%{optflags}"
-%endif
-perl -pi -e"s|CXXFLAGS=.-O.*|CXXFLAGS=$CXXFLAGS|" */configure
+perl -pi -e"s|CXXFLAGS=.-O.*|CXXFLAGS=\"$CXXFLAGS\"|" */configure
 # build Compression Library and Proxy
 for i in nxcomp nxproxy; do
   pushd $i; ./configure; make; popd
@@ -75,7 +79,7 @@
 # build RFB Agent
 pushd nxviewer
   xmkmf -a
-  cp -a /usr/X11R6/%{_lib}/libXp.so* ../nx-X11/exports/lib/
+  cp -a %{_libdir}/libXp.so* ../nx-X11/exports/lib/
   make 2> /dev/null
 popd
 # build RDP Agent
@@ -98,7 +102,7 @@
       $RPM_BUILD_ROOT/%{_libdir}/NX/lib
 install -m 755 nx-X11/programs/Xserver/nxagent \
   $RPM_BUILD_ROOT/%{_libdir}/NX
-install -m 755 %{SOURCE8} $RPM_BUILD_ROOT/%{_bindir}
+install -m 755 %{SOURCE9} $RPM_BUILD_ROOT/%{_bindir}
 # install Compression Libraries and Proxy
 cp -a nxcomp/libXcomp.so.* $RPM_BUILD_ROOT/%{_libdir}/NX/lib
 cp -a nxcompext/libXcompext.so.* $RPM_BUILD_ROOT/%{_libdir}/NX/lib
@@ -107,10 +111,9 @@
 # install RFB Agent
 pushd nxviewer
   make install DESTDIR=$RPM_BUILD_ROOT
-  mv $RPM_BUILD_ROOT/usr/X11R6/bin/nxviewer $RPM_BUILD_ROOT/%{_libdir}/NX
+  mv $RPM_BUILD_ROOT/%{_bindir}/nxviewer $RPM_BUILD_ROOT/%{_libdir}/NX
   ln -snf nxagent $RPM_BUILD_ROOT/%{_bindir}/nxviewer
   chmod 755 $RPM_BUILD_ROOT/%{_bindir}/nxviewer
-  mv $RPM_BUILD_ROOT/usr/X11R6/bin/nxpasswd $RPM_BUILD_ROOT/%{_bindir}
 popd
 # install RDP Agent
 %ifnarch ppc ppc64 s390 s390x
@@ -128,7 +131,7 @@
 mkdir -p $RPM_BUILD_ROOT/%{_datadir}/doc/packages/NX
 cp -r nxscripts $RPM_BUILD_ROOT/%{_datadir}/doc/packages/NX
 # documentation and license
-tar xjf %{SOURCE9} -C $RPM_BUILD_ROOT/%{_datadir}/doc/packages/NX
+tar xjf %{SOURCE10} -C $RPM_BUILD_ROOT/%{_datadir}/doc/packages/NX
 install -m 644 nxcomp/LICENSE   $RPM_BUILD_ROOT/%{_datadir}/doc/packages/NX
 for i in nxcomp nxdesktop; do
   mkdir $RPM_BUILD_ROOT/%{_datadir}/doc/packages/NX/$i
@@ -138,6 +141,22 @@
 rm -rf nxdesktop/doc/CVS
 cp -r nxdesktop/doc $RPM_BUILD_ROOT/%{_datadir}/doc/packages/NX/nxdesktop
 
+%post
+%{_sbindir}/semanage fcontext -f -- -a -t textrel_shlib_t '%{_libdir}/NX/lib/libXcomp.so.1.5.0' 2>/dev/null || :
+%{_sbindir}/semanage fcontext -f -- -a -t textrel_shlib_t '%{_libdir}/NX/lib/libXcompext.so.1.5.0' 2>/dev/null || :
+%{_bindir}/chcon -t textrel_shlib_t %{_libdir}/NX/lib/libXcomp.so.1.5.0 2>/dev/null || :
+%{_bindir}/chcon -t textrel_shlib_t %{_libdir}/NX/lib/libXcompext.so.1.5.0 2>/dev/null || :
+if [ ! -e /usr/X11R6/lib/X11 ]
+then
+	mkdir -p /usr/X11R6/lib 2>/dev/null || :
+	ln -snf /usr/share/X11 /usr/X11R6/lib/X11 2>/dev/null || :
+fi
+
+%postun
+if [ $1 -eq 0 ]; then
+  %{_sbindir}/semanage fcontext -f -- -d -t textrel_shlib_t '%{_libdir}/NX/lib/libXcomp.so.1.5.0' 2>/dev/null || :
+  %{_sbindir}/semanage fcontext -f -- -d -t textrel_shlib_t '%{_libdir}/NX/lib/libXcompext.so.1.5.0' 2>/dev/null || :
+fi
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -156,13 +175,46 @@
 %endif
 
 %changelog
+* Tue Jun 06 2006 Rick Stout <zipsonic[AT]gmail.com> - 1.5.0-8
+- adapting spec for fedora-extras
+- excluding x86_64 arch at this time. nxagent causes segfaults
+* Mon May 08 2006 Rick Stout <zipsonic[AT]gmail.com> - 1.5.0-7.FC5
+- added a section to %post that links /usr/X11R6/lib/X11 to /usr/share/X11
+  which is needed for nxagent to function properly
+* Sun May 07 2006 Rick Stout <zipsonic[AT]gmail.com> - 1.5.0-6.FC5
+- added support for selinux
+* Tue May 02 2006 Rick Stout <zipsonic[AT]gmail.com> - 1.5.0-5.FC5
+- reenabled nxviewer
+* Mon May 01 2006 Rick Stout <zipsonic[AT]gmail.com> - 1.5.0-4.FC5.2
+- rebuilt for FC5
+- nxviewer still disabled
+* Mon Jan 30 2006 Rick Stout <zipsonic[AT]gmail.com> - 1.5.0-4.FC5
+- disabled the nxviewer build because it doesn't like modular X
+- updated xorg dependencies
+* Tue Dec 13 2005 Rick Stout <zipsonic[AT]gmail.com> - 1.5.0-4
+- updated perl script line 76 to have quotes
+* Tue Dec 13 2005 Rick Stout <zipsonic[AT]gmail.com> - 1.5.0-3
+- updated all components to most recent release - Maintenance 3
+- removed NX-1.5.diff
+* Wed Aug 31 2005 Rick Stout <zipsonic[AT]gmail.com> - 1.5.0-2
+- updated nxagent to ver .90
+- added patches from SuSE to update some compiler warnings and buffer overflows
+* Fri Aug 12 2005 Rick Stout <zipsonic[AT]gmail.com> - 1.5.0-1
+- updated nxcomp to ver .65
+* Tue Jul 26 2005 Rick Stout <zipsonic[AT]gmail.com> - 1.5.0-0
+- Updated to 1.5.0 final
+* Mon Jul 11 2005 Rick Stout <zipsonic[AT]gmail.com> - 1.4.9.4-0
+- Updated to 1.5.0 snapshot 4
+* Thu Jun 30 2005 Rick Stout <zipsonic[AT]gmail.com> - 1.4.9.3-0
+- reworked package for update to 1.5.0 devel snapshot 3 (1.4.9.3)
+- Commented out Xtranssock patch in NX.diff (doesn't seem to be necessary)
 * Mon Apr 11 2005 Tom "spot" Callaway <tcallawa at redhat.com> - 1.4.0-5
 - spec cleanups
 - reworked Patch1 to make it apply without arch conditional
 * Mon Feb 14 2005 Rick Stout <zipsonic[AT]gmail.com> - 1.4.0-4
 - updated nx-X11, nxproxy, nxcomp, nxagent and nxdesktop
 - released to address X11 security concerns.
-* Tue Nov 09 2004 Rick Stout <zipsonci[AT]gmail.com> - 1.4.0-3
+* Tue Nov 09 2004 Rick Stout <zipsonic[AT]gmail.com> - 1.4.0-3
 - updated to 1.4.0 final
 * Mon Oct 11 2004 Rick Stout <zipsonic[AT]gmail.com> - 1.4.0-2
 - Changed naming structure to be more friendly (lowercase)


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/nx/FC-5/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources	11 May 2005 21:59:51 -0000	1.2
+++ sources	7 Jun 2006 05:29:25 -0000	1.3
@@ -1,9 +1,9 @@
 0511072ee377316879bb91a75153ed47  docs.tar.bz2
-a8c6ab48021c91e55b902cd25097f33d  nx-X11-1.4.0-10.tar.gz
-e39f2a3384edc9e33d8b68405fb91228  nxagent-1.4.0-65.tar.gz
-c2eb354e141e9f0e81f4cd1673b2a3ae  nxcomp-1.4.0-31.tar.gz
-ab12f1f32329f5da0f53dd0969fe897e  nxcompext-1.4.0-3.tar.gz
-9399fa94c59fbde2a158618e507635d7  nxdesktop-1.4.0-61.tar.gz
-15d89810730c7ed0e669b5525e5f3620  nxproxy-1.4.0-2.tar.gz
-eaf568181a6f6c84ab673ce8a98c69f0  nxscripts-1.4.0-3.tar.gz
-629f90c1f8ef50517e8b1de2c30adcb4  nxviewer-1.4.0-4.tar.gz
+11877c3357732a957e3bf7e3d2f2ca0a  nx-X11-1.5.0-21.tar.gz
+160726ed67698a9694b707950c49e19e  nxagent-1.5.0-112.tar.gz
+782f04870142c9fc5b2e1f654fd0a5d7  nxcomp-1.5.0-80.tar.gz
+6a5b8b79b9e0cc81b88233b18c4f227f  nxcompext-1.5.0-20.tar.gz
+6c20c1300ca6b4d362237ef44cfee7f7  nxdesktop-1.5.0-78.tar.gz
+d2e3c1a109db336dfa497f4c2004f2d5  nxproxy-1.5.0-9.tar.gz
+9432195d04bf226909bc5d68773657a3  nxscripts-1.5.0-11.tar.gz
+ff3e5a4c1601b58f5fc405f990691bdf  nxviewer-1.5.0-15.tar.gz




More information about the fedora-extras-commits mailing list