2012-10-07 00:54:03 +02:00
|
|
|
# Created by: Matt Lancereau <matt@rimasec.net>
|
2003-12-06 00:42:12 +01:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= xfce4-clipman-plugin
|
2014-05-31 21:21:19 +02:00
|
|
|
PORTVERSION= 1.2.6
|
2014-12-08 17:48:38 +01:00
|
|
|
PORTREVISION= 1
|
2003-12-06 00:42:12 +01:00
|
|
|
CATEGORIES= x11 xfce
|
2011-03-03 11:12:30 +01:00
|
|
|
MASTER_SITES= ${MASTER_SITE_XFCE}
|
2011-11-03 11:55:09 +01:00
|
|
|
MASTER_SITE_SUBDIR= src/panel-plugins/${PORTNAME}/${PORTVERSION:R}
|
2004-07-21 14:39:13 +02:00
|
|
|
DIST_SUBDIR= xfce4
|
2003-12-06 00:42:12 +01:00
|
|
|
|
2011-10-18 23:48:30 +02:00
|
|
|
MAINTAINER= xfce@FreeBSD.org
|
2014-02-03 06:26:13 +01:00
|
|
|
COMMENT= Clipboard manager for the Xfce panel
|
2003-12-06 00:42:12 +01:00
|
|
|
|
2010-06-13 22:03:15 +02:00
|
|
|
LICENSE= GPLv2
|
|
|
|
|
2014-02-03 06:26:13 +01:00
|
|
|
OPTIONS_DEFINE= QRCODE UNIQUE
|
|
|
|
QRCODE_DESC= QR Code support
|
|
|
|
UNIQUE_DESC= Unique (single instance) support
|
2009-10-02 00:58:41 +02:00
|
|
|
|
2006-02-23 11:40:44 +01:00
|
|
|
GNU_CONFIGURE= yes
|
2013-05-08 18:05:21 +02:00
|
|
|
USE_GNOME= gtk20 intltool intlhack glib20
|
2011-11-03 11:55:09 +01:00
|
|
|
USE_XFCE= configenv libexo libmenu libutil panel xfconf
|
2014-02-03 06:26:13 +01:00
|
|
|
USE_XORG= xtst xproto
|
2014-05-13 13:54:53 +02:00
|
|
|
USES= gettext gmake libtool pkgconfig tar:bzip2
|
2009-04-28 22:34:26 +02:00
|
|
|
INSTALLS_ICONS= yes
|
|
|
|
|
2013-05-08 18:05:21 +02:00
|
|
|
.include <bsd.port.options.mk>
|
2009-10-02 00:58:41 +02:00
|
|
|
|
2012-10-07 00:54:03 +02:00
|
|
|
.if ${PORT_OPTIONS:MUNIQUE}
|
2014-01-29 15:51:57 +01:00
|
|
|
LIB_DEPENDS+= libunique-1.0.so:${PORTSDIR}/x11-toolkits/unique
|
2009-10-02 00:58:41 +02:00
|
|
|
CONFIGURE_ARGS+= --enable-unique
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-unique
|
|
|
|
.endif
|
|
|
|
|
2014-02-03 06:26:13 +01:00
|
|
|
.if ${PORT_OPTIONS:MQRCODE}
|
|
|
|
LIB_DEPENDS+= libqrencode.so:${PORTSDIR}/graphics/libqrencode
|
|
|
|
CONFIGURE_ARGS+= --enable-libqrencode
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-libqrencode
|
|
|
|
.endif
|
|
|
|
|
2013-05-08 18:05:21 +02:00
|
|
|
.include <bsd.port.mk>
|