diff options
Diffstat (limited to 'audio/akode-plugins-oss/Makefile')
-rw-r--r-- | audio/akode-plugins-oss/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/audio/akode-plugins-oss/Makefile b/audio/akode-plugins-oss/Makefile new file mode 100644 index 000000000000..e71eaebbe3ac --- /dev/null +++ b/audio/akode-plugins-oss/Makefile @@ -0,0 +1,44 @@ +# New ports collection makefile for: mpeglib_artsplug +# Date created: July 09 2004 +# Whom: Michael Nottebrock <lofi@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= akode-plugins-${PORTNAMESUFX} +PORTVERSION= ${KDE_VERSION} +CATEGORIES= audio kde +MASTER_SITES= ${MASTER_SITE_KDE} +MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src +PKGNAMEPREFIX= kdemultimedia- +DISTNAME= kdemultimedia-${PORTVERSION} +DIST_SUBDIR= KDE + +MAINTAINER= kde@FreeBSD.org +COMMENT= OSS output plugin for akode + +CONFLICTS= kdemultimedia-3.[1-3]* + +PLUGIN= oss_sink +PORTNAMESUFX= ${PLUGIN:S/_sink//:S/_decoder//:S/src_//} + +USE_KDELIBS_VER=3 +PREFIX= ${KDE_PREFIX} + +USE_BZIP2= yes +GNU_CONFIGURE= yes +USE_GMAKE= yes +WRKSRC= ${WRKDIR}/kdemultimedia-${PORTVERSION} +INSTALLS_SHLIB= yes + +pre-configure: + @${REINPLACE_CMD} -e 's@%%SUBDIRS%%@${PLUGIN}@g' ${WRKSRC}/akode/plugins/Makefile.in + +do-build: + cd ${WRKSRC}/akode && gmake + +do-install: + cd ${WRKSRC}/akode/plugins/${PLUGIN} && gmake install + +.include "${.CURDIR}/../../x11/kde3/Makefile.kde" +.include <bsd.port.mk> |