blob: 4403760b02aa91f6ffb16d511e9b7c07e32ee704 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Created by: Filippo Natali <filippo@widestore.net>
# $FreeBSD$
PORTNAME= xfce4-weather-plugin
PORTVERSION= 0.8.3
PORTREVISION= 1
CATEGORIES= misc xfce geography
MASTER_SITES= ${MASTER_SITE_XFCE}
MASTER_SITE_SUBDIR=src/panel-plugins/${PORTNAME}/${PORTVERSION:R}
DIST_SUBDIR= xfce4
MAINTAINER= xfce@FreeBSD.org
COMMENT= Weather plugin for the Xfce panel
LICENSE= GPLv2
LIB_DEPENDS= libsoup-2.4.so:${PORTSDIR}/devel/libsoup
GNU_CONFIGURE= yes
INSTALLS_ICONS= yes
USES= pkgconfig gettext gmake
USE_BZIP2= yes
USE_GNOME= glib20 gtk20 intltool intlhack libxml2
USE_XFCE= configenv libmenu libutil panel
OPTIONS_DEFINE= UPOWER
UPOWER_DESC= Power management tasks
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MUPOWER}
LIB_DEPENDS+= libupower-glib.so:${PORTSDIR}/sysutils/upower
CONFIGURE_ARGS+=--enable-upower
.else
CONFIGURE_ARGS+=--disable-upower
.endif
.include <bsd.port.mk>
|