mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
55 lines
1.3 KiB
Makefile
55 lines
1.3 KiB
Makefile
# New ports collection makefile for: gmpc
|
|
# Date created: May 12 2004
|
|
# Whom: Mark Reidel <ports@mark.reidel.info>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gmpc
|
|
PORTVERSION= 11.8.16
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/ \
|
|
http://freebsd.unixfreunde.de/sources/
|
|
|
|
MAINTAINER= miwi@FreeBSD.org
|
|
COMMENT= Full featured GTK2 client for musicpd
|
|
|
|
BUILD_DEPENDS= gob2:${PORTSDIR}/devel/gob2 \
|
|
valac:${PORTSDIR}/lang/vala
|
|
LIB_DEPENDS= mpd.4:${PORTSDIR}/audio/libmpd \
|
|
sexy.2:${PORTSDIR}/x11-toolkits/libsexy \
|
|
sqlite3.8:${PORTSDIR}/databases/sqlite3 \
|
|
soup-2.4.1:${PORTSDIR}/devel/libsoup \
|
|
unique-1.0:${PORTSDIR}/x11-toolkits/unique
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gnomehack pkgconfig glib20 gtk20 libglade2
|
|
INSTALLS_ICONS= yes
|
|
USE_GETTEXT= yes
|
|
CONFIGURE_ARGS= --enable-system-libsexy
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
MAN1= gmpc-remote.1 gmpc.1 gmpc-remote-stream.1
|
|
|
|
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+= xspf.4:${PORTSDIR}/multimedia/libxspf
|
|
CONFIGURE_ARGS+=--enable-libxspf
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-libxspf
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|