diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2013-02-07 11:02:24 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2013-02-07 11:02:24 +0000 |
commit | 542cc9930e96c9b54ca6b034063e28eebe491fe1 (patch) | |
tree | 2d3cda5e5bb1c388adcf00751d3e217c4e289067 /media-libs/audiofile | |
parent | Add upstream remote-id info. (diff) | |
download | gentoo-2-542cc9930e96c9b54ca6b034063e28eebe491fe1.tar.gz gentoo-2-542cc9930e96c9b54ca6b034063e28eebe491fe1.tar.bz2 gentoo-2-542cc9930e96c9b54ca6b034063e28eebe491fe1.zip |
Fix sed line from SRC_SUBDIRS to SUBDIRS for 0.3.5 release wrt #455978 by Tomas Mozes
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'media-libs/audiofile')
-rw-r--r-- | media-libs/audiofile/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/audiofile/audiofile-0.3.5.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/media-libs/audiofile/ChangeLog b/media-libs/audiofile/ChangeLog index aed315912031..a93f2cc5cbaa 100644 --- a/media-libs/audiofile/ChangeLog +++ b/media-libs/audiofile/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/audiofile # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/ChangeLog,v 1.121 2013/02/07 02:31:51 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/ChangeLog,v 1.122 2013/02/07 11:02:24 ssuominen Exp $ + + 07 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> audiofile-0.3.5.ebuild: + Fix sed line from SRC_SUBDIRS to SUBDIRS for 0.3.5 release wrt #455978 by + Tomas Mozes *audiofile-0.3.5 (07 Feb 2013) diff --git a/media-libs/audiofile/audiofile-0.3.5.ebuild b/media-libs/audiofile/audiofile-0.3.5.ebuild index d85add4f75e5..575c33334ec5 100644 --- a/media-libs/audiofile/audiofile-0.3.5.ebuild +++ b/media-libs/audiofile/audiofile-0.3.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/audiofile/audiofile-0.3.5.ebuild,v 1.1 2013/02/07 02:31:51 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/audiofile-0.3.5.ebuild,v 1.2 2013/02/07 11:02:24 ssuominen Exp $ EAPI=5 @@ -19,8 +19,8 @@ DEPEND="test? ( dev-cpp/gtest )" DOCS=( ACKNOWLEDGEMENTS AUTHORS ChangeLog NEWS NOTES README TODO ) src_prepare() { - # don't build examples - sed -i "/^SRC_SUBDIRS/s: examples::" Makefile.am || die + # don't build examples wrt #455978 + sed -i '/^SUBDIRS/s: examples::' Makefile.am || die epatch "${FILESDIR}"/${P}-system-gtest.patch |