diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-05-24 03:44:58 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-05-24 03:44:58 +0000 |
commit | c5ad819d6e3ecf19a98cc55f940a012512f03a2c (patch) | |
tree | 66f8813015012ce22c7d75f0b4b35a20d9b2a016 /media-video | |
parent | Bump pixman requirement to 0.24, bug 410813. (diff) | |
download | gentoo-2-c5ad819d6e3ecf19a98cc55f940a012512f03a2c.tar.gz gentoo-2-c5ad819d6e3ecf19a98cc55f940a012512f03a2c.tar.bz2 gentoo-2-c5ad819d6e3ecf19a98cc55f940a012512f03a2c.zip |
Missing sys-devel/libtool dependency for libltdl. Empty dependency_libs in libtool files to ensure they don't cause overlinking. Stop building static copies of the plugins.
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/camserv/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/camserv/camserv-0.5.1-r2.ebuild | 15 |
2 files changed, 18 insertions, 4 deletions
diff --git a/media-video/camserv/ChangeLog b/media-video/camserv/ChangeLog index 30e29b941c3b..a1e504c6bb35 100644 --- a/media-video/camserv/ChangeLog +++ b/media-video/camserv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-video/camserv # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/camserv/ChangeLog,v 1.25 2012/05/24 03:41:30 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/camserv/ChangeLog,v 1.26 2012/05/24 03:44:58 ssuominen Exp $ + + 24 May 2012; Samuli Suominen <ssuominen@gentoo.org> camserv-0.5.1-r2.ebuild: + Missing sys-devel/libtool dependency for libltdl. Empty dependency_libs in + libtool files to ensure they don't cause overlinking. Stop building static + copies of the plugins. 24 May 2012; Samuli Suominen <ssuominen@gentoo.org> camserv-0.5.1-r2.ebuild: Use libv4l1-videodev.h from media-libs/libv4l to build libvideo_v4l.so diff --git a/media-video/camserv/camserv-0.5.1-r2.ebuild b/media-video/camserv/camserv-0.5.1-r2.ebuild index 801504a0a76d..2eec954acb12 100644 --- a/media-video/camserv/camserv-0.5.1-r2.ebuild +++ b/media-video/camserv/camserv-0.5.1-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/camserv/camserv-0.5.1-r2.ebuild,v 1.16 2012/05/24 03:41:30 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/camserv/camserv-0.5.1-r2.ebuild,v 1.17 2012/05/24 03:44:58 ssuominen Exp $ EAPI=4 inherit autotools eutils @@ -14,8 +14,10 @@ SLOT="0" KEYWORDS="amd64 ~ppc x86" IUSE="" -RDEPEND="virtual/jpeg - media-libs/imlib2" +# libtool's libltdl is used for loading plugins +RDEPEND="media-libs/imlib2 + >=sys-devel/libtool-2.2.6b + virtual/jpeg" DEPEND="${RDEPEND} media-libs/libv4l" # libv4l1-videodev.h wrt #396635 @@ -37,7 +39,14 @@ src_prepare() { AT_M4DIR=macros eautoreconf } +src_configure() { + econf --disable-static +} + src_install() { default + newinitd "${FILESDIR}"/camserv.init camserv + + find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} + } |