diff options
author | Roman Bogorodskiy <novel@FreeBSD.org> | 2006-02-09 15:49:06 +0000 |
---|---|---|
committer | Roman Bogorodskiy <novel@FreeBSD.org> | 2006-02-09 15:49:06 +0000 |
commit | e4d5f383f059b8fee747492a2e3a9fae25794610 (patch) | |
tree | a8e127db5193d9f79de21730ce98e7e693f98989 /misc/xosd | |
parent | 787920917cfb142d819070bd2bca0b083dbee127 (diff) | |
download | ports-e4d5f383f059b8fee747492a2e3a9fae25794610.tar.gz ports-e4d5f383f059b8fee747492a2e3a9fae25794610.zip |
Notes
Diffstat (limited to 'misc/xosd')
-rw-r--r-- | misc/xosd/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/misc/xosd/Makefile b/misc/xosd/Makefile index 81a12593b14b..1fafca1aea58 100644 --- a/misc/xosd/Makefile +++ b/misc/xosd/Makefile @@ -15,14 +15,11 @@ MASTER_SITE_SUBDIR= perky MAINTAINER= perky@FreeBSD.org COMMENT= X On-Screen-Display Library and XMMS plug-in -LIB_DEPENDS= gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf - XMMS_CONFIG?= ${X11BASE}/bin/xmms-config USE_BZIP2= yes USE_GETOPT_LONG=yes USE_X_PREFIX= yes USE_GMAKE= yes -USE_GNOME= gtk12 GNU_CONFIGURE= yes INSTALLS_SHLIB= yes USE_REINPLACE= yes @@ -44,7 +41,8 @@ OPTIONS= XMMS "Install XMMS-OSD plugin" on .include <bsd.port.pre.mk> .if !defined(WITHOUT_XMMS) -LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms +LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms \ + gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf PLIST_SUB= WITH_XMMS="" .else CONFIGURE_ARGS= --disable-new-plugin @@ -52,10 +50,10 @@ PLIST_SUB= WITH_XMMS="@comment " .endif pre-patch: - ${REINPLACE_CMD} -e 's,-lc_r,-lblahblah,g' ${WRKSRC}/ltmain.sh - ${REINPLACE_CMD} -e 's,-lpthread,${PTHREAD_LIBS},g' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's,-lc_r,-lblahblah,g' ${WRKSRC}/ltmain.sh + @${REINPLACE_CMD} -e 's,-lpthread,${PTHREAD_LIBS},g' ${WRKSRC}/configure .for f in src/libxosd/Makefile.in src/xmms_plugin/Makefile.in - ${REINPLACE_CMD} -e 's,^\(CFLAGS =\)\(.*\)$$,\1 -I.. \2,g' ${WRKSRC}/$f + @${REINPLACE_CMD} -e 's,^\(CFLAGS =\)\(.*\)$$,\1 -I.. \2,g' ${WRKSRC}/$f .endfor .include <bsd.port.post.mk> |