diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-12 02:43:57 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-12 02:43:57 +0000 |
commit | 8290bb41776cc821e0def1d7693338f9aa6ca376 (patch) | |
tree | b8358ab8ebb2a86de5dd1e307f5e53af2be26fb5 /media-gfx/xv | |
parent | move patches around (diff) | |
download | gentoo-2-8290bb41776cc821e0def1d7693338f9aa6ca376.tar.gz gentoo-2-8290bb41776cc821e0def1d7693338f9aa6ca376.tar.bz2 gentoo-2-8290bb41776cc821e0def1d7693338f9aa6ca376.zip |
old diff
Diffstat (limited to 'media-gfx/xv')
-rw-r--r-- | media-gfx/xv/files/xv.diff | 125 |
1 files changed, 0 insertions, 125 deletions
diff --git a/media-gfx/xv/files/xv.diff b/media-gfx/xv/files/xv.diff deleted file mode 100644 index d4101f991c4e..000000000000 --- a/media-gfx/xv/files/xv.diff +++ /dev/null @@ -1,125 +0,0 @@ -Common subdirectories: xv-3.10a.clean/.xvpics and xv-3.10a/.xvpics -diff -Nu xv-3.10a.clean/Makefile xv-3.10a/Makefile ---- xv-3.10a.clean/Makefile Sat Jul 21 12:42:17 2001 -+++ xv-3.10a/Makefile Sat Jul 21 12:43:52 2001 -@@ -1,8 +1,8 @@ - # Makefile for xv - - # your C compiler (and options) of choice --CC = cc --# CC = gcc -ansi -+#CC = cc -+CC = gcc -ansi - - # use this if you're using 'cc' on a DEC Alpha (OSF/1) or MIPS (Ultrix) system: - # CC = cc -std1 -Olimit 750 -@@ -28,10 +28,11 @@ - - - ### Installation locations --BINDIR = /usr/local/bin --MANDIR = /usr/local/man/man1 -+BINDIR = /usr/bin -+MANDIR = /usr/share/man/man1 - MANSUF = 1 --LIBDIR = /usr/local/lib -+LIBDIR = /usr/lib -+DOCDIR = /usr/share/doc/xv-3.10a - - - buildit: all -@@ -59,12 +60,12 @@ - ### if, for whatever reason, you're unable to get the TIFF library to compile - ### on your machine, *COMMENT OUT* the following lines - ### --TIFF = -DDOTIFF --TIFFDIR = tiff --TIFFINC = -I$(TIFFDIR) --TIFFLIB = $(TIFFDIR)/libtiff.a --$(TIFFLIB): -- ( cd $(TIFFDIR) ; make CC='$(CC)' ) -+#TIFF = -DDOTIFF -+#TIFFDIR = tiff -+#TIFFINC = -I$(TIFFDIR) -+#TIFFLIB = $(TIFFDIR)/libtiff.a -+#$(TIFFLIB): -+# ( cd $(TIFFDIR) ; make CC='$(CC)' ) - - - ### -@@ -102,7 +103,7 @@ - - - ### for LINUX, uncomment the following line --#MCHN = -DLINUX -+MCHN = -DLINUX - - - # For SCO 1.1 (UNIX 3.2v2) machines, uncomment the following: -@@ -144,7 +145,7 @@ - - # if your machine has the usleep() function, uncomment the following line: - # if it doesn't, or you're not sure, leave this line alone. --#TIMERS = -DUSLEEP -+TIMERS = -DUSLEEP - - - # if XV locks up whenever you click on *any* of the buttons, the Timer() -@@ -163,7 +164,7 @@ - # if, during compilation, your system complains about the types - # 'u_long', 'u_short', 'u_int', etc. as being undefined, uncomment the - # following line: --#BSDTYPES = -DBSDTYPES -+BSDTYPES = -DBSDTYPES - - - # if your machine doesn't have 'vprintf()' or 'vsprintf()' -@@ -188,7 +189,7 @@ - $(NODIRENT) $(VPRINTF) $(TIMERS) $(UNIX) $(BSDTYPES) $(RAND) \ - $(DXWM) $(MCHN) - --LIBS = -lX11 $(JPEGLIB) $(TIFFLIB) -lm -+LIBS = -L/usr/X11R6/lib -lX11 $(JPEGLIB) $(TIFFLIB) -lm -ltiff - - OBJS = xv.o xvevent.o xvroot.o xvmisc.o xvimage.o xvcolor.o xvsmooth.o \ - xv24to8.o xvgif.o xvpm.o xvinfo.o xvctrl.o xvscrl.o xvalg.o \ -@@ -237,13 +238,14 @@ - - - install: all -- cp xv bggen vdcomp xcmap xvpictoppm $(BINDIR) -- cp docs/xv.man $(MANDIR)/xv.$(MANSUF) -- cp docs/bggen.man $(MANDIR)/bggen.$(MANSUF) -- cp docs/xcmap.man $(MANDIR)/xcmap.$(MANSUF) -- cp docs/xvp2p.man $(MANDIR)/xvpictoppm.$(MANSUF) -- cp docs/vdcomp.man $(MANDIR)/vdcomp.$(MANSUF) -- cp docs/xvdocs.ps* $(LIBDIR) -+ mkdir -p ${DESTDIR}/{${BINDIR},$(MANDIR),$(LIBDIR),${DOCDIR}} -+ cp xv bggen vdcomp xcmap xvpictoppm ${DESTDIR}/$(BINDIR) -+ cp docs/xv.man ${DESTDIR}/$(MANDIR)/xv.$(MANSUF) -+ cp docs/bggen.man ${DESTDIR}/$(MANDIR)/bggen.$(MANSUF) -+ cp docs/xcmap.man ${DESTDIR}/$(MANDIR)/xcmap.$(MANSUF) -+ cp docs/xvp2p.man ${DESTDIR}/$(MANDIR)/xvpictoppm.$(MANSUF) -+ cp docs/vdcomp.man ${DESTDIR}/$(MANDIR)/vdcomp.$(MANSUF) -+ cp docs/xvdocs.ps* ${DESTDIR}/$(DOCDIR) - - tar: - tar cvf xv.tar Makefile* Imakefile *.c *.h bits \ -Common subdirectories: xv-3.10a.clean/bits and xv-3.10a/bits -diff -Nu xv-3.10a.clean/config.h xv-3.10a/config.h ---- xv-3.10a.clean/config.h Sat Jul 21 12:42:17 2001 -+++ xv-3.10a/config.h Sat Jul 21 12:41:37 2001 -@@ -19,7 +19,7 @@ - # ifdef VMS - # define GUNZIP "UNCOMPRESS" - # else --# define GUNZIP "/usr/local/bin/gunzip -q" -+# define GUNZIP "/bin/gunzip -q" - # endif - #endif - -Common subdirectories: xv-3.10a.clean/docs and xv-3.10a/docs -Common subdirectories: xv-3.10a.clean/jpeg and xv-3.10a/jpeg -Common subdirectories: xv-3.10a.clean/tiff and xv-3.10a/tiff -Common subdirectories: xv-3.10a.clean/unsupt and xv-3.10a/unsupt -Common subdirectories: xv-3.10a.clean/vms and xv-3.10a/vms |