diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-06-10 09:31:28 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-06-10 09:31:28 +0000 |
commit | 2485b349c3b4de022ebf36db69237a99255fc042 (patch) | |
tree | e624fc68fe46274821d33f3729c3ce64db99421c /media-libs | |
parent | remove useless warning, it must not be the user's duty to figure out abi breaks (diff) | |
download | gentoo-2-2485b349c3b4de022ebf36db69237a99255fc042.tar.gz gentoo-2-2485b349c3b4de022ebf36db69237a99255fc042.tar.bz2 gentoo-2-2485b349c3b4de022ebf36db69237a99255fc042.zip |
fix build on bsd by removing a small useless bashism in configure
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libmp4v2/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libmp4v2/files/libmp4v2-1.5.0.1-configurebashisms.patch | 11 | ||||
-rw-r--r-- | media-libs/libmp4v2/libmp4v2-1.5.0.1-r2.ebuild | 3 |
3 files changed, 19 insertions, 2 deletions
diff --git a/media-libs/libmp4v2/ChangeLog b/media-libs/libmp4v2/ChangeLog index dbb2ee45ca59..3858075afe3c 100644 --- a/media-libs/libmp4v2/ChangeLog +++ b/media-libs/libmp4v2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libmp4v2 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp4v2/ChangeLog,v 1.45 2009/06/04 18:26:00 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp4v2/ChangeLog,v 1.46 2009/06/10 09:31:28 aballier Exp $ + + 10 Jun 2009; Alexis Ballier <aballier@gentoo.org> + libmp4v2-1.5.0.1-r2.ebuild, + +files/libmp4v2-1.5.0.1-configurebashisms.patch: + fix build on bsd by removing a small useless bashism in configure 04 Jun 2009; Diego E. Pettenò <flameeyes@gentoo.org> libmp4v2-1.5.0.1-r2.ebuild: diff --git a/media-libs/libmp4v2/files/libmp4v2-1.5.0.1-configurebashisms.patch b/media-libs/libmp4v2/files/libmp4v2-1.5.0.1-configurebashisms.patch new file mode 100644 index 000000000000..85757a6d91b0 --- /dev/null +++ b/media-libs/libmp4v2/files/libmp4v2-1.5.0.1-configurebashisms.patch @@ -0,0 +1,11 @@ +--- mpeg4ip-1.5.0.1/configure.in.old 2009-06-10 09:13:55 +0000 ++++ mpeg4ip-1.5.0.1/configure.in 2009-06-10 09:15:45 +0000 +@@ -7,7 +7,7 @@ + AC_MSG_ERROR([Please run bootstrap first]) + exit -1 + fi +-rm -f config.h >&/dev/null ++rm -f config.h + touch config.h + dnl Detect the canonical host and target build environment + AC_CANONICAL_HOST diff --git a/media-libs/libmp4v2/libmp4v2-1.5.0.1-r2.ebuild b/media-libs/libmp4v2/libmp4v2-1.5.0.1-r2.ebuild index 8223e0d6e0d9..647b800274a1 100644 --- a/media-libs/libmp4v2/libmp4v2-1.5.0.1-r2.ebuild +++ b/media-libs/libmp4v2/libmp4v2-1.5.0.1-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp4v2/libmp4v2-1.5.0.1-r2.ebuild,v 1.4 2009/06/04 18:26:00 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp4v2/libmp4v2-1.5.0.1-r2.ebuild,v 1.5 2009/06/10 09:31:28 aballier Exp $ inherit libtool autotools @@ -25,6 +25,7 @@ src_unpack() { sed -i -e 's:nasm -r:nasm -v:g' configure.in || die "sed nasm" epatch "${FILESDIR}"/${P}+glibc-2.10.patch + epatch "${FILESDIR}"/${P}-configurebashisms.patch # We don't give a damn about these two, just remove the two calls # so we don't have to have the macros to eautoreconf properly. |