diff options
author | Michael Januszewski <spock@gentoo.org> | 2010-02-08 11:58:00 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2010-02-08 11:58:00 +0000 |
commit | 1184cb7d4d75b4249718277a97cbef99ee551ba2 (patch) | |
tree | a8e1c530a17346e4d7a97218dec0d22e9d79f0c1 /media-libs | |
parent | Version bump. (diff) | |
download | gentoo-2-1184cb7d4d75b4249718277a97cbef99ee551ba2.tar.gz gentoo-2-1184cb7d4d75b4249718277a97cbef99ee551ba2.tar.bz2 gentoo-2-1184cb7d4d75b4249718277a97cbef99ee551ba2.zip |
Version bump.
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/adplug/ChangeLog | 9 | ||||
-rw-r--r-- | media-libs/adplug/adplug-2.2.ebuild | 28 |
2 files changed, 35 insertions, 2 deletions
diff --git a/media-libs/adplug/ChangeLog b/media-libs/adplug/ChangeLog index 8f82f5b3b899..0382a1099570 100644 --- a/media-libs/adplug/ChangeLog +++ b/media-libs/adplug/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/adplug -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/adplug/ChangeLog,v 1.28 2008/10/18 17:01:32 spock Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/adplug/ChangeLog,v 1.29 2010/02/08 11:58:00 spock Exp $ + +*adplug-2.2 (08 Feb 2010) + + 08 Feb 2010; Michał Januszewski <spock@gentoo.org> +adplug-2.2.ebuild: + Version bump. 18 Oct 2008; Michał Januszewski <spock@gentoo.org> -adplug-2.0.1.ebuild: Remove an old ebuild. diff --git a/media-libs/adplug/adplug-2.2.ebuild b/media-libs/adplug/adplug-2.2.ebuild new file mode 100644 index 000000000000..e1fdda5b8240 --- /dev/null +++ b/media-libs/adplug/adplug-2.2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/adplug/adplug-2.2.ebuild,v 1.1 2010/02/08 11:58:00 spock Exp $ + +inherit eutils + +DESCRIPTION="A free, cross-platform, hardware independent AdLib sound player library" +HOMEPAGE="http://adplug.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="debug" + +RDEPEND=">=dev-cpp/libbinio-1.4" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_compile() { + econf --disable-dependency-tracking $(use_enable debug) + emake || die "emake failed." +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS BUGS ChangeLog NEWS README TODO +} |