diff options
author | makc <makc@FreeBSD.org> | 2009-10-25 00:40:22 +0800 |
---|---|---|
committer | makc <makc@FreeBSD.org> | 2009-10-25 00:40:22 +0800 |
commit | 6543b382df2d056fdc30bde0845162b3a1580fa2 (patch) | |
tree | abea3689fec90a61d9ddf6fa27d31bc4410ddd44 /audio/akode | |
parent | b28c7bbdcbe5f61f85bfb50908a719d336ef5b3b (diff) | |
download | freebsd-ports-graphics-6543b382df2d056fdc30bde0845162b3a1580fa2.tar.gz freebsd-ports-graphics-6543b382df2d056fdc30bde0845162b3a1580fa2.tar.zst freebsd-ports-graphics-6543b382df2d056fdc30bde0845162b3a1580fa2.zip |
Fix the USE_AUTOTOOLS assignment.
Minor clean-ups.
Bump PORTREVISION.
PR: ports/139884
Submitted by: Tijl Coosemans <tijl at ulyssis.org>
Diffstat (limited to 'audio/akode')
-rw-r--r-- | audio/akode/Makefile | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/audio/akode/Makefile b/audio/akode/Makefile index 17b469f140b..8c6198bce44 100644 --- a/audio/akode/Makefile +++ b/audio/akode/Makefile @@ -7,12 +7,12 @@ PORTNAME= akode PORTVERSION= 2.0.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= audio kde MASTER_SITES= ${MASTER_SITE_GENTOO} MASTER_SITE_SUBDIR=distfiles -DISTNAME= 30375-${PORTNAME}-${PORTVERSION}.tar.bz2 -EXTRACT_SUFX= # none +DISTNAME= 30375-${PORTNAME}-${PORTVERSION} MAINTAINER= kde@FreeBSD.org COMMENT= Default KDE audio backend @@ -27,13 +27,11 @@ OPTIONS= FFMPEG "FFMPEG decoder plugin" off \ RESAMPLER "Resampler processing plugin" on \ XIPH "FLAC/Speex/Vorbis decoder plugin" on -USE_AUTOTOOLS= libltdl -USE_AUTOTOOLS= libtool:22 +USE_AUTOTOOLS= libltdl:22 libtool:22 USE_BZIP2= yes USE_GMAKE= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_LDCONFIG= yes -PLIST_SUB+= MACHINE_ARCH=${MACHINE_ARCH} CONFIGURE_ARGS+=--program-transform-name= \ --with-extra-libs=${LOCALBASE}/lib \ @@ -42,7 +40,7 @@ CONFIGURE_ARGS+=--program-transform-name= \ .include <bsd.port.pre.mk> .if defined(WITH_FFMPEG) -RUN_DEPENDS= ${LOCALBASE}/lib/libakode_ffmpeg_decoder.so:${PORTSDIR}/audio/akode-plugins-ffmpeg +RUN_DEPENDS+= ${LOCALBASE}/lib/libakode_ffmpeg_decoder.so:${PORTSDIR}/audio/akode-plugins-ffmpeg .endif .if defined(WITH_JACK) @@ -76,10 +74,4 @@ post-patch: $$(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> |