blob: 0769d991d23a7de04c826ed833cef14f62b9b6fc (
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
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= Xfce 4 weather module for xfce4-panel
LIB_DEPENDS= soup-2.4:${PORTSDIR}/devel/libsoup
GNU_CONFIGURE= yes
INSTALLS_ICONS= yes
USES= pkgconfig
USE_BZIP2= yes
USE_GETTEXT= yes
USE_GMAKE= yes
USE_GNOME= gnomehack glib20 gtk20 intltool intlhack libxml2
USE_XFCE= configenv libmenu libutil panel
OPTIONS_DEFINE= UPOWER
UPOWER_DESC= Power state support
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MUPOWER}
LIB_DEPENDS+= upower-glib:${PORTSDIR}/sysutils/upower
CONFIGURE_ARGS+=--enable-upower
.else
CONFIGURE_ARGS+=--disable-upower
.endif
.include <bsd.port.mk>
|