diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2012-11-25 10:53:36 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2012-11-25 10:53:36 +0000 |
commit | f2cbf48e8ed89ce441b8aa11ac03c162ccbc178b (patch) | |
tree | a3f367b69e23d4fbe27cebe78777b2e2e2b51e03 /media-video/rtmpdump | |
parent | Version bump. Add optional dependency on pygtksourceview, bug #444570. (diff) | |
download | gentoo-2-f2cbf48e8ed89ce441b8aa11ac03c162ccbc178b.tar.gz gentoo-2-f2cbf48e8ed89ce441b8aa11ac03c162ccbc178b.tar.bz2 gentoo-2-f2cbf48e8ed89ce441b8aa11ac03c162ccbc178b.zip |
Add missing quotes for tc-getXX functions to avoid problems with cross-compilation. Bug #444590. Thanks to Alexander E. Patrakov <patrakov@gmail.com>
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key B4AFF2C2)
Diffstat (limited to 'media-video/rtmpdump')
-rw-r--r-- | media-video/rtmpdump/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/rtmpdump/rtmpdump-2.3.ebuild | 4 | ||||
-rw-r--r-- | media-video/rtmpdump/rtmpdump-2.4.ebuild | 4 | ||||
-rw-r--r-- | media-video/rtmpdump/rtmpdump-9999.ebuild | 4 |
4 files changed, 12 insertions, 7 deletions
diff --git a/media-video/rtmpdump/ChangeLog b/media-video/rtmpdump/ChangeLog index 0f9f1d8ea390..f8f4732ad4c8 100644 --- a/media-video/rtmpdump/ChangeLog +++ b/media-video/rtmpdump/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-video/rtmpdump # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/rtmpdump/ChangeLog,v 1.22 2012/10/17 12:56:58 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/rtmpdump/ChangeLog,v 1.23 2012/11/25 10:53:36 hwoarang Exp $ + + 25 Nov 2012; Markos Chandras <hwoarang@gentoo.org> rtmpdump-2.3.ebuild, + rtmpdump-2.4.ebuild, rtmpdump-9999.ebuild: + Add missing quotes for tc-getXX functions to avoid problems with cross- + compilation. Bug #444590. Thanks to Alexander E. Patrakov <patrakov@gmail.com> 17 Oct 2012; Christoph Junghans <ottxor@gentoo.org> rtmpdump-2.4.ebuild, rtmpdump-9999.ebuild: diff --git a/media-video/rtmpdump/rtmpdump-2.3.ebuild b/media-video/rtmpdump/rtmpdump-2.3.ebuild index 31ab120491a2..31dedff39f92 100644 --- a/media-video/rtmpdump/rtmpdump-2.3.ebuild +++ b/media-video/rtmpdump/rtmpdump-2.3.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/rtmpdump/rtmpdump-2.3.ebuild,v 1.13 2012/03/20 23:31:29 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/rtmpdump/rtmpdump-2.3.ebuild,v 1.14 2012/11/25 10:53:36 hwoarang Exp $ EAPI="2" @@ -53,7 +53,7 @@ src_compile() { fi #fix multilib-script support. Bug #327449 sed -i "/^libdir/s:lib$:$(get_libdir)$:" librtmp/Makefile - emake CC=$(tc-getCC) LD=$(tc-getLD) \ + emake CC="$(tc-getCC)" LD="$(tc-getLD)" \ OPT="${CFLAGS}" XLDFLAGS="${LDFLAGS}" CRYPTO="${crypto}" SYS=posix || die "emake failed" } diff --git a/media-video/rtmpdump/rtmpdump-2.4.ebuild b/media-video/rtmpdump/rtmpdump-2.4.ebuild index c3bd7d238e32..aaf8e7f0343b 100644 --- a/media-video/rtmpdump/rtmpdump-2.4.ebuild +++ b/media-video/rtmpdump/rtmpdump-2.4.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/rtmpdump/rtmpdump-2.4.ebuild,v 1.4 2012/10/17 12:56:58 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/rtmpdump/rtmpdump-2.4.ebuild,v 1.5 2012/11/25 10:53:36 hwoarang Exp $ EAPI="4" @@ -53,7 +53,7 @@ src_compile() { fi #fix multilib-script support. Bug #327449 sed -i "/^libdir/s:lib$:$(get_libdir)$:" librtmp/Makefile - emake CC=$(tc-getCC) LD=$(tc-getLD) \ + emake CC="$(tc-getCC)" LD="$(tc-getLD)" \ OPT="${CFLAGS}" XLDFLAGS="${LDFLAGS}" CRYPTO="${crypto}" SYS=posix } diff --git a/media-video/rtmpdump/rtmpdump-9999.ebuild b/media-video/rtmpdump/rtmpdump-9999.ebuild index b9a66d91b139..f0565c3ba8c3 100644 --- a/media-video/rtmpdump/rtmpdump-9999.ebuild +++ b/media-video/rtmpdump/rtmpdump-9999.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/rtmpdump/rtmpdump-9999.ebuild,v 1.3 2012/10/17 12:56:58 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/rtmpdump/rtmpdump-9999.ebuild,v 1.4 2012/11/25 10:53:36 hwoarang Exp $ EAPI="4" @@ -53,7 +53,7 @@ src_compile() { fi #fix multilib-script support. Bug #327449 sed -i "/^libdir/s:lib$:$(get_libdir)$:" librtmp/Makefile - emake CC=$(tc-getCC) LD=$(tc-getLD) \ + emake CC="$(tc-getCC)" LD="$(tc-getLD)" \ OPT="${CFLAGS}" XLDFLAGS="${LDFLAGS}" CRYPTO="${crypto}" SYS=posix } |