summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2006-02-04 15:38:56 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2006-02-04 15:38:56 +0000
commita8b315cb13c888871813d7d4a45366a472088e17 (patch)
tree694b70d6fcc1c5c5141edae3409fa8728d50a7c0 /media-libs/a52dec/a52dec-0.7.4-r3.ebuild
parentStable on hppa. (diff)
downloadgentoo-2-a8b315cb13c888871813d7d4a45366a472088e17.tar.gz
gentoo-2-a8b315cb13c888871813d7d4a45366a472088e17.tar.bz2
gentoo-2-a8b315cb13c888871813d7d4a45366a472088e17.zip
Change old ebuild to use autotools eclass/eautoreconf; remove dependency over automake/autoconf as they are set by autotools eclass.
(Portage version: 2.1_pre4-r1)
Diffstat (limited to 'media-libs/a52dec/a52dec-0.7.4-r3.ebuild')
-rw-r--r--media-libs/a52dec/a52dec-0.7.4-r3.ebuild19
1 files changed, 5 insertions, 14 deletions
diff --git a/media-libs/a52dec/a52dec-0.7.4-r3.ebuild b/media-libs/a52dec/a52dec-0.7.4-r3.ebuild
index 3f15af1083b3..e576cfd4da3d 100644
--- a/media-libs/a52dec/a52dec-0.7.4-r3.ebuild
+++ b/media-libs/a52dec/a52dec-0.7.4-r3.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2004 Gentoo Foundation
+# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/a52dec/a52dec-0.7.4-r3.ebuild,v 1.8 2004/12/28 20:19:57 ribosome Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/a52dec/a52dec-0.7.4-r3.ebuild,v 1.9 2006/02/04 15:38:56 flameeyes Exp $
-inherit eutils flag-o-matic libtool
+inherit eutils flag-o-matic libtool autotools
DESCRIPTION="library for decoding ATSC A/52 streams used in DVD"
HOMEPAGE="http://liba52.sourceforge.net/"
@@ -13,9 +13,7 @@ SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ~ppc ppc64 ~ppc-macos sparc x86"
IUSE="oss static djbfft"
-DEPEND=">=sys-devel/autoconf-2.5
- >=sys-devel/automake-1.8
- djbfft? ( sci-libs/djbfft )"
+DEPEND="djbfft? ( sci-libs/djbfft )"
RDEPEND="virtual/libc"
src_unpack() {
@@ -23,14 +21,7 @@ src_unpack() {
cd ${S}
epatch ${FILESDIR}/${P}-build.patch
- export WANT_AUTOMAKE=1.8
- export WANT_AUTOCONF=2.5
- libtoolize --force --copy --automake || die "libtoolize"
- autoheader || die "autoheader"
- aclocal || die "aclocal"
- automake -a -f -c || die "automake"
- autoconf || die "autoconf"
-
+ eautoreconf
epunt_cxx
}