diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2012-08-15 23:26:28 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2012-08-15 23:26:28 +0000 |
commit | 38b4b96c19efd6e6dd2c089646f52b88df889648 (patch) | |
tree | 0484ad3b31ff37deb50b7fd71b5a07720744d8b8 /media-sound | |
parent | Linux patch 3.5.2 (diff) | |
download | gentoo-2-38b4b96c19efd6e6dd2c089646f52b88df889648.tar.gz gentoo-2-38b4b96c19efd6e6dd2c089646f52b88df889648.tar.bz2 gentoo-2-38b4b96c19efd6e6dd2c089646f52b88df889648.zip |
QA: fix building (closes bug #430594); don't install include file since this comes with no library.
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/flac-image/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/flac-image/flac-image-1.00.ebuild | 8 |
2 files changed, 9 insertions, 8 deletions
diff --git a/media-sound/flac-image/ChangeLog b/media-sound/flac-image/ChangeLog index d6d4ca1666c4..f7555d1dd007 100644 --- a/media-sound/flac-image/ChangeLog +++ b/media-sound/flac-image/ChangeLog @@ -1,10 +1,13 @@ # ChangeLog for media-sound/flac-image -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/flac-image/ChangeLog,v 1.1 2011/10/23 17:36:16 sbriesen Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/flac-image/ChangeLog,v 1.2 2012/08/15 23:26:28 flameeyes Exp $ + + 15 Aug 2012; Diego E. Pettenò <flameeyes@gentoo.org> flac-image-1.00.ebuild: + QA: fix building (closes bug #430594); don't install include file since this + comes with no library. *flac-image-1.00 (23 Oct 2011) 23 Oct 2011; Stefan Briesenick <sbriesen@gentoo.org> +flac-image-1.00.ebuild, +metadata.xml: initial commit - diff --git a/media-sound/flac-image/flac-image-1.00.ebuild b/media-sound/flac-image/flac-image-1.00.ebuild index e6eeab016f20..cd76075e69c0 100644 --- a/media-sound/flac-image/flac-image-1.00.ebuild +++ b/media-sound/flac-image/flac-image-1.00.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/flac-image/flac-image-1.00.ebuild,v 1.1 2011/10/23 17:36:16 sbriesen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/flac-image/flac-image-1.00.ebuild,v 1.2 2012/08/15 23:26:28 flameeyes Exp $ EAPI=4 @@ -34,12 +34,10 @@ src_prepare() { src_compile() { # Makefile is both simple and broken, so we compile the binary ourself. - _compile ${CFLAGS} -lFLAC ${LDFLAGS} -o "${PN}" "${PN}.c" \ + _compile ${CFLAGS} ${LDFLAGS} -o "${PN}" "${PN}.c" -lFLAC \ || die "compile failed" } src_install() { - insinto /usr/include - doins "${PN}.h" dobin "${PN}" } |