diff options
author | Jacques Vidrine <nectar@FreeBSD.org> | 1999-01-22 22:18:10 +0000 |
---|---|---|
committer | Jacques Vidrine <nectar@FreeBSD.org> | 1999-01-22 22:18:10 +0000 |
commit | c7470ab0c2c3a173a27354ead594260c5d649fd9 (patch) | |
tree | 080f901629e4aedcbdf0fe34e206e76b13c4a7b3 /graphics/sane | |
parent | Oops, forgot to update depends. (diff) |
Fixup: Ports that want gtk+ 1.0.x should now reference gtk10-config.
Diffstat (limited to 'graphics/sane')
-rw-r--r-- | graphics/sane/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/graphics/sane/Makefile b/graphics/sane/Makefile index 6e89b6e9daf4..6f5706fca32b 100644 --- a/graphics/sane/Makefile +++ b/graphics/sane/Makefile @@ -4,7 +4,7 @@ # Whom: gary@hotlava.com # obrien@FreeBSD.org # -# $Id: Makefile,v 1.11 1998/10/05 03:04:39 steve Exp $ +# $Id: Makefile,v 1.12 1998/12/06 09:37:28 vanilla Exp $ # DISTNAME= sane-1.00 @@ -14,7 +14,7 @@ MASTER_SITES= ftp://ftp.mostang.com/pub/sane/ \ MAINTAINER= gary@hotlava.com -LIB_DEPENDS= gtk.1:${PORTSDIR}/x11-toolkits/gtk \ +LIB_DEPENDS= gtk10.1:${PORTSDIR}/x11-toolkits/gtk10 \ jpeg.9:${PORTSDIR}/graphics/jpeg VERSION!= sysctl -n kern.osreldate @@ -23,10 +23,12 @@ USE_GMAKE= yes GNU_CONFIGURE= yes .if ${VERSION} < 300000 CONFIGURE_ENV= CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" + LIBS="-L${LOCALBASE}/lib" \ + GTK_CONFIG="${X11BASE}/bin/gtk10-config" .else CONFIGURE_ENV= CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib -lcam" + LIBS="-L${LOCALBASE}/lib -lcam" \ + GTK_CONFIG="${X11BASE}/bin/gtk10-config" .endif MAN1= scanimage.1 \ |