diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-12-16 16:19:42 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-12-16 16:19:42 +0000 |
commit | de0243b1faa99ab4b19d3f720e185b7a113f567a (patch) | |
tree | eb60d6d0bb32167704783a84daff44f214691066 /media-sound | |
parent | Fix LICENSE, see LICENSE file in tarball, bug 447286. (diff) | |
download | gentoo-2-de0243b1faa99ab4b19d3f720e185b7a113f567a.tar.gz gentoo-2-de0243b1faa99ab4b19d3f720e185b7a113f567a.tar.bz2 gentoo-2-de0243b1faa99ab4b19d3f720e185b7a113f567a.zip |
Version bump.
(Portage version: 2.2.0_alpha147/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/sidplayfp/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/sidplayfp/sidplayfp-0.3.3.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/media-sound/sidplayfp/ChangeLog b/media-sound/sidplayfp/ChangeLog index f83af06d48ff..ce69a9a3d3d5 100644 --- a/media-sound/sidplayfp/ChangeLog +++ b/media-sound/sidplayfp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/sidplayfp # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/sidplayfp/ChangeLog,v 1.4 2012/09/03 15:00:05 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/sidplayfp/ChangeLog,v 1.5 2012/12/16 16:19:42 ssuominen Exp $ + +*sidplayfp-0.3.3 (16 Dec 2012) + + 16 Dec 2012; Samuli Suominen <ssuominen@gentoo.org> +sidplayfp-0.3.3.ebuild: + Version bump. 03 Sep 2012; Diego E. Pettenò <flameeyes@gentoo.org> sidplayfp-0.3.1.ebuild: Add missing dependency on pkgconfig. diff --git a/media-sound/sidplayfp/sidplayfp-0.3.3.ebuild b/media-sound/sidplayfp/sidplayfp-0.3.3.ebuild new file mode 100644 index 000000000000..d2be57bc9dff --- /dev/null +++ b/media-sound/sidplayfp/sidplayfp-0.3.3.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/sidplayfp/sidplayfp-0.3.3.ebuild,v 1.1 2012/12/16 16:19:42 ssuominen Exp $ + +EAPI=5 + +DESCRIPTION="A sidplay2 fork with resid-fp" +HOMEPAGE="http://sourceforge.net/projects/sidplay-residfp/" +SRC_URI="mirror://sourceforge/sidplay-residfp/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+alsa oss pulseaudio" + +RDEPEND=">=media-libs/libsidplayfp-0.3.8 + alsa? ( media-libs/alsa-lib ) + pulseaudio? ( media-sound/pulseaudio )" +DEPEND="${RDEPEND} + virtual/pkgconfig + oss? ( virtual/os-headers )" + +DOCS=( AUTHORS ChangeLog README TODO ) + +src_configure() { + local output=wav + use oss && output=oss + use alsa && output=alsa + use pulseaudio && output=pulse + + econf --enable-driver=${output} +} |