2004-05-16 21:47:21 +00:00
|
|
|
# New ports collection makefile for: gmpc
|
|
|
|
# Date created: May 12 2004
|
2003-10-13 09:29:32 +00:00
|
|
|
# Whom: Mark Reidel <ports@mark.reidel.info>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
2004-05-16 21:47:21 +00:00
|
|
|
PORTNAME= gmpc
|
2009-09-25 17:57:53 +00:00
|
|
|
PORTVERSION= 0.19.0
|
2010-11-20 15:37:08 +00:00
|
|
|
PORTREVISION= 5
|
2004-05-16 21:47:21 +00:00
|
|
|
PORTEPOCH= 1
|
2003-10-13 09:29:32 +00:00
|
|
|
CATEGORIES= audio
|
2009-08-14 09:14:01 +00:00
|
|
|
MASTER_SITES= http://download.sarine.nl/Programs/gmpc/${PORTVERSION}/ \
|
|
|
|
http://freebsd.unixfreunde.de/sources/
|
2009-09-25 17:57:53 +00:00
|
|
|
|
2008-09-30 11:35:17 +00:00
|
|
|
MAINTAINER= miwi@FreeBSD.org
|
2007-09-01 22:59:12 +00:00
|
|
|
COMMENT= Full featured GTK2 client for musicpd
|
2003-10-13 09:29:32 +00:00
|
|
|
|
2008-09-30 11:35:17 +00:00
|
|
|
BUILD_DEPENDS= gob2:${PORTSDIR}/devel/gob2
|
2007-09-01 22:59:12 +00:00
|
|
|
LIB_DEPENDS= mpd:${PORTSDIR}/audio/libmpd \
|
2010-11-20 15:37:08 +00:00
|
|
|
sqlite3.8:${PORTSDIR}/databases/sqlite3 \
|
2010-04-03 10:44:36 +00:00
|
|
|
curl.6:${PORTSDIR}/ftp/curl \
|
2009-03-15 11:35:03 +00:00
|
|
|
soup-2.4.1:${PORTSDIR}/devel/libsoup
|
2006-04-10 10:59:09 +00:00
|
|
|
|
2003-10-13 09:29:32 +00:00
|
|
|
GNU_CONFIGURE= yes
|
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+
Thanks to all Helpers:
Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
ehaupt, nox, itetcu, flz, pav
PR: 116263
Tested on: pointyhat
Approved by: portmgr (pav)
2008-04-19 17:56:05 +00:00
|
|
|
USE_XORG= x11 sm
|
2007-09-01 22:59:12 +00:00
|
|
|
USE_GMAKE= yes
|
2007-09-16 09:09:30 +00:00
|
|
|
USE_GNOME= libglade2 gnomevfs2 gnomehack
|
2009-02-03 09:03:44 +00:00
|
|
|
INSTALLS_ICONS= yes
|
2007-09-01 22:59:12 +00:00
|
|
|
USE_GETTEXT= yes
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
|
2003-10-13 09:29:32 +00:00
|
|
|
|
2009-02-03 09:03:44 +00:00
|
|
|
MAN1= gmpc-remote.1 gmpc.1
|
|
|
|
|
2007-09-01 22:59:12 +00:00
|
|
|
OPTIONS= SESSION "Enable session support" on \
|
|
|
|
MMKEYS "Enable multimedia keys support" on \
|
|
|
|
TRAY "Enable tray icon support" on
|
2004-07-25 15:49:43 +00:00
|
|
|
|
2006-04-10 10:59:09 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2007-09-01 22:59:12 +00:00
|
|
|
pre-configure:
|
|
|
|
.if defined(WITHOUT_SESSION)
|
|
|
|
CONFIGURE_ARGS+= --disable-sm
|
2004-07-25 15:49:43 +00:00
|
|
|
.endif
|
|
|
|
|
2007-09-01 22:59:12 +00:00
|
|
|
.if defined(WITHOUT_MMKEYS)
|
|
|
|
CONFIGURE_ARGS+= --disable-mmkeys
|
|
|
|
.endif
|
2006-04-10 10:59:09 +00:00
|
|
|
|
2007-09-01 22:59:12 +00:00
|
|
|
.if defined(WITHOUT_TRAY)
|
|
|
|
CONFIGURE_ARGS+= --disable-trayicon
|
2004-07-25 15:49:43 +00:00
|
|
|
.endif
|
2004-06-11 07:59:27 +00:00
|
|
|
|
2006-04-10 10:59:09 +00:00
|
|
|
.include <bsd.port.post.mk>
|