2f0486b647
The reason for this is that in the GNOME 3.16 update, USE_GNOME gtk20 and gtk30 don't pull intltool in anymore. PR: 201980 Exp-run by: antoine@
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# Created by: Mark Reidel <ports@mark.reidel.info>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gmpc
|
|
PORTVERSION= 11.8.16
|
|
PORTREVISION= 4
|
|
PORTEPOCH= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/ \
|
|
http://freebsd.unixfreunde.de/sources/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Full featured GTK2 client for musicpd
|
|
|
|
BUILD_DEPENDS= gob2:${PORTSDIR}/devel/gob2 \
|
|
valac:${PORTSDIR}/lang/vala
|
|
LIB_DEPENDS= libmpd.so:${PORTSDIR}/audio/libmpd \
|
|
libsexy.so:${PORTSDIR}/x11-toolkits/libsexy \
|
|
libsqlite3.so:${PORTSDIR}/databases/sqlite3 \
|
|
libsoup-2.4.so:${PORTSDIR}/devel/libsoup \
|
|
libunique-1.0.so:${PORTSDIR}/x11-toolkits/unique
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gettext gmake libtool pathfix pkgconfig
|
|
USE_GNOME= glib20 gtk20 intltool libglade2
|
|
INSTALLS_ICONS= yes
|
|
CONFIGURE_ARGS= --enable-system-libsexy
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib -lm
|
|
|
|
OPTIONS_DEFINE= MMKEYS XSPF
|
|
OPTIONS_DEFAULT= MMKEYS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MMMKEYS}
|
|
CONFIGURE_ARGS+=--disable-mmkeys
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MXSPF}
|
|
LIB_DEPENDS+= libxspf.so:${PORTSDIR}/multimedia/libxspf
|
|
CONFIGURE_ARGS+=--enable-libxspf
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-libxspf
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|