diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-03-03 10:52:17 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-03-03 10:52:17 +0000 |
commit | f4703450bf6ec902a28107054335589b2c669a85 (patch) | |
tree | c77c65c8e26a600fc4bd2010d1ce453ccb8d68c7 /audio/xmms-kj | |
parent | 243746aff732f89ae87013212de79ba137c2040d (diff) |
- Fix build on bento
Reported by: bento via kris
Notes
Notes:
svn path=/head/; revision=102807
Diffstat (limited to 'audio/xmms-kj')
-rw-r--r-- | audio/xmms-kj/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/audio/xmms-kj/Makefile b/audio/xmms-kj/Makefile index 6a58cacdecfd..53c138846d08 100644 --- a/audio/xmms-kj/Makefile +++ b/audio/xmms-kj/Makefile @@ -10,7 +10,7 @@ PORTVERSION= 0.95 PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://www.csse.monash.edu.au/~timf/ -DISTFILES= kint_xmms-${PORTVERSION}.tar.gz +DISTNAME= kint_xmms-${PORTVERSION} MAINTAINER= kay_lehmann@web.de COMMENT= This is a plugin that adds K-Joefol-Skinsupport to xmms @@ -28,10 +28,12 @@ USE_REINPLACE= yes .include <bsd.port.pre.mk> pre-patch: - ${REINPLACE_CMD} -e 's/PTHREAD_LIBS/ ${PTHREAD_LIBS}/g' \ - ${PATCHDIR}/patch-aa ${RM} -f ${PATCHDIR}/*.bak +post-patch: + ${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g' \ + ${WRKSRC}/makefile + do-build: cd ${WRKSRC} && $(MAKE) |