diff options
author | avl <avl@FreeBSD.org> | 2009-09-11 22:15:26 +0800 |
---|---|---|
committer | avl <avl@FreeBSD.org> | 2009-09-11 22:15:26 +0800 |
commit | 072f1197833394caf9e829aae0160b3badbc4454 (patch) | |
tree | 29c3f01e7a1b04f0628d38870603efa7d67dc834 /graphics | |
parent | a1350d9b35c4973262c901865b4145c49f6b5617 (diff) | |
download | freebsd-ports-gnome-072f1197833394caf9e829aae0160b3badbc4454.tar.gz freebsd-ports-gnome-072f1197833394caf9e829aae0160b3badbc4454.tar.zst freebsd-ports-gnome-072f1197833394caf9e829aae0160b3badbc4454.zip |
- Add IPV6 option
PR: ports/137976
Submitted by: Richard F. Ostrow Jr. <rich AT warfaresdl.com>
Approved by: tabthorpe, glarkin (mentors, implicit)
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/sane-backends/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/graphics/sane-backends/Makefile b/graphics/sane-backends/Makefile index 7f3d525b1a44..87fa165f0490 100644 --- a/graphics/sane-backends/Makefile +++ b/graphics/sane-backends/Makefile @@ -7,7 +7,7 @@ PORTNAME= sane-backends PORTVERSION= 1.0.20 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MASTER_SITES= http://alioth.debian.org/frs/download.php/3026/ \ ftp://ftp.sane-project.org/pub/sane/%SUBDIR%/ \ @@ -29,7 +29,8 @@ OPTIONS= USB "USB support" on \ NLS "NLS support" on \ GPHOTO2 "gPhoto2 support" off \ AVAHI "Avahi support" off \ - IEEE1284 "libieee1284 support" off + IEEE1284 "libieee1284 support" off \ + IPV6 "IPV6 support" off USE_GMAKE= yes GNU_CONFIGURE= yes @@ -61,6 +62,10 @@ USE_GETTEXT= yes PLIST_SUB+= NLS="" .endif +.if defined(WITHOUT_IPV6) +CONFIGURE_ARGS+= --disable-ipv6 +.endif + .if defined(WITH_GPHOTO2) LIB_DEPENDS+= gphoto2.2:${PORTSDIR}/graphics/libgphoto2 MAN5+= sane-gphoto2.5 |