diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-03-13 18:45:11 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-03-13 18:45:11 +0000 |
commit | 7e41bf08da6326b56f2dfe30c00dc1a1086554e8 (patch) | |
tree | e20e24f8a6582b5441de66d685fe8d5ed0673657 /media-sound/lilypond | |
parent | Fix building for PowerPC64 using patch from libffi-discuss ML. (diff) | |
download | gentoo-2-7e41bf08da6326b56f2dfe30c00dc1a1086554e8.tar.gz gentoo-2-7e41bf08da6326b56f2dfe30c00dc1a1086554e8.tar.bz2 gentoo-2-7e41bf08da6326b56f2dfe30c00dc1a1086554e8.zip |
Add build dep on pkgconfig and respect CFLAGS (bug #383515).
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/lilypond')
-rw-r--r-- | media-sound/lilypond/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/lilypond/lilypond-2.14.2.ebuild | 11 |
2 files changed, 13 insertions, 3 deletions
diff --git a/media-sound/lilypond/ChangeLog b/media-sound/lilypond/ChangeLog index 1a26b80a7bc2..c5348e13224d 100644 --- a/media-sound/lilypond/ChangeLog +++ b/media-sound/lilypond/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/lilypond # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.115 2012/03/13 09:29:19 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.116 2012/03/13 18:45:11 radhermit Exp $ + + 13 Mar 2012; Tim Harder <radhermit@gentoo.org> lilypond-2.14.2.ebuild: + Add build dep on pkgconfig and respect CFLAGS (bug #383515). 13 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> -lilypond-2.12.2.ebuild, -lilypond-2.12.2-r1.ebuild, -files/lilypond-2.12.2-dont-install-pyc.patch, diff --git a/media-sound/lilypond/lilypond-2.14.2.ebuild b/media-sound/lilypond/lilypond-2.14.2.ebuild index fee6714c387b..7ebdac764722 100644 --- a/media-sound/lilypond/lilypond-2.14.2.ebuild +++ b/media-sound/lilypond/lilypond-2.14.2.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.14.2.ebuild,v 1.2 2012/03/12 23:56:52 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.14.2.ebuild,v 1.3 2012/03/13 18:45:11 radhermit Exp $ EAPI="4" PYTHON_DEPEND="2" -inherit elisp-common python +inherit elisp-common python autotools DESCRIPTION="GNU Music Typesetter" SRC_URI="http://download.linuxaudio.org/lilypond/sources/v${PV:0:4}/${P}.tar.gz" @@ -27,6 +27,7 @@ DEPEND="${RDEPEND} app-text/t1utils dev-lang/perl dev-texlive/texlive-metapost + dev-util/pkgconfig media-gfx/fontforge >=sys-apps/texinfo-4.11 >=sys-devel/bison-2.0 @@ -46,6 +47,10 @@ src_prepare() { if ! use vim-syntax ; then sed -i -e "s/vim//" GNUmakefile.in || die fi + + sed -i -e "s/OPTIMIZE -g/OPTIMIZE/" aclocal.m4 || die + + eautoreconf } src_configure() { @@ -55,6 +60,8 @@ src_configure() { econf \ --with-ncsb-dir=/usr/share/fonts/urw-fonts \ --disable-documentation \ + --disable-optimising \ + --disable-pipe \ $(use_enable debug debugging) \ $(use_enable profile profiling) } |