# ChangeLog for media-libs/libiec61883
-# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libiec61883/ChangeLog,v 1.16 2006/11/09 09:29:22 zzam Exp $
+# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libiec61883/ChangeLog,v 1.17 2007/01/04 15:22:18 flameeyes Exp $
+
+ 04 Jan 2007; Diego Pettenò <flameeyes@gentoo.org>
+ libiec61883-1.1.0.ebuild:
+ Fix broken autotools handling.
09 Nov 2006; Matthias Schwarzott <zzam@gentoo.org>
libiec61883-1.0.0-r1.ebuild, libiec61883-1.1.0.ebuild:
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libiec61883/libiec61883-1.1.0.ebuild,v 1.4 2006/11/09 09:29:22 zzam Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libiec61883/libiec61883-1.1.0.ebuild,v 1.5 2007/01/04 15:22:18 flameeyes Exp $
WANT_AUTOMAKE="latest"
WANT_AUTOCONF="latest"
src_unpack() {
unpack ${A}
cd ${S}
- libtoolize --copy --force
if use examples
then
sed -i -e "s:noinst_PROGRAMS.*:noinst_PROGRAMS = :g" \
-e "s:in_PROGRAMS.*:in_PROGRAMS = plugreport plugctl test-amdtp test-dv test-mpeg2 test-plugs:g" \
examples/Makefile.am || die "noinst patching failed"
- eautoreconf
fi
+
+ eautoreconf
}
src_install () {
# ChangeLog for media-libs/tunepimp
-# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/tunepimp/ChangeLog,v 1.47 2006/12/26 14:47:17 gustavoz Exp $
+# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tunepimp/ChangeLog,v 1.48 2007/01/04 15:20:56 flameeyes Exp $
+
+ 04 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> tunepimp-0.5.2.ebuild:
+ Fix broken autotools handling.
26 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org> tunepimp-0.5.2.ebuild:
Stable on sparc wrt #158836
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/tunepimp/tunepimp-0.5.2.ebuild,v 1.8 2006/12/26 14:47:17 gustavoz Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/tunepimp/tunepimp-0.5.2.ebuild,v 1.9 2007/01/04 15:20:56 flameeyes Exp $
-inherit eutils distutils perl-app
+WANT_AUTOCONF="latest"
+WANT_AUTOMAKE="latest"
+
+inherit eutils distutils autotools
MY_P="lib${P}"
S="${WORKDIR}/${MY_P}"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
-src_compile() {
- # broken script, install fails
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+
sed -i -e "s: tta::" configure.in
- libtoolize --copy --force
- autoheader
- automake --foreign --add-missing --copy --include-deps
- aclocal
- autoconf
- econf || die "configure failed"
- emake || die "emake failed"
- # disabled as broken with Perl 5.8.8
- #if use perl; then
- # cd ${S}/perl/tunepimp-perl
- # perl-app_src_compile || die "perl module failed to compile"
- #fi
+ eautoreconf
}
src_install() {
insinto /usr/share/doc/${PF}/examples/
doins examples/*
fi
-# if use perl; then
-# cd ${S}/perl/tunepimp-perl
-# perl-module_src_install || die "perl module failed to install"
-# insinto /usr/share/doc/${PF}/examples/
-# doins examples/*
-# fi
}