2004-05-16 23:47:21 +02:00
|
|
|
# New ports collection makefile for: gmpc
|
|
|
|
# Date created: May 12 2004
|
2003-10-13 11:29:32 +02:00
|
|
|
# Whom: Mark Reidel <ports@mark.reidel.info>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
2004-05-16 23:47:21 +02:00
|
|
|
PORTNAME= gmpc
|
2008-03-30 00:58:25 +01:00
|
|
|
PORTVERSION= 0.15.5.0
|
2008-06-06 15:08:29 +02:00
|
|
|
PORTREVISION= 2
|
2004-05-16 23:47:21 +02:00
|
|
|
PORTEPOCH= 1
|
2003-10-13 11:29:32 +02:00
|
|
|
CATEGORIES= audio
|
2008-03-30 00:58:25 +01:00
|
|
|
MASTER_SITES= http://download.sarine.nl/gmpc-${PORTVERSION:C/\.0$//}/ \
|
2007-09-02 00:59:12 +02:00
|
|
|
http://download.gna.org/kanicule/freebsd/distfiles/
|
2003-10-13 11:29:32 +02:00
|
|
|
|
2007-09-02 00:59:12 +02:00
|
|
|
MAINTAINER= mathias@monnerville.com
|
|
|
|
COMMENT= Full featured GTK2 client for musicpd
|
2003-10-13 11:29:32 +02:00
|
|
|
|
2007-09-02 00:59:12 +02:00
|
|
|
LIB_DEPENDS= mpd:${PORTSDIR}/audio/libmpd \
|
|
|
|
curl.4:${PORTSDIR}/ftp/curl
|
2006-04-10 12:59:09 +02:00
|
|
|
|
2003-10-13 11:29:32 +02: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 19:56:05 +02:00
|
|
|
USE_XORG= x11 sm
|
2007-09-02 00:59:12 +02:00
|
|
|
USE_GMAKE= yes
|
2007-09-16 11:09:30 +02:00
|
|
|
USE_GNOME= libglade2 gnomevfs2 gnomehack
|
2007-09-02 00:59:12 +02:00
|
|
|
USE_GETTEXT= yes
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
|
2003-10-13 11:29:32 +02:00
|
|
|
|
2007-09-02 00:59:12 +02:00
|
|
|
OPTIONS= SESSION "Enable session support" on \
|
|
|
|
MMKEYS "Enable multimedia keys support" on \
|
|
|
|
TRAY "Enable tray icon support" on
|
2004-07-25 17:49:43 +02:00
|
|
|
|
2006-04-10 12:59:09 +02:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2007-09-02 00:59:12 +02:00
|
|
|
pre-configure:
|
|
|
|
.if defined(WITHOUT_SESSION)
|
|
|
|
CONFIGURE_ARGS+= --disable-sm
|
2004-07-25 17:49:43 +02:00
|
|
|
.endif
|
|
|
|
|
2007-09-02 00:59:12 +02:00
|
|
|
.if defined(WITHOUT_MMKEYS)
|
|
|
|
CONFIGURE_ARGS+= --disable-mmkeys
|
|
|
|
.endif
|
2006-04-10 12:59:09 +02:00
|
|
|
|
2007-09-02 00:59:12 +02:00
|
|
|
.if defined(WITHOUT_TRAY)
|
|
|
|
CONFIGURE_ARGS+= --disable-trayicon
|
2004-07-25 17:49:43 +02:00
|
|
|
.endif
|
2004-06-11 09:59:27 +02:00
|
|
|
|
2006-04-10 12:59:09 +02:00
|
|
|
.include <bsd.port.post.mk>
|