diff options
author | 2007-11-21 15:33:07 +0000 | |
---|---|---|
committer | 2007-11-21 15:33:07 +0000 | |
commit | 9e96b8062f2e2276739b6e75a9b0af38d9c3cf37 (patch) | |
tree | 8e75c1f6bc58673c5782d8efc93add17602648c2 /media-plugins | |
parent | Version bump. Make D-Bus optional and warn when off, closes bug #199069. More... (diff) | |
download | gentoo-2-9e96b8062f2e2276739b6e75a9b0af38d9c3cf37.tar.gz gentoo-2-9e96b8062f2e2276739b6e75a9b0af38d9c3cf37.tar.bz2 gentoo-2-9e96b8062f2e2276739b6e75a9b0af38d9c3cf37.zip |
Version bump.
(Portage version: 2.1.3.19)
Diffstat (limited to 'media-plugins')
3 files changed, 115 insertions, 1 deletions
diff --git a/media-plugins/audacious-plugins/ChangeLog b/media-plugins/audacious-plugins/ChangeLog index f249151d3d87..ec3933f0b95f 100644 --- a/media-plugins/audacious-plugins/ChangeLog +++ b/media-plugins/audacious-plugins/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-plugins/audacious-plugins # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/audacious-plugins/ChangeLog,v 1.69 2007/11/10 16:52:02 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/audacious-plugins/ChangeLog,v 1.70 2007/11/21 15:33:06 chainsaw Exp $ + +*audacious-plugins-1.4.1 (21 Nov 2007) + + 21 Nov 2007; Tony Vroon <chainsaw@gentoo.org> + +audacious-plugins-1.4.1.ebuild: + Version bump. 10 Nov 2007; Tony Vroon <chainsaw@gentoo.org> -audacious-plugins-1.2.2-r1.ebuild, -audacious-plugins-1.2.5.ebuild: diff --git a/media-plugins/audacious-plugins/audacious-plugins-1.4.1.ebuild b/media-plugins/audacious-plugins/audacious-plugins-1.4.1.ebuild new file mode 100644 index 000000000000..114792d6a9f8 --- /dev/null +++ b/media-plugins/audacious-plugins/audacious-plugins-1.4.1.ebuild @@ -0,0 +1,105 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/audacious-plugins/audacious-plugins-1.4.1.ebuild,v 1.1 2007/11/21 15:33:06 chainsaw Exp $ + +inherit eutils flag-o-matic + +MY_P="${P/_/-}" +S="${WORKDIR}/${MY_P}" +DESCRIPTION="Audacious Player - Your music, your way, no exceptions" +HOMEPAGE="http://audacious-media-player.org/" +SRC_URI="http://distfiles.atheme.org/${MY_P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="aac adplug alsa arts chardet dbus esd flac gnome jack lirc modplug mp3 mtp musepack nls oss pulseaudio sdl sid sndfile timidity tta vorbis wavpack wma" + +RDEPEND="app-arch/unzip + >=dev-libs/libcdio-0.78.2 + dev-libs/libxml2 + >=gnome-base/libglade-2.3.1 + >=media-libs/libcddb-1.2.1 + >=media-sound/audacious-1.4.0 + >=net-misc/neon-0.26.3 + >=x11-libs/gtk+-2.6 + adplug? ( >=dev-cpp/libbinio-1.4 ) + alsa? ( >=media-libs/alsa-lib-1.0.9_rc2 ) + arts? ( kde-base/arts ) + dbus? ( >=dev-libs/dbus-glib-0.60 ) + esd? ( >=media-sound/esound-0.2.30 ) + flac? ( >=media-libs/libvorbis-1.0 ) + jack? ( >=media-libs/bio2jack-0.4 + media-sound/jack-audio-connection-kit ) + lirc? ( app-misc/lirc ) + mp3? ( media-libs/libmad ) + mtp? ( >=media-libs/libmtp-0.2.3 ) + musepack? ( media-libs/libmpcdec media-libs/taglib ) + pulseaudio? ( >=media-sound/pulseaudio-0.9.3 ) + sdl? ( >=media-libs/libsdl-1.2.5 ) + sid? ( media-libs/libsidplay ) + sndfile? ( media-libs/libsndfile ) + timidity? ( media-sound/timidity++ ) + tta? ( media-libs/libid3tag ) + vorbis? ( >=media-libs/libvorbis-1.0 + >=media-libs/libogg-1.0 ) + wavpack? ( >=media-sound/wavpack-4.31 ) + wma? ( >=media-libs/libmms-0.3 )" + +DEPEND="${RDEPEND} + nls? ( dev-util/intltool ) + >=dev-util/pkgconfig-0.9.0" + +mp3_warning() { + if ! useq mp3 ; then + ewarn "MP3 support is optional, you may want to enable the mp3 USE-flag" + fi +} + +src_compile() { + mp3_warning + + econf \ + --enable-cdaudio-ng \ + --enable-neon \ + --disable-projectm \ + --disable-projectm-1.0 \ + $(use_enable aac) \ + $(use_enable adplug) \ + $(use_enable alsa) \ + $(use_enable arts) \ + $(use_enable chardet) \ + $(use_enable dbus) \ + $(use_enable esd) \ + $(use_enable flac) \ + $(use_enable jack) \ + $(use_enable gnome gnomeshortcuts) \ + $(use_enable lirc) \ + $(use_enable mp3) \ + $(use_enable modplug) \ + $(use_enable musepack) \ + $(use_enable mtp mtp_up) \ + $(use_enable nls) \ + $(use_enable oss) \ + $(use_enable pulseaudio pulse) \ + $(use_enable sdl paranormal) \ + $(use_enable sid) \ + $(use_enable sndfile) \ + $(use_enable timidity) \ + $(use_enable tta) \ + $(use_enable vorbis) \ + $(use_enable wavpack) \ + $(use_enable wma) \ + || die + + emake || die "make failed" +} + +src_install() { + make DESTDIR="${D}" install || die + dodoc AUTHORS NEWS +} + +pkg_postinst() { + mp3_warning +} diff --git a/media-plugins/audacious-plugins/files/digest-audacious-plugins-1.4.1 b/media-plugins/audacious-plugins/files/digest-audacious-plugins-1.4.1 new file mode 100644 index 000000000000..b0857a94a3ee --- /dev/null +++ b/media-plugins/audacious-plugins/files/digest-audacious-plugins-1.4.1 @@ -0,0 +1,3 @@ +MD5 eefc820fe019ab55c92ae1b9b4bb2a98 audacious-plugins-1.4.1.tgz 3164510 +RMD160 68d19f758bb5f2c300a8257f0413b01d623dcde2 audacious-plugins-1.4.1.tgz 3164510 +SHA256 96a613b15aeca04d5368f01435dd6afacef2ec3ca6a75d6d9f4a0643974683ac audacious-plugins-1.4.1.tgz 3164510 |