Lines 1-25
Link Here
|
1 |
# Created by: Radek Kozlowski <radek@raadradd.com> |
1 |
# Created by: Radek Kozlowski <radek@raadradd.com> |
2 |
# $FreeBSD: head/multimedia/gxmms/Makefile 305074 2012-09-30 06:25:19Z rm $ |
2 |
# $FreeBSD: head/multimedia/gxmms/Makefile 305074 2012-09-30 06:25:19Z rm $ |
3 |
|
3 |
|
4 |
PORTNAME= gxmms |
4 |
PORTNAME= gxmms |
5 |
PORTVERSION= 0.2.1 |
5 |
PORTVERSION= 0.3.0 |
6 |
PORTREVISION= 14 |
|
|
7 |
CATEGORIES= multimedia gnome |
6 |
CATEGORIES= multimedia gnome |
8 |
MASTER_SITES= ${MASTER_SITE_SAVANNAH} |
7 |
MASTER_SITES= ${MASTER_SITE_SAVANNAH} |
9 |
MASTER_SITE_SUBDIR= ${PORTNAME} |
8 |
MASTER_SITE_SUBDIR= ${PORTNAME} |
10 |
|
9 |
|
11 |
MAINTAINER= c.petrik.sosa@gmail.com |
10 |
MAINTAINER= c.petrik.sosa@gmail.com |
12 |
COMMENT= Simple GNOME panel applet for controlling XMMS |
11 |
COMMENT= Simple GNOME panel applet for controlling XMMS |
13 |
|
12 |
|
14 |
BUILD_DEPENDS= xmms:${PORTSDIR}/multimedia/xmms |
|
|
15 |
RUN_DEPENDS= xmms:${PORTSDIR}/multimedia/xmms |
16 |
|
17 |
USE_GMAKE= yes |
13 |
USE_GMAKE= yes |
18 |
USE_GNOME= gnomehack gnomepanel gnomeprefix intlhack libgnomeui |
14 |
USE_GNOME= gnomehack gnomepanel gnomeprefix intlhack libgnomeui |
19 |
USE_GETTEXT= yes |
15 |
USE_GETTEXT= yes |
20 |
GNU_CONFIGURE= yes |
16 |
GNU_CONFIGURE= yes |
21 |
CONFIGURE_ENV= LIBS="`pkg-config --libs libgnomeui-2.0`" |
17 |
CONFIGURE_ENV= LIBS="`pkg-config --libs libgnomeui-2.0`" |
22 |
CPPFLAGS+= -I${LOCALBASE}/include `pkg-config --cflags libgnomeui-2.0` |
18 |
CPPFLAGS+= -I${LOCALBASE}/include `pkg-config --cflags libgnomeui-2.0` |
23 |
LDFLAGS+= -L${LOCALBASE}/lib |
19 |
LDFLAGS+= -L${LOCALBASE}/lib |
24 |
|
20 |
|
|
|
21 |
|
22 |
OPTIONS_DEFINE= XMMS BMP |
23 |
OPTIONS_DEFAULT= XMMS |
24 |
|
25 |
XMMS_DESC= Use xmms as frontend |
26 |
BMP_DESC= Use BMP as frontend |
27 |
|
28 |
.include <bsd.port.options.mk> |
29 |
|
30 |
.if ${PORT_OPTIONS:MXMMS} |
31 |
CONFIGURE_ARGS+= --with-xmms |
32 |
BUILD_DEPENDS= xmms:${PORTSDIR}/multimedia/xmms |
33 |
RUN_DEPENDS= xmms:${PORTSDIR}/multimedia/xmms |
34 |
.else |
35 |
CONFIGURE_ARGS+=--disable-xmms |
36 |
.endif |
37 |
.if ${PORT_OPTIONS:MBMP} |
38 |
CONFIGURE_ARGS+=--with-bmp |
39 |
BUILD_DEPENDS= beep-media-player:${PORTSDIR}/multimedia/beep-media-player |
40 |
RUN_DEPENDS= beep-media-player:${PORTSDIR}/multimedia/beep-media-player |
41 |
.else |
42 |
CONFIGURE_ARGS+=--disable-bmp |
43 |
.endif |
44 |
|
25 |
.include <bsd.port.mk> |
45 |
.include <bsd.port.mk> |