summaryrefslogtreecommitdiff
path: root/audio/vorbis-xmms/Makefile
diff options
context:
space:
mode:
authorTrevor Johnson <trevor@FreeBSD.org>2000-11-02 21:19:26 +0000
committerTrevor Johnson <trevor@FreeBSD.org>2000-11-02 21:19:26 +0000
commit68a04739619b4f44015e606b4dd244450bc377ea (patch)
tree64457663a4291ae81d73109a60c60b5cd6153e8c /audio/vorbis-xmms/Makefile
parentAdd new port of vorbis-tools, a collection of utilities to encode, (diff)
Add new port vorbis-xmms, a Vorbis plugin for XMMS.
PR: 22098 Submitted by: Theo van Klaveren <t.vanklaveren@student.utwente.nl>
Notes
Notes: svn path=/head/; revision=34671
Diffstat (limited to 'audio/vorbis-xmms/Makefile')
-rw-r--r--audio/vorbis-xmms/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/audio/vorbis-xmms/Makefile b/audio/vorbis-xmms/Makefile
new file mode 100644
index 000000000000..9c410ff4526e
--- /dev/null
+++ b/audio/vorbis-xmms/Makefile
@@ -0,0 +1,31 @@
+# New ports collection makefile for: vorbis-xmms
+# Date created: 18 October 2000
+# Whom: t.vanklaveren@student.utwente.nl
+#
+# $FreeBSD$
+#
+
+PORTNAME= vorbis-xmms
+PORTVERSION= 20001018
+CATEGORIES= audio
+MASTER_SITES= http://home.student.utwente.nl/t.vanklaveren/distfiles/
+DISTNAME= vorbis-plugins-${PORTVERSION}
+
+MAINTAINER= t.vanklaveren@student.utwente.nl
+
+LIB_DEPENDS= ogg.0:${PORTSDIR}/audio/libogg \
+ vorbis.0:${PORTSDIR}/audio/libvorbis \
+ xmms.1:${PORTSDIR}/audio/xmms
+
+USE_X_PREFIX= yes
+USE_GTK= yes
+WRKSRC= ${WRKDIR}/vorbis-plugins
+
+do-build:
+ cd ${WRKSRC}/xmms && ${CC} ${CFLAGS} -fPIC -c vorbis.c -I${LOCALBASE}/include `${GTK_CONFIG} --cflags`
+ cd ${WRKSRC}/xmms && ${CC} ${LDFLAGS} -fPIC -Wl,-export-dynamic -Wl,-shared -o libvorbis.so vorbis.o `${GTK_CONFIG} --libs` -lxmms -lvorbis -lvorbisfile -logg -pthread
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/xmms/libvorbis.so ${PREFIX}/lib/xmms/Input/
+
+.include <bsd.port.mk>