diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2013-05-05 01:16:50 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2013-05-05 01:16:50 +0000 |
commit | 1ebb677cc208dba4e64e949d4103eb21392e70d8 (patch) | |
tree | 65345c5909af3d003b680cac52142c0a3dbccad3 /media-libs/libv4l | |
parent | Fix blockers -- older sysvinit cannot be installed with newer util-linux. (diff) | |
download | gentoo-2-1ebb677cc208dba4e64e949d4103eb21392e70d8.tar.gz gentoo-2-1ebb677cc208dba4e64e949d4103eb21392e70d8.tar.bz2 gentoo-2-1ebb677cc208dba4e64e949d4103eb21392e70d8.zip |
-j1 for install, see changelog for detailed error
(Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'media-libs/libv4l')
-rw-r--r-- | media-libs/libv4l/ChangeLog | 12 | ||||
-rw-r--r-- | media-libs/libv4l/libv4l-0.9.5-r1.ebuild | 4 | ||||
-rw-r--r-- | media-libs/libv4l/libv4l-0.9.5.ebuild | 4 |
3 files changed, 15 insertions, 5 deletions
diff --git a/media-libs/libv4l/ChangeLog b/media-libs/libv4l/ChangeLog index 56dfc991f053..7f14a250342c 100644 --- a/media-libs/libv4l/ChangeLog +++ b/media-libs/libv4l/ChangeLog @@ -1,6 +1,16 @@ # ChangeLog for media-libs/libv4l # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v 1.89 2013/05/04 16:59:43 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v 1.90 2013/05/05 01:16:50 ssuominen Exp $ + + 05 May 2013; Samuli Suominen <ssuominen@gentoo.org> libv4l-0.9.5.ebuild, + libv4l-0.9.5-r1.ebuild: + Use -j1 for emake install because of the following error: + + libtool: relink: gcc ... -o .libs/v4l2convert.so + ld: cannot find -lv4l2 + collect2: error: ld returned 1 exit status + libtool: install: error: relink `v4l2convert.la' with the above command + before installing it 04 May 2013; Samuli Suominen <ssuominen@gentoo.org> -libv4l-0.8.9-r1.ebuild: old diff --git a/media-libs/libv4l/libv4l-0.9.5-r1.ebuild b/media-libs/libv4l/libv4l-0.9.5-r1.ebuild index 8ea989135206..8929e6604481 100644 --- a/media-libs/libv4l/libv4l-0.9.5-r1.ebuild +++ b/media-libs/libv4l/libv4l-0.9.5-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/libv4l-0.9.5-r1.ebuild,v 1.2 2013/05/04 16:55:25 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/libv4l-0.9.5-r1.ebuild,v 1.3 2013/05/05 01:16:50 ssuominen Exp $ EAPI=5 inherit eutils linux-info udev multilib-minimal @@ -53,7 +53,7 @@ multilib_src_compile() { } multilib_src_install() { - emake -C lib DESTDIR="${D}" install + emake -j1 -C lib DESTDIR="${D}" install } multilib_src_install_all() { diff --git a/media-libs/libv4l/libv4l-0.9.5.ebuild b/media-libs/libv4l/libv4l-0.9.5.ebuild index 9e063f1dc458..1f06969f1d07 100644 --- a/media-libs/libv4l/libv4l-0.9.5.ebuild +++ b/media-libs/libv4l/libv4l-0.9.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/libv4l-0.9.5.ebuild,v 1.2 2013/05/04 16:55:25 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/libv4l-0.9.5.ebuild,v 1.3 2013/05/05 01:16:50 ssuominen Exp $ EAPI=5 inherit eutils linux-info udev @@ -47,7 +47,7 @@ src_compile() { } src_install() { - emake -C lib DESTDIR="${D}" install + emake -j1 -C lib DESTDIR="${D}" install dodoc ChangeLog README.lib* TODO prune_libtool_files --all } |