68 lines
1.6 KiB
Makefile
68 lines
1.6 KiB
Makefile
# $OpenBSD: Makefile,v 1.26 2010/11/26 07:07:56 espie Exp $
|
|
|
|
COMMENT= decoding library for KDE Multimedia
|
|
|
|
DISTNAME= akode-2.0.2
|
|
REVISION= 14
|
|
|
|
SHARED_LIBS += akode 2.1 # .2.0
|
|
|
|
CATEGORIES= audio multimedia x11/kde
|
|
|
|
HOMEPAGE= http://www.carewolf.com/akode/
|
|
|
|
MASTER_SITES= http://www.kde-apps.org/CONTENT/content-files/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
DISTFILES= 30375-${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
# LGPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= bz2 c faac faad gsm m mp3lame ogg pthread orc-0.4 \
|
|
samplerate schroedinger-1.0 sndio stdc++ theora x264 z \
|
|
FLAC>=8 mad speex ltdl vorbis vorbisfile vorbisenc \
|
|
jack avcodec>=14 avformat>=13 avutil>=7
|
|
|
|
LIB_DEPENDS= audio/flac \
|
|
audio/libmad \
|
|
audio/speex \
|
|
audio/libvorbis \
|
|
devel/libtool,-ltdl \
|
|
graphics/ffmpeg>=20100512 \
|
|
audio/jack
|
|
|
|
USE_GMAKE= Yes
|
|
USE_LIBTOOL= Yes
|
|
|
|
BUILD_DEPENDS= ${MODGNU_AUTOCONF_DEPENDS} \
|
|
${MODGNU_AUTOMAKE_DEPENDS}
|
|
# uses libtoolize
|
|
BUILD_DEPENDS+= devel/libtool
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
AUTOCONF_VERSION= 2.60
|
|
AUTOMAKE_VERSION= 1.9
|
|
CONFIGURE= /bin/sh ${WRKDIST}/admin/cvs.sh configure
|
|
CONFIGURE_ENV= PTHREAD_LIBS=-pthread
|
|
CONFIGURE_ARGS+= --with-extra-includes=${LOCALBASE}/include \
|
|
--with-extra-libs=${LOCALBASE}/lib \
|
|
--with-jack \
|
|
--without-polyaudio \
|
|
--without-oss \
|
|
--without-sun
|
|
|
|
post-extract:
|
|
@mkdir -p ${WRKSRC}/akode/plugins/sndio_sink
|
|
@cp ${FILESDIR}/{Makefile.am,sndio_sink.*} ${WRKSRC}/akode/plugins/sndio_sink
|
|
|
|
pre-configure:
|
|
@cd ${WRKSRC} && \
|
|
AUTOCONF_VERSION=${AUTOCONF_VERSION} \
|
|
AUTOMAKE_VERSION=${AUTOMAKE_VERSION} \
|
|
autoreconf -i
|
|
|
|
.include <bsd.port.mk>
|