diff options
author | nectar <nectar@FreeBSD.org> | 1999-01-22 22:18:10 +0000 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 1999-01-22 22:18:10 +0000 |
commit | 39bf09fedd947c783a34bdd3d24ad040a12ce492 (patch) | |
tree | b8e82c185247e62e5c2282fa6a2def91cd7e15a1 /graphics/sane | |
parent | 57a4432f95b135f1037fd95e60b5a3bf9b4a1a21 (diff) | |
download | FreeBSD-ports-39bf09fedd947c783a34bdd3d24ad040a12ce492.zip FreeBSD-ports-39bf09fedd947c783a34bdd3d24ad040a12ce492.tar.gz |
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 6e89b6e..6f5706f 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 \ |