diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-08-01 17:40:57 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-08-01 17:40:57 +0000 |
commit | a5066d3d4d4770a9ca5c357f61d1623e7cd17286 (patch) | |
tree | 6d0d927b509a65f0b3af26578a6d13349bd71c7b /media-libs/libiec61883 | |
parent | Update HOMEPAGE wrt bug #479202. (diff) | |
download | gentoo-2-a5066d3d4d4770a9ca5c357f61d1623e7cd17286.tar.gz gentoo-2-a5066d3d4d4770a9ca5c357f61d1623e7cd17286.tar.bz2 gentoo-2-a5066d3d4d4770a9ca5c357f61d1623e7cd17286.zip |
Convert to multlib and stack it for medialibs -r8. Greatly based on the ebuild by Karl Lindén in bug #468940.
(Portage version: 2.2.0_alpha191/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-libs/libiec61883')
-rw-r--r-- | media-libs/libiec61883/ChangeLog | 9 | ||||
-rw-r--r-- | media-libs/libiec61883/libiec61883-1.2.0-r1.ebuild | 32 |
2 files changed, 40 insertions, 1 deletions
diff --git a/media-libs/libiec61883/ChangeLog b/media-libs/libiec61883/ChangeLog index e0badd2fe215..4ed3f9af181f 100644 --- a/media-libs/libiec61883/ChangeLog +++ b/media-libs/libiec61883/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-libs/libiec61883 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libiec61883/ChangeLog,v 1.35 2013/07/21 15:58:38 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libiec61883/ChangeLog,v 1.36 2013/08/01 17:40:57 aballier Exp $ + +*libiec61883-1.2.0-r1 (01 Aug 2013) + + 01 Aug 2013; Alexis Ballier <aballier@gentoo.org> + +libiec61883-1.2.0-r1.ebuild: + Convert to multlib and stack it for medialibs -r8. Greatly based on the + ebuild by Karl Lindén in bug #468940. 21 Jul 2013; Agostino Sarubbo <ago@gentoo.org> libiec61883-1.2.0.ebuild: Stable for ia64, wrt bug #473302 diff --git a/media-libs/libiec61883/libiec61883-1.2.0-r1.ebuild b/media-libs/libiec61883/libiec61883-1.2.0-r1.ebuild new file mode 100644 index 000000000000..cbae43793e6c --- /dev/null +++ b/media-libs/libiec61883/libiec61883-1.2.0-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libiec61883/libiec61883-1.2.0-r1.ebuild,v 1.1 2013/08/01 17:40:57 aballier Exp $ + +EAPI=5 + +inherit autotools-multilib eutils unpacker autotools + +DESCRIPTION="Library for capturing video (dv or mpeg2) over the IEEE 1394 bus" +HOMEPAGE="http://dennedy.org/cgi-bin/gitweb.cgi?p=dennedy.org/libiec61883.git" +SRC_URI="mirror://kernel/linux/libs/ieee1394/${P}.tar.xz" + +LICENSE="|| ( LGPL-2.1 GPL-2 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="examples static-libs" + +RDEPEND=">=sys-libs/libraw1394-1.2.1-r1[${MULTILIB_USEDEP}] + abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20130224-r7 + !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + 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" + AUTOTOOLS_AUTORECONF="1" + fi + autotools-multilib_src_prepare +} |