diff options
author | marcus <marcus@FreeBSD.org> | 2004-02-05 15:55:59 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-02-05 15:55:59 +0800 |
commit | c285c488dded825d749786215d4dc5983f6fc02a (patch) | |
tree | c4a064f67fec65fb16b22c39303eb7e2bce2a050 /print/gimp-print | |
parent | 53822a66faf4b50a6f20aca53c7c65789cdfe118 (diff) | |
download | freebsd-ports-gnome-c285c488dded825d749786215d4dc5983f6fc02a.tar.gz freebsd-ports-gnome-c285c488dded825d749786215d4dc5983f6fc02a.tar.zst freebsd-ports-gnome-c285c488dded825d749786215d4dc5983f6fc02a.zip |
Make sure the libgimpprint.so library is linked against libintl to resolve
some gettext symbols.
Diffstat (limited to 'print/gimp-print')
-rw-r--r-- | print/gimp-print/Makefile | 2 | ||||
-rw-r--r-- | print/gimp-print/files/patch-src_main_Makefile.in | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/print/gimp-print/Makefile b/print/gimp-print/Makefile index c0e140b07c70..546105244517 100644 --- a/print/gimp-print/Makefile +++ b/print/gimp-print/Makefile @@ -6,7 +6,7 @@ PORTNAME= gimp-print PORTVERSION= 4.2.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= print MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/print/gimp-print/files/patch-src_main_Makefile.in b/print/gimp-print/files/patch-src_main_Makefile.in new file mode 100644 index 000000000000..47731bf4f97c --- /dev/null +++ b/print/gimp-print/files/patch-src_main_Makefile.in @@ -0,0 +1,11 @@ +--- src/main/Makefile.in.orig Thu Feb 5 01:35:39 2004 ++++ src/main/Makefile.in Thu Feb 5 01:36:38 2004 +@@ -223,7 +223,7 @@ + + DEFS = @DEFS@ -I. -I$(srcdir) -I../.. + CPPFLAGS = @CPPFLAGS@ +-LDFLAGS = @LDFLAGS@ ++LDFLAGS = @LDFLAGS@ @INTLLIBS@ + LIBS = @LIBS@ + libgimpprint_la_DEPENDENCIES = + libgimpprint_la_OBJECTS = print-lexmark.lo print-canon.lo \ |