diff options
author | hubertf <hubertf@pkgsrc.org> | 2003-02-14 23:56:38 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2003-02-14 23:56:38 +0000 |
commit | b3cdf7b947cf2d42ba1c3bcadc4467e593e6286e (patch) | |
tree | e26abf9eda9e2e3a9c681287da99414ea992f31c /audio/xmms-paranormal/Makefile | |
parent | ab66e4be186f7024947b43bdc7f762876ce8741a (diff) | |
download | pkgsrc-b3cdf7b947cf2d42ba1c3bcadc4467e593e6286e.tar.gz |
Big bunch of visual plugins for xmms that all need OpenGL
(which in conjunction with threads as used in xmms needs real
threads, pth is probably not enough... tested on -current)
Diffstat (limited to 'audio/xmms-paranormal/Makefile')
-rw-r--r-- | audio/xmms-paranormal/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/audio/xmms-paranormal/Makefile b/audio/xmms-paranormal/Makefile new file mode 100644 index 00000000000..b7de44cb46d --- /dev/null +++ b/audio/xmms-paranormal/Makefile @@ -0,0 +1,39 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/02/14 23:56:39 hubertf Exp $ +# + +DISTNAME= paranormal-0.2.0 +PKGNAME= xmms-paranormal-0.2.0 +CATEGORIES= audio +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=/paranormal/} + +MAINTAINER= hubertf@netbsd.org +HOMEPAGE= http://paranormal.sourceforge.net/ +COMMENT= Extremely customizable (pseudo-programmable) XMMS plugin + +GNU_CONFIGURE= yes +USE_BUILDLINK_ONLY= YES +USE_X11= yes +USE_LIBTOOL= yes +LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig +CPPFLAGS+= -D_POSIX_THREAD_SYSCALL_SOFT=1 + +# Might be better in textproc/libxml2/buildlink.mk: +CPPFLAGS+= -I${BUILDLINK_DIR}/include/libxml2 +CPPFLAGS+= -I${BUILDLINK_DIR}/include/libxml2/libxml + +USE_BUILDLINK2= yes + +post-extract: + cd ${WRKSRC} ; \ + if [ ! -f configure.orig ]; then \ + ${MV} configure configure.orig ; \ + fi ; \ + ${SED} \ + -e 's|XML_CONFIG|XML2_CONFIG|g' \ + <configure.orig >configure ; \ + ${CHMOD} +x configure + +.include "../../devel/SDL/buildlink2.mk" +.include "../../textproc/libxml2/buildlink2.mk" +.include "../../audio/xmms/buildlink2.mk" +.include "../../mk/bsd.pkg.mk" |