diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2006-09-25 11:35:37 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2006-09-25 11:35:37 +0000 |
commit | 9bfad64306063bd5f73e8b3234cdb9f9216d717e (patch) | |
tree | 2efdad5257d7010a073ab52a1de216775ded517a /media-libs/libiec61883 | |
parent | Revision bump with patch to work with python 2.5. (diff) | |
download | gentoo-2-9bfad64306063bd5f73e8b3234cdb9f9216d717e.tar.gz gentoo-2-9bfad64306063bd5f73e8b3234cdb9f9216d717e.tar.bz2 gentoo-2-9bfad64306063bd5f73e8b3234cdb9f9216d717e.zip |
Revision bump, thanks to Christian Gmeiner (see bug #148987).
(Portage version: 2.1.2_pre1-r1)
Diffstat (limited to 'media-libs/libiec61883')
-rw-r--r-- | media-libs/libiec61883/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/libiec61883/files/digest-libiec61883-1.1.0 | 3 | ||||
-rw-r--r-- | media-libs/libiec61883/libiec61883-1.1.0.ebuild | 36 |
3 files changed, 46 insertions, 1 deletions
diff --git a/media-libs/libiec61883/ChangeLog b/media-libs/libiec61883/ChangeLog index 7c1e7559f870..b67185a5d11d 100644 --- a/media-libs/libiec61883/ChangeLog +++ b/media-libs/libiec61883/ChangeLog @@ -1,6 +1,12 @@ # 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.11 2006/07/08 08:18:35 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libiec61883/ChangeLog,v 1.12 2006/09/25 11:35:37 calchan Exp $ + +*libiec61883-1.1.0 (25 Sep 2006) + + 25 Sep 2006; Denis Dupeyron <calchan@gentoo.org> + +libiec61883-1.1.0.ebuild: + Revision bump, thanks to Christian Gmeiner (see bug #148987). 08 Jul 2006; Markus Rothe <corsair@gentoo.org> libiec61883-1.0.0-r1.ebuild: diff --git a/media-libs/libiec61883/files/digest-libiec61883-1.1.0 b/media-libs/libiec61883/files/digest-libiec61883-1.1.0 new file mode 100644 index 000000000000..07818236b781 --- /dev/null +++ b/media-libs/libiec61883/files/digest-libiec61883-1.1.0 @@ -0,0 +1,3 @@ +MD5 08f46840912ae2032499186228842a32 libiec61883-1.1.0.tar.gz 366682 +RMD160 79865282c9958e62fa28bc6eb54d1d9fdf8e5f56 libiec61883-1.1.0.tar.gz 366682 +SHA256 78f6c7ca80ff622f2b0b3691f715d84bb94a00f5f60560cca7989abb8e62c025 libiec61883-1.1.0.tar.gz 366682 diff --git a/media-libs/libiec61883/libiec61883-1.1.0.ebuild b/media-libs/libiec61883/libiec61883-1.1.0.ebuild new file mode 100644 index 000000000000..ba151aa266b4 --- /dev/null +++ b/media-libs/libiec61883/libiec61883-1.1.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2006 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.1 2006/09/25 11:35:37 calchan Exp $ + +inherit autotools eutils + +DESCRIPTION="library for capturing video (dv or mpeg2) over the IEEE 1394 bus" +HOMEPAGE="http://www.linux1394.org" +#AFAIK, this isn't mirrored on sourceforge like libraw1394. +SRC_URI="http://www.linux1394.org/dl/${P}.tar.gz" + +LICENSE="|| ( LGPL-2.1 GPL-2 )" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="examples" + +DEPEND=">=sys-libs/libraw1394-1.2.0" + +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 +} + +src_install () { + make DESTDIR="${D}" install || die "installation failed" + dodoc AUTHORS ChangeLog NEWS README +} |