diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2005-06-20 14:08:48 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2005-06-20 14:08:48 +0000 |
commit | 5f04f37066f1b20d99a44cfb63c830f19b292b68 (patch) | |
tree | bf653ee975a250b15437a54b94c03055c6175003 /media-video/camstream | |
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')
-rw-r--r-- | media-video/camstream/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/camstream/Manifest | 2 | ||||
-rw-r--r-- | media-video/camstream/camstream-0.26.3.ebuild | 12 |
3 files changed, 13 insertions, 8 deletions
diff --git a/media-video/camstream/ChangeLog b/media-video/camstream/ChangeLog index 0a98c724d68e..6a6187cf1fc0 100644 --- a/media-video/camstream/ChangeLog +++ b/media-video/camstream/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-video/camstream -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/camstream/ChangeLog,v 1.12 2004/06/25 00:37:47 agriffis Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/camstream/ChangeLog,v 1.13 2005/06/20 14:08:48 phosphan Exp $ + + 20 Jun 2005; Patrick Kursawe <phosphan@gentoo.org> camstream-0.26.3.ebuild: + Fixing #96555 (need autoreconf when using latest portage which sets $CBUILD) 07 May 2004; David Holm <dholm@gentoo.org> camstream-0.26.3.ebuild: Set -ppc as it requires x86-asm. diff --git a/media-video/camstream/Manifest b/media-video/camstream/Manifest index a47dbc6d9621..86d17812b773 100644 --- a/media-video/camstream/Manifest +++ b/media-video/camstream/Manifest @@ -1,4 +1,4 @@ -MD5 058b85270fed796425af309a2fda6154 camstream-0.26.3.ebuild 1124 +MD5 ab7b7c84ffcfb9e0dd7e63b73900a9b6 camstream-0.26.3.ebuild 1214 MD5 a3b82a4096f1246025484db499bf06dd ChangeLog 2318 MD5 5ef11878179d451985ee7157a416c27e metadata.xml 222 MD5 e44f9499a8044ecb7eb25cc6aa60f587 files/uicmocpath.patch 692 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" } |