diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-06-29 18:03:11 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-06-29 18:03:11 +0000 |
commit | 832a52ab99b89594d8c1a252c9f5eb68297124c5 (patch) | |
tree | bea8e5455e57c16897919e534852628ffaf035da /media-libs/amrnb | |
parent | Version bump. (diff) | |
download | gentoo-2-832a52ab99b89594d8c1a252c9f5eb68297124c5.tar.gz gentoo-2-832a52ab99b89594d8c1a252c9f5eb68297124c5.tar.bz2 gentoo-2-832a52ab99b89594d8c1a252c9f5eb68297124c5.zip |
Version bump.
(Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc3 x86_64)
Diffstat (limited to 'media-libs/amrnb')
-rw-r--r-- | media-libs/amrnb/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/amrnb/amrnb-7.0.0.2.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/media-libs/amrnb/ChangeLog b/media-libs/amrnb/ChangeLog index f88e6c4f3b13..cbe16805a384 100644 --- a/media-libs/amrnb/ChangeLog +++ b/media-libs/amrnb/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/amrnb # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/amrnb/ChangeLog,v 1.24 2008/05/25 09:03:07 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/amrnb/ChangeLog,v 1.25 2008/06/29 18:03:11 drac Exp $ + +*amrnb-7.0.0.2 (29 Jun 2008) + + 29 Jun 2008; Samuli Suominen <drac@gentoo.org> +amrnb-7.0.0.2.ebuild: + Version bump. 25 May 2008; Alexis Ballier <aballier@gentoo.org> amrnb-7.0.0.0.ebuild: keyword ~x86-fbsd diff --git a/media-libs/amrnb/amrnb-7.0.0.2.ebuild b/media-libs/amrnb/amrnb-7.0.0.2.ebuild new file mode 100644 index 000000000000..41a2a0453df8 --- /dev/null +++ b/media-libs/amrnb/amrnb-7.0.0.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/amrnb/amrnb-7.0.0.2.ebuild,v 1.1 2008/06/29 18:03:11 drac Exp $ + +SPEC_VER="26104-700" + +DESCRIPTION="Wrapper library for 3GPP Adaptive Multi-Rate Floating-point Speech Codec" +HOMEPAGE="http://www.penguin.cz/~utx/amr" +SRC_URI="http://ftp.penguin.cz/pub/users/utx/amr/${P}.tar.bz2 + http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/${SPEC_VER}.zip" + +LICENSE="LGPL-2 as-is" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +RESTRICT="mirror" + +RDEPEND="" +DEPEND="app-arch/unzip" + +src_unpack() { + unpack ${P}.tar.bz2 + cd "${S}" + cp "${DISTDIR}"/${SPEC_VER}.zip . +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog NEWS README TODO +} |