diff options
author | 2005-12-14 15:02:36 +0000 | |
---|---|---|
committer | 2005-12-14 15:02:36 +0000 | |
commit | ddb81292985d48276b4016e45655a0bf39d66ea7 (patch) | |
tree | 4e63b8ffb9f89269156b7652858b084c79921205 /sys-apps/bar/bar-1.10.3.ebuild | |
parent | setting DESTDIR when installing (bug #115469) (diff) | |
download | gentoo-2-ddb81292985d48276b4016e45655a0bf39d66ea7.tar.gz gentoo-2-ddb81292985d48276b4016e45655a0bf39d66ea7.tar.bz2 gentoo-2-ddb81292985d48276b4016e45655a0bf39d66ea7.zip |
Fixed and keyworded ~sparc wrt #113392
(Portage version: 2.0.53)
Diffstat (limited to 'sys-apps/bar/bar-1.10.3.ebuild')
-rw-r--r-- | sys-apps/bar/bar-1.10.3.ebuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sys-apps/bar/bar-1.10.3.ebuild b/sys-apps/bar/bar-1.10.3.ebuild index e0c6db7dd7b1..c8b9a10c2c13 100644 --- a/sys-apps/bar/bar-1.10.3.ebuild +++ b/sys-apps/bar/bar-1.10.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/bar/bar-1.10.3.ebuild,v 1.2 2005/02/05 10:00:43 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/bar/bar-1.10.3.ebuild,v 1.3 2005/12/14 15:02:36 gustavoz Exp $ DESCRIPTION="Console Progress Bar" HOMEPAGE="http://clpbar.sourceforge.net/" @@ -8,14 +8,18 @@ SRC_URI="mirror://sourceforge/clpbar/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86" +KEYWORDS="~sparc x86" IUSE="doc" DEPEND="doc? ( >=app-doc/doxygen-1.3.5 )" RDEPEND="" src_compile() { - econf || die "econf failed" + local myconf + + # Fix wrt #113392 + use sparc && myconf="${myconf} --disable-use-memalign" + econf ${myconf} || die "econf failed" emake CFLAGS="${CFLAGS}" || die "emake failed" use doc && { emake doc || die "make doc failed" ; } } |