summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2005-06-20 14:08:48 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2005-06-20 14:08:48 +0000
commit6b9a7ff41f36edd85745976283178406ddda02c0 (patch)
tree3e07c8222f0290bb78ac9d3199415c4c7311220f
parentreadded ~amd64 keyword. Disabled serpent/rc6 for amd64. bug #94288 (diff)
downloadhistorical-6b9a7ff41f36edd85745976283178406ddda02c0.tar.gz
historical-6b9a7ff41f36edd85745976283178406ddda02c0.tar.bz2
historical-6b9a7ff41f36edd85745976283178406ddda02c0.zip
Fixing #96555 (need autoreconf when using latest portage which sets $CBUILD)
Package-Manager: portage-2.0.51.22-r1
-rw-r--r--media-video/camstream/ChangeLog7
-rw-r--r--media-video/camstream/Manifest4
-rw-r--r--media-video/camstream/camstream-0.26.3.ebuild12
3 files changed, 14 insertions, 9 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..23c5240f3f45 100644
--- a/media-video/camstream/Manifest
+++ b/media-video/camstream/Manifest
@@ -1,5 +1,5 @@
-MD5 058b85270fed796425af309a2fda6154 camstream-0.26.3.ebuild 1124
-MD5 a3b82a4096f1246025484db499bf06dd ChangeLog 2318
+MD5 1a5fcddca5007df1d75dd747255d8160 camstream-0.26.3.ebuild 1214
+MD5 ddaebd02849b8bbbcbc3efb2c8e6fb50 ChangeLog 2476
MD5 5ef11878179d451985ee7157a416c27e metadata.xml 222
MD5 e44f9499a8044ecb7eb25cc6aa60f587 files/uicmocpath.patch 692
MD5 55ae29f8111814f90a59ce1692028d3e files/x86_64-asm.patch 7265
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"
}