diff options
author | Mikhail Teterin <mi@FreeBSD.org> | 2011-03-13 23:49:20 +0000 |
---|---|---|
committer | Mikhail Teterin <mi@FreeBSD.org> | 2011-03-13 23:49:20 +0000 |
commit | 930ee8b15e754ee0043fab5bbe0f1c51422c246d (patch) | |
tree | 9e51a51219cb015575ca11b11b01cde1a9a0635b /graphics/jbigkit | |
parent | d30d06eb65b0e98913550bc8d37c8e5e89ed1d73 (diff) |
Notes
Diffstat (limited to 'graphics/jbigkit')
-rw-r--r-- | graphics/jbigkit/Makefile | 2 | ||||
-rw-r--r-- | graphics/jbigkit/files/patch-ab | 8 | ||||
-rw-r--r-- | graphics/jbigkit/files/patch-ac | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/graphics/jbigkit/Makefile b/graphics/jbigkit/Makefile index 0c8e2b2744f8..13dc7965a95e 100644 --- a/graphics/jbigkit/Makefile +++ b/graphics/jbigkit/Makefile @@ -27,6 +27,6 @@ post-install: .endif post-build test: - cd ${WRKSRC} && ${SETENV} LD_LIBRARY_PATH=${WRKSRC}/libjbig ${MAKE} test + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} LD_LIBRARY_PATH=${WRKSRC}/libjbig ${MAKE} test .include <bsd.port.mk> diff --git a/graphics/jbigkit/files/patch-ab b/graphics/jbigkit/files/patch-ab index 85547868035a..cd58dfe7d825 100644 --- a/graphics/jbigkit/files/patch-ab +++ b/graphics/jbigkit/files/patch-ab @@ -1,7 +1,7 @@ ---- libjbig/Makefile.orig Fri Apr 10 20:33:27 1998 +--- libjbig/Makefile Fri Apr 10 20:33:27 1998 +++ libjbig/Makefile Wed Sep 16 11:57:16 1998 -@@ -5,9 +5,12 @@ - CC = gcc +@@ -5,9 +5,11 @@ +-CC = gcc # Options for the compiler: A high optimization level is suggested -CFLAGS = -O -Wall -ansi -pedantic @@ -21,7 +21,7 @@ +$(SOJBIGLIB): jbig.so jbig_tab.so + rm -f ${.TARGET} -+ $(CC) -o ${.TARGET} -shared -Wl,-soname,${.TARGET} ${.ALLSRC} ++ $(CC) -o ${.TARGET} ${LDFLAGS} -shared -Wl,-soname,${.TARGET} ${.ALLSRC} + ln -sf ${.TARGET} `echo ${.TARGET} | sed 's/\.so.*$$/.so/'` + jbig.o: jbig.c jbig.h diff --git a/graphics/jbigkit/files/patch-ac b/graphics/jbigkit/files/patch-ac index 681996343996..579cbf50171c 100644 --- a/graphics/jbigkit/files/patch-ac +++ b/graphics/jbigkit/files/patch-ac @@ -1,7 +1,7 @@ --- pbmtools/Makefile.orig Thu Jun 25 13:30:38 1998 +++ pbmtools/Makefile Thu Jun 25 13:31:00 1998 -@@ -5,11 +5,11 @@ - CC = gcc +@@ -5,11 +5,10 @@ +-CC = gcc # Options for the compiler -CFLAGS = -g -Wall -ansi -pedantic -I../libjbig |