2c918e019a
of KDE 3.5.9 for FreeBSD. The official KDE 3.5.9 release notes can be found at: http://www.kde.org/announcements/announce-3.5.9.php After the KDE 4.1.0 import the team found time to make KDE 3.5.9 ready for the Ports tree. KDE 3.5.9 was released six months ago and 3.5.10 is coming soon. We are not sure we have time to get 3.5.10 for FreeBSD 7.1/6.4 release, but we would have minimum 3.5.9 for those people who prefer to stay with KDE3. Of course Thanks to all Testers.
86 lines
2.4 KiB
Makefile
86 lines
2.4 KiB
Makefile
# New ports collection makefile for: mpeglib_artsplug
|
|
# Date created: July 09 2004
|
|
# Whom: Michael Nottebrock <lofi@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= akode
|
|
PORTVERSION= 2.0.2
|
|
PORTEPOCH= 1
|
|
CATEGORIES= audio kde
|
|
MASTER_SITES= ${MASTER_SITE_GENTOO}
|
|
MASTER_SITE_SUBDIR=distfiles
|
|
DISTNAME= 30375-${PORTNAME}-${PORTVERSION}.tar.bz2
|
|
EXTRACT_SUFX= # none
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Default KDE audio backend
|
|
|
|
CONFLICTS= kdemultimedia-3.[1-3]*
|
|
|
|
OPTIONS= FFMPEG "FFMPEG decoder plugin" off \
|
|
JACK "Jack output plugin" off \
|
|
MPC "Monkey's Audio decoder plugin" on \
|
|
MPEG "MPEG Audio (including mp3) plugin" on \
|
|
OSS "OSS output plugin" on \
|
|
RESAMPLER "Resampler processing plugin" on \
|
|
XIPH "FLAC/Speex/Vorbis decoder plugin" on
|
|
|
|
USE_AUTOTOOLS= libltdl
|
|
USE_AUTOTOOLS= libtool:15
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
USE_LDCONFIG= yes
|
|
PLIST_SUB+= MACHINE_ARCH=${MACHINE_ARCH}
|
|
|
|
CONFIGURE_ARGS+=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} \
|
|
--program-transform-name= \
|
|
--with-extra-libs=${LOCALBASE}/lib \
|
|
--with-extra-includes=${LOCALBASE}/include
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_FFMPEG)
|
|
RUN_DEPENDS= ${LOCALBASE}/lib/libakode_ffmpeg_decoder.so:${PORTSDIR}/audio/akode-plugins-ffmpeg
|
|
.endif
|
|
|
|
.if defined(WITH_JACK)
|
|
RUN_DEPENDS+= ${LOCALBASE}/lib/libakode_jack_sink.so:${PORTSDIR}/audio/akode-plugins-jack
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_MPC)
|
|
RUN_DEPENDS+= ${LOCALBASE}/lib/libakode_mpc_decoder.so:${PORTSDIR}/audio/akode-plugins-mpc
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_MPEG)
|
|
RUN_DEPENDS+= ${LOCALBASE}/lib/libakode_mpeg_decoder.so:${PORTSDIR}/audio/akode-plugins-mpeg
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_OSS)
|
|
RUN_DEPENDS+= ${LOCALBASE}/lib/libakode_oss_sink.so:${PORTSDIR}/audio/akode-plugins-oss
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_RESAMPLER)
|
|
RUN_DEPENDS+= ${LOCALBASE}/lib/libakode_src_resampler.so:${PORTSDIR}/audio/akode-plugins-resampler
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_XIPH)
|
|
RUN_DEPENDS+= ${LOCALBASE}/lib/libakode_xiph_decoder.so:${PORTSDIR}/audio/akode-plugins-xiph
|
|
.endif
|
|
|
|
post-patch:
|
|
@${SETENV} TZ=UTC \
|
|
${TOUCH} -t 200607222217.01 ${WRKSRC}/akode/lib/akode_export.h.in
|
|
${REINPLACE_CMD} -e 's|akodeplay_LDFLAGS =.*|akodeplay_LDFLAGS = \
|
|
$$(all_libraries) ${PTHREAD_LIBS}|g' \
|
|
${WRKSRC}/akode/akodeplay/Makefile.in
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/akode && ${GMAKE}
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/akode && ${GMAKE} install
|
|
|
|
.include <bsd.port.post.mk>
|