Summary: | media-libs/fnlib does not respect LDFLAGS | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Diego Elio Pettenò (RETIRED) <flameeyes> |
Component: | New packages | Assignee: | No maintainer - Look at https://wiki.gentoo.org/wiki/Project:Proxy_Maintainers if you want to take care of it <maintainer-needed> |
Status: | RESOLVED FIXED | ||
Severity: | QA | CC: | jer |
Priority: | High | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- | |
Bug Depends on: | |||
Bug Blocks: | 331933 | ||
Attachments: | Build log |
Description
Diego Elio Pettenò (RETIRED)
2010-08-27 08:49:06 UTC
Created attachment 244863 [details]
Build log
Looks like a simple eautoreconf fixes the issue. Index: fnlib-0.5-r1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/fnlib/fnlib-0.5-r1.ebuild,v retrieving revision 1.28 diff -u -B -r1.28 fnlib-0.5-r1.ebuild --- fnlib-0.5-r1.ebuild 27 Aug 2010 08:50:01 -0000 1.28 +++ fnlib-0.5-r1.ebuild 31 Dec 2010 17:48:25 -0000 @@ -2,6 +2,10 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/fnlib/fnlib-0.5-r1.ebuild,v 1.28 2010/08/27 08:50:01 flameeyes Exp $ +EAPI="2" + +inherit autotools + DESCRIPTION="Font Library for enlightenment" HOMEPAGE="http://www.enlightenment.org/" SRC_URI="mirror://sourceforge/enlightenment/${P}.tar.gz" @@ -13,9 +17,12 @@ DEPEND="media-libs/imlib" -src_compile() { - econf --sysconfdir=/etc/fnlib || die - emake || die +src_prepare() { + eautoreconf +} + +src_configure() { + econf --sysconfdir=/etc/fnlib } src_install() { Fixed in -r2. |