diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2013-06-07 00:09:58 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2013-06-07 00:09:58 +0800 |
commit | 22ac137ba106297b5a5e33a59c9e33f5d7f01036 (patch) | |
tree | 016ffc877ad80886e1963990713f653c362e1a2c /security/seahorse/Makefile | |
parent | afe6ebdf34fb4a51823a931978ce122f2033eada (diff) | |
download | marcuscom-ports-22ac137ba106297b5a5e33a59c9e33f5d7f01036.tar marcuscom-ports-22ac137ba106297b5a5e33a59c9e33f5d7f01036.tar.gz marcuscom-ports-22ac137ba106297b5a5e33a59c9e33f5d7f01036.tar.bz2 marcuscom-ports-22ac137ba106297b5a5e33a59c9e33f5d7f01036.tar.lz marcuscom-ports-22ac137ba106297b5a5e33a59c9e33f5d7f01036.tar.xz marcuscom-ports-22ac137ba106297b5a5e33a59c9e33f5d7f01036.tar.zst marcuscom-ports-22ac137ba106297b5a5e33a59c9e33f5d7f01036.zip |
Sync with ports, mostly OptionsNG conversion and some diff reductions.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@18518 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'security/seahorse/Makefile')
-rw-r--r-- | security/seahorse/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/security/seahorse/Makefile b/security/seahorse/Makefile index 7ca3ac73d..6db7eaa05 100644 --- a/security/seahorse/Makefile +++ b/security/seahorse/Makefile @@ -4,7 +4,7 @@ PORTNAME= seahorse PORTVERSION= 2.32.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= security gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 @@ -25,8 +25,8 @@ CONFLICTS= libcryptui-3.[0-9]* seahorse-3.[0-9]* USE_XORG= sm USE_LDCONFIG= yes USE_BZIP2= yes -USES= gettext pathfix pkgconfig USE_GMAKE= yes +USES= gettext pathfix pkgconfig USE_GNOME= intlhack gnomeprefix gconf2 gnomedocutils GNU_CONFIGURE= yes INSTALLS_OMF= yes @@ -38,25 +38,25 @@ CONFIGURE_ARGS= --enable-introspection=no GCONF_SCHEMAS= seahorse.schemas MAN1= seahorse.1 seahorse-daemon.1 -OPTIONS= LDAP "Enable LDAP support" on \ - NOTIFY "Enable libnotify support" on \ - MDNS "Enable mDNS key sharing" on +OPTIONS_DEFINE= LDAP NOTIFY MDNS +OPTIONS_DEFAULT=LDAP NOTIFY MDNS +MDNS_DESC= mDNS key sharing -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if !defined(WITHOUT_LDAP) +.if ${PORT_OPTIONS:MLDAP} USE_OPENLDAP= yes .else CONFIGURE_ARGS+=--disable-ldap .endif -.if !defined(WITHOUT_NOTIFY) -LIB_DEPENDS+= notify.4:${PORTSDIR}/devel/libnotify +.if ${PORT_OPTIONS:MNOTIFY} +LIB_DEPENDS+= notify:${PORTSDIR}/devel/libnotify .else CONFIGURE_ARGS+=--disable-libnotify .endif -.if !defined(WITHOUT_MDNS) +.if ${PORT_OPTIONS:MMDNS} LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app .else CONFIGURE_ARGS+=--disable-sharing @@ -66,4 +66,4 @@ post-patch: @${REINPLACE_CMD} -e 's|" == "|" = "|g' \ ${WRKSRC}/configure -.include <bsd.port.post.mk> +.include <bsd.port.mk> |