diff options
author | wiz <wiz@pkgsrc.org> | 2008-12-21 11:37:15 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2008-12-21 11:37:15 +0000 |
commit | 4cb8a53a7b47d112d95a3b58f1da052823ea86b0 (patch) | |
tree | 29adfd8381ad1ac2af5c2ccbf3e2a8454f6f5561 /www/epiphany | |
parent | 6c2bb9406e785198d4bbb0cd2b69a7955272cb98 (diff) | |
download | pkgsrc-4cb8a53a7b47d112d95a3b58f1da052823ea86b0.tar.gz |
Add avahi option, on by default, for zeroconf bookmarks.
Bump PKGREVISION.
Diffstat (limited to 'www/epiphany')
-rw-r--r-- | www/epiphany/Makefile | 4 | ||||
-rw-r--r-- | www/epiphany/options.mk | 13 |
2 files changed, 12 insertions, 5 deletions
diff --git a/www/epiphany/Makefile b/www/epiphany/Makefile index 1804fee99f3..dd273afd4c2 100644 --- a/www/epiphany/Makefile +++ b/www/epiphany/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.90 2008/12/12 01:27:24 jmcneill Exp $ +# $NetBSD: Makefile,v 1.91 2008/12/21 11:37:15 wiz Exp $ # DISTNAME= epiphany-2.24.2.1 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= www gnome MASTER_SITES= ${MASTER_SITE_GNOME:=sources/epiphany/2.24/} EXTRACT_SUFX= .tar.bz2 diff --git a/www/epiphany/options.mk b/www/epiphany/options.mk index f8eb2650d1b..acd12f88b95 100644 --- a/www/epiphany/options.mk +++ b/www/epiphany/options.mk @@ -1,14 +1,21 @@ -# $NetBSD: options.mk,v 1.3 2008/12/12 01:27:24 jmcneill Exp $ +# $NetBSD: options.mk,v 1.4 2008/12/21 11:37:15 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.epiphany -PKG_SUPPORTED_OPTIONS= enchant # avahi +PKG_SUPPORTED_OPTIONS= avahi enchant PKG_OPTIONS_OPTIONAL_GROUPS= engine PKG_OPTIONS_GROUP.engine= firefox webkit -PKG_SUGGESTED_OPTIONS= enchant firefox +PKG_SUGGESTED_OPTIONS= avahi enchant firefox PLIST_VARS= gecko .include "../../mk/bsd.options.mk" +.if !empty(PKG_OPTIONS:Mavahi) +CONFIGURE_ARGS+= --enable-zeroconf +.include "../../net/avahi/buildlink3.mk" +.else +CONFIGURE_ARGS+= --disable-zeroconf +.endif + .if !empty(PKG_OPTIONS:Menchant) CONFIGURE_ARGS+= --enable-spell-checker .include "../../textproc/enchant/buildlink3.mk" |