2012-10-07 00:54:38 +02:00
|
|
|
# Created by: Martin Wilke (miwi@FreeBSD.org)
|
2007-09-11 12:56:23 +02:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= verve-plugin
|
2011-01-29 15:50:51 +01:00
|
|
|
PORTVERSION= 1.0.0
|
2014-12-08 17:48:38 +01:00
|
|
|
PORTREVISION= 10
|
2007-09-11 12:56:23 +02:00
|
|
|
CATEGORIES= x11 xfce
|
2011-01-29 15:50:51 +01:00
|
|
|
MASTER_SITES= ${MASTER_SITE_XFCE}
|
2012-12-30 17:19:08 +01:00
|
|
|
MASTER_SITE_SUBDIR=src/panel-plugins/${PKGNAMEPREFIX}${PORTNAME}/${PORTVERSION:R}
|
2007-09-11 12:56:23 +02:00
|
|
|
PKGNAMEPREFIX= xfce4-
|
2008-11-29 21:58:36 +01:00
|
|
|
DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}
|
2014-01-29 15:51:57 +01:00
|
|
|
DIST_SUBDIR= xfce4
|
2007-09-11 12:56:23 +02:00
|
|
|
|
2011-10-23 15:46:01 +02:00
|
|
|
MAINTAINER= xfce@FreeBSD.org
|
2013-05-01 18:13:45 +02:00
|
|
|
COMMENT= Command line plugin for Xfce4
|
2007-09-11 12:56:23 +02:00
|
|
|
|
2014-01-29 15:51:57 +01:00
|
|
|
LICENSE= GPLv2
|
|
|
|
|
|
|
|
LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre
|
2008-11-29 21:58:36 +01:00
|
|
|
|
2007-09-11 12:56:23 +02:00
|
|
|
GNU_CONFIGURE= yes
|
2014-05-06 16:44:07 +02:00
|
|
|
USES= gmake libtool pathfix pkgconfig tar:bzip2
|
2013-05-01 18:13:45 +02:00
|
|
|
USE_GNOME= glib20 intltool intlhack
|
2011-01-29 15:50:51 +01:00
|
|
|
USE_XFCE= configenv panel libexo libgui libutil
|
|
|
|
|
2012-10-07 00:54:38 +02:00
|
|
|
OPTIONS_DEFINE= NLS DBUS
|
2014-01-29 15:51:57 +01:00
|
|
|
OPTIONS_DEFAULT= NLS DBUS
|
2011-01-29 15:50:51 +01:00
|
|
|
|
2013-05-01 18:13:45 +02:00
|
|
|
.include <bsd.port.options.mk>
|
2011-01-29 15:50:51 +01:00
|
|
|
|
2012-10-07 00:54:38 +02:00
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
2013-05-01 18:13:45 +02:00
|
|
|
USES+= gettext
|
2011-01-29 15:50:51 +01:00
|
|
|
CONFIGURE_ARGS+=--enable-nls
|
|
|
|
PLIST_SUB+= NLS=""
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+=--disable-nls
|
|
|
|
PLIST_SUB+= NLS="@comment "
|
|
|
|
.endif
|
|
|
|
|
2012-10-07 00:54:38 +02:00
|
|
|
.if ${PORT_OPTIONS:MDBUS}
|
2014-01-29 15:51:57 +01:00
|
|
|
LIB_DEPENDS+= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib
|
2011-01-29 15:50:51 +01:00
|
|
|
CONFIGURE_ARGS+=--enable-dbus
|
|
|
|
PLIST_SUB+= DBUS=""
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+=--disable-dbus
|
|
|
|
PLIST_SUB+= DBUS="@comment "
|
|
|
|
.endif
|
2007-09-11 12:56:23 +02:00
|
|
|
|
2013-05-01 18:13:45 +02:00
|
|
|
.include <bsd.port.mk>
|