diff options
author | Michael Januszewski <spock@gentoo.org> | 2010-02-08 12:02:04 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2010-02-08 12:02:04 +0000 |
commit | f0ba0ca67156cc9c11144c9564104e7a43d6ccfc (patch) | |
tree | c9e2bfd867e971e9da3dbe261c2442dcd0c62db2 /media-sound | |
parent | Version bump. (diff) | |
download | gentoo-2-f0ba0ca67156cc9c11144c9564104e7a43d6ccfc.tar.gz gentoo-2-f0ba0ca67156cc9c11144c9564104e7a43d6ccfc.tar.bz2 gentoo-2-f0ba0ca67156cc9c11144c9564104e7a43d6ccfc.zip |
Version bump.
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/adplay/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/adplay/adplay-1.7.ebuild | 36 |
2 files changed, 43 insertions, 2 deletions
diff --git a/media-sound/adplay/ChangeLog b/media-sound/adplay/ChangeLog index fa05a7644906..46aea9ccc008 100644 --- a/media-sound/adplay/ChangeLog +++ b/media-sound/adplay/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/adplay -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/adplay/ChangeLog,v 1.19 2008/10/18 17:03:58 spock Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/adplay/ChangeLog,v 1.20 2010/02/08 12:02:04 spock Exp $ + +*adplay-1.7 (08 Feb 2010) + + 08 Feb 2010; Michał Januszewski <spock@gentoo.org> +adplay-1.7.ebuild: + Version bump. 18 Oct 2008; Michał Januszewski <spock@gentoo.org> -adplay-1.5.ebuild: Remove an old ebuild. diff --git a/media-sound/adplay/adplay-1.7.ebuild b/media-sound/adplay/adplay-1.7.ebuild new file mode 100644 index 000000000000..3e2793b4ae60 --- /dev/null +++ b/media-sound/adplay/adplay-1.7.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/adplay/adplay-1.7.ebuild,v 1.1 2010/02/08 12:02:04 spock Exp $ + +DESCRIPTION="A console player for AdLib music" +HOMEPAGE="http://adplug.sourceforge.net" +SRC_URI="mirror://sourceforge/adplug/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="alsa ao esd oss sdl" + +RDEPEND="media-libs/adplug + dev-cpp/libbinio + alsa? ( media-libs/alsa-lib ) + ao? ( media-libs/libao ) + esd? ( media-sound/esound ) + sdl? ( media-libs/libsdl )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_compile() { + econf --disable-dependency-tracking \ + $(use_enable alsa output-alsa) \ + $(use_enable ao output-ao) \ + $(use_enable esd output-esound) \ + $(use_enable oss output-oss) \ + $(use_enable sdl output-sdl) + emake || die "emake failed." +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog NEWS README TODO +} |