diff options
author | 2005-06-20 14:08:48 +0000 | |
---|---|---|
committer | 2005-06-20 14:08:48 +0000 | |
commit | 5f04f37066f1b20d99a44cfb63c830f19b292b68 (patch) | |
tree | bf653ee975a250b15437a54b94c03055c6175003 /media-video/camstream/camstream-0.26.3.ebuild | |
parent | readded ~amd64 keyword. Disabled serpent/rc6 for amd64. bug #94288 (diff) | |
download | gentoo-2-5f04f37066f1b20d99a44cfb63c830f19b292b68.tar.gz gentoo-2-5f04f37066f1b20d99a44cfb63c830f19b292b68.tar.bz2 gentoo-2-5f04f37066f1b20d99a44cfb63c830f19b292b68.zip |
Fixing #96555 (need autoreconf when using latest portage which sets $CBUILD)
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'media-video/camstream/camstream-0.26.3.ebuild')
-rw-r--r-- | media-video/camstream/camstream-0.26.3.ebuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/media-video/camstream/camstream-0.26.3.ebuild b/media-video/camstream/camstream-0.26.3.ebuild index 7cfdfbac45cf..fb0042dadd1d 100644 --- a/media-video/camstream/camstream-0.26.3.ebuild +++ b/media-video/camstream/camstream-0.26.3.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/camstream/camstream-0.26.3.ebuild,v 1.7 2004/07/14 21:31:49 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/camstream/camstream-0.26.3.ebuild,v 1.8 2005/06/20 14:08:48 phosphan Exp $ -inherit eutils gnuconfig +inherit eutils DESCRIPTION="Collection of tools for webcams and other video devices" HOMEPAGE="http://www.smcc.demon.nl/camstream/" @@ -12,12 +12,12 @@ KEYWORDS="x86 ~amd64 -ppc" SLOT="0" IUSE="doc" -DEPEND=">=x11-libs/qt-3" +DEPEND=">=x11-libs/qt-3 + sys-devel/autoconf" src_unpack () { unpack ${A} cd ${S} - gnuconfig_update # Camstream has 32 bit asssembler normally. use amd64 && epatch ${FILESDIR}/x86_64-asm.patch } @@ -28,6 +28,8 @@ src_compile () { mkdir -p $T/fakehome/.qt export HOME="$T/fakehome" addwrite "${QTDIR}/etc/settings" + autoreconf &> autoreconf-output || \ + die "autoreconf failed. Output in ${S}/autoreconf-output" econf || die "configure failed" emake || die "emake failed" } |