Ticket #9993: hyperestraier.diff
File hyperestraier.diff, 4.2 KB (added by rsky0711@…, 18 years ago) |
---|
-
textproc/hyperestraier/Portfile
diff -Naru hyperestraier-1.3.1/textproc/hyperestraier/Portfile hyperestraier-1.3.3/textproc/hyperestraier/Portfile
old new 2 2 3 3 PortSystem 1.0 4 4 name hyperestraier 5 version 1.3. 15 version 1.3.3 6 6 categories textproc net 7 7 maintainers rsky0711@gmail.com pelopor@nifty.com 8 8 … … 25 25 homepage http://hyperestraier.sourceforge.net/ 26 26 master_sites ${homepage} \ 27 27 sourceforge:${name} 28 checksums md5 198c728d73edc9d70c465ef219a72bb2\29 sha1 2baef585d5f594a62b319e27d12e410764fc0873\30 rmd160 f894c4a2d626f12907c3a255dfc8aa17946df84028 checksums md5 d2c544f48b8b92a62d7028c68736ce40 \ 29 sha1 857dba712fd30be7e8d0fbec5ea0a150664522e6 \ 30 rmd160 834f401f02231a5f48c7b8354d8ab8599d82155b 31 31 32 32 depends_build bin:pkg-config:pkgconfig 33 33 depends_lib port:qdbm port:libiconv port:zlib -
textproc/hyperestraier/files/patch-Makefile.in.diff
diff -Naru hyperestraier-1.3.1/textproc/hyperestraier/files/patch-Makefile.in.diff hyperestraier-1.3.3/textproc/hyperestraier/files/patch-Makefile.in.diff
old new 1 --- Makefile.in.orig 2005-07-23 20:04:57.000000000 +09002 +++ Makefile.in 2005-07-23 20:11:21.000000000 +09003 @@ -50,16 +50,16 @@4 5 # Building binaries6 CC = @CC@7 -CPPFLAGS = -I. -I$(HOME)/include -I/usr/local/include -I/usr/include/qdbm @MYCPPOPTS@ \8 +CPPFLAGS = -I. -I${prefix}/include -I${prefix}/include/qdbm @MYCPPOPTS@ \9 -D_XOPEN_SOURCE_EXTENDED=1 -D_GNU_SOURCE=1 -D__EXTENSIONS__=1 -D_HPUX_SOURCE=1 \10 -DPIC=1 -D_REENTRANT=111 CFLAGS = @MYCFLAGS@12 -LDFLAGS = -L. -L$(HOME)/lib -L/usr/local/lib @MYLDOPTS@13 +LDFLAGS = -L. -L${prefix}/lib @MYLDOPTS@14 LIBS = @LIBS@15 MTLIBS = @MYMTLIBS@16 SKLIBS = @MYSKLIBS@17 -LDENV = LD_RUN_PATH=/lib:/usr/lib:$(HOME)/lib:/usr/local/lib:@MYRUNPATH@:.18 -RUNENV = LD_LIBRARY_PATH=.:/lib:/usr/lib:$(HOME)/lib:/usr/local/lib:@MYRUNPATH@19 +LDENV = LD_RUN_PATH=/lib:/usr/lib:${prefix}/lib:@MYRUNPATH@:.20 +RUNENV = LD_LIBRARY_PATH=.:/lib:/usr/lib:${prefix}/lib:@MYRUNPATH@21 MYPOSTCMD = @MYPOSTCMD@22 23 24 @@ -377,10 +377,9 @@25 libestraier.so : libestraier.so.$(LIBVER).$(LIBREV).026 ln -f -s libestraier.so.$(LIBVER).$(LIBREV).0 $@27 28 -29 -libestraier.$(LIBVER).0.0.dylib :30 +libestraier.$(LIBVER).$(LIBREV).0.dylib :31 $(CC) -dynamiclib -o $@ \32 - -install_name libestraier.$(LIBVER).dylib \33 + -install_name $(MYLIBDIR)/libestraier.$(LIBVER).dylib \34 -current_version $(LIBVER).$(LIBREV).0 \35 -compatibility_version $(LIBVER).$(LIBREV) \36 $(MYLIBOBJS) $(LDFLAGS) $(SKLIBS) $(MTLIBS) $(LIBS) -
textproc/hyperestraier/files/patch-configure.diff
diff -Naru hyperestraier-1.3.1/textproc/hyperestraier/files/patch-configure.diff hyperestraier-1.3.3/textproc/hyperestraier/files/patch-configure.diff
old new 1 --- configure.orig 2005-07-23 20:04:51.000000000 +09002 +++ configure 2005-07-23 20:06:17.000000000 +09003 @@ -1276,12 +1276,12 @@4 5 # Building paths6 pathtmp="$PATH"7 -PATH="$HOME/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin"8 -PATH="$PATH:/usr/ccs/bin:/usr/ucb:$pathtmp"9 -LIBRARY_PATH="$HOME/lib:/usr/local/lib:$LIBRARY_PATH"10 -LD_LIBRARY_PATH="$HOME/lib:/usr/local/lib:$LD_LIBRARY_PATH"11 -CPATH="$HOME/include:/usr/local/include:$CPATH"12 -PKG_CONFIG_PATH="$HOME/lib/pkgconfig:/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH"13 +PATH="$PREFIX/bin:${prefix}/sbin:/usr/bin:/usr/sbin:/bin:/sbin"14 +PATH="$PREFIX/bin:/usr/ccs/bin:/usr/ucb:$pathtmp"15 +LIBRARY_PATH="$PREFIX/lib:$LIBRARY_PATH"16 +LD_LIBRARY_PATH="$PREFIX/lib:$LD_LIBRARY_PATH"17 +CPATH="$PREFIX/include:$CPATH"18 +PKG_CONFIG_PATH="$PREFIX/lib/pkgconfig"19 export PATH LIBRARY_PATH LD_LIBRARY_PATH CPATH PKG_CONFIG_PATH20 if type pkg-config > /dev/null 2>&121 then