diff options
author | Dan Armak <danarmak@gentoo.org> | 2005-02-05 19:12:35 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2005-02-05 19:12:35 +0000 |
commit | 726c975bffa86298319aacf836f2156860877bd6 (patch) | |
tree | b0243e3118a4d59f93870d411967f6414cc62c96 /kde-base/akode | |
parent | add local use flag libsamplerate for kde-base/akode (diff) | |
download | historical-726c975bffa86298319aacf836f2156860877bd6.tar.gz historical-726c975bffa86298319aacf836f2156860877bd6.tar.bz2 historical-726c975bffa86298319aacf836f2156860877bd6.zip |
added lots of missing optional deps and corresponding configure parameters
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'kde-base/akode')
-rw-r--r-- | kde-base/akode/Manifest | 2 | ||||
-rw-r--r-- | kde-base/akode/akode-3.4.0_beta2.ebuild | 19 |
2 files changed, 15 insertions, 6 deletions
diff --git a/kde-base/akode/Manifest b/kde-base/akode/Manifest index 7f8520fb6b20..870e7784961c 100644 --- a/kde-base/akode/Manifest +++ b/kde-base/akode/Manifest @@ -1,5 +1,5 @@ MD5 9e3cd79092157756d51bfa495c17028a akode-3.4.0_beta1.ebuild 760 -MD5 e6bd4618fe58123fb84ead945fe24862 akode-3.4.0_beta2.ebuild 760 +MD5 eade9f0d36452d7fe9dc19f1f72302d3 akode-3.4.0_beta2.ebuild 1222 MD5 d769082876bbafec982ac92f553dab37 ChangeLog 697 MD5 14889ab75f97d76e58b0c1154e7683a9 metadata.xml 161 MD5 43e784a2028b42eff11cfacd5dc9e845 files/digest-akode-3.4.0_beta1 231 diff --git a/kde-base/akode/akode-3.4.0_beta2.ebuild b/kde-base/akode/akode-3.4.0_beta2.ebuild index 14bada75eb79..fa89d5cfba7a 100644 --- a/kde-base/akode/akode-3.4.0_beta2.ebuild +++ b/kde-base/akode/akode-3.4.0_beta2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/akode/akode-3.4.0_beta2.ebuild,v 1.1 2005/02/05 11:39:10 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/akode/akode-3.4.0_beta2.ebuild,v 1.2 2005/02/05 19:12:35 danarmak Exp $ KMNAME=kdemultimedia MAXKDEVER=$PV @@ -9,17 +9,26 @@ inherit kde-meta DESCRIPTION="aRts plugins for various formats" KEYWORDS="~x86" -IUSE="flac oggvorbis speex" -DEPEND="flac? ( media-libs/flac ) +IUSE="flac oggvorbis speex mad arts alsa libsamplerate jack" +DEPEND="arts? ( $(deprange $PV $MAXKDEVER kde-base/arts) ) + flac? ( media-libs/flac ) oggvorbis? ( media-sound/vorbis-tools ) speex? ( media-libs/speex ) !=media-libs/speex-1.1.4 - media-libs/libsamplerate" + media-libs/libsamplerate + mad? ( media-libs/libmad ) + libsamplerate? ( media-libs/libsamplerate ) + alsa? ( media-libs/alsa-lib ) + jack? ( media-sound/jack )" + +# MISSING: polypaudio - no gentoo ebuild as yet +# TODO: configure needs a pkg-config file for media-sound/jack to detect it src_compile() { use oggvorbis && myconf="$myconf --with-vorbis=/usr" || myconf="$myconf --without-vorbis" - use speex && myconf="$myconf --with-extra-includes=/usr/include/speex" + myconf="$myconf $(use_with mad libmad) $(use_with flac) $(use_with libsamplerate) + $(use_with alsa) $(use_with jack)" kde-meta_src_compile } |