aboutsummaryrefslogtreecommitdiffstats
path: root/print/gutenprint-base
diff options
context:
space:
mode:
authorkris <kris@FreeBSD.org>2002-10-06 05:38:10 +0800
committerkris <kris@FreeBSD.org>2002-10-06 05:38:10 +0800
commit21d7c7cf0ffe6074843cca96903dd0664161f7f8 (patch)
tree02c134695589e6ce679db75b9ffc961d17fe6e28 /print/gutenprint-base
parentf21d81ffc5fae687b37fee5bc65256c4c520da09 (diff)
downloadfreebsd-ports-gnome-21d7c7cf0ffe6074843cca96903dd0664161f7f8.tar.gz
freebsd-ports-gnome-21d7c7cf0ffe6074843cca96903dd0664161f7f8.tar.zst
freebsd-ports-gnome-21d7c7cf0ffe6074843cca96903dd0664161f7f8.zip
Fix port and remove BROKEN tag. The LIB_DEPENDS were being set with =
instead of += and so some of the dependencies were not being added.
Diffstat (limited to 'print/gutenprint-base')
-rw-r--r--print/gutenprint-base/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/print/gutenprint-base/Makefile b/print/gutenprint-base/Makefile
index f7640965b269..b3f2274bb2e5 100644
--- a/print/gutenprint-base/Makefile
+++ b/print/gutenprint-base/Makefile
@@ -12,8 +12,6 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= dgilbert@velocet.ca
-BROKEN= "Configure fails"
-
LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext
USE_GMAKE= yes
@@ -30,7 +28,7 @@ MAN8= cups-calibrate.8
.if defined(WITHOUT_CUPS)
PLIST_SUB+= CUPS="@comment "
.else
-LIB_DEPENDS= cups.2:${PORTSDIR}/print/cups-base
+LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-base
CONFIGURE_ARGS+= --with-cups=${PREFIX}
PLIST_SUB+= CUPS=""
.endif
@@ -38,7 +36,7 @@ PLIST_SUB+= CUPS=""
.if defined(WITHOUT_IJS)
PLIST_SUB+= IJS="@comment "
.else
-LIB_DEPENDS= ijs.1:${PORTSDIR}/print/libijs
+LIB_DEPENDS+= ijs.1:${PORTSDIR}/print/libijs
CONFIGURE_ARGS+= --with-ijs=yes
PLIST_SUB+= IJS=""
.endif