summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny van Dyk <kugelfang@gentoo.org>2005-09-01 14:37:14 +0000
committerDanny van Dyk <kugelfang@gentoo.org>2005-09-01 14:37:14 +0000
commitaeaf02c2dbb54dd2445562678f2e3758244a38f4 (patch)
tree8a5e8d2871350840694ee467f1076c920a3845c0 /dev-libs/librep
parentVersion bump; fixed some init script bugs. 1.3.16 stable on x86,mips. Tidy ol... (diff)
downloadgentoo-2-aeaf02c2dbb54dd2445562678f2e3758244a38f4.tar.gz
gentoo-2-aeaf02c2dbb54dd2445562678f2e3758244a38f4.tar.bz2
gentoo-2-aeaf02c2dbb54dd2445562678f2e3758244a38f4.zip
Fixed multilib-strict Bug #102933.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-libs/librep')
-rw-r--r--dev-libs/librep/ChangeLog5
-rw-r--r--dev-libs/librep/librep-0.17-r1.ebuild12
2 files changed, 8 insertions, 9 deletions
diff --git a/dev-libs/librep/ChangeLog b/dev-libs/librep/ChangeLog
index 7734a294b905..2561dc7b76ff 100644
--- a/dev-libs/librep/ChangeLog
+++ b/dev-libs/librep/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/librep
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/ChangeLog,v 1.29 2005/08/22 18:35:10 gustavoz Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/ChangeLog,v 1.30 2005/09/01 14:37:14 kugelfang Exp $
+
+ 01 Sep 2005; Danny van Dyk <kugelfang@gentoo.org> librep-0.17-r1.ebuild:
+ Fixed multilib-strict Bug #102933.
22 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org> librep-0.17-r1.ebuild:
Stable on sparc wrt #103251
diff --git a/dev-libs/librep/librep-0.17-r1.ebuild b/dev-libs/librep/librep-0.17-r1.ebuild
index 864bb0b367b4..635d7db1ae5b 100644
--- a/dev-libs/librep/librep-0.17-r1.ebuild
+++ b/dev-libs/librep/librep-0.17-r1.ebuild
@@ -1,10 +1,10 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/librep-0.17-r1.ebuild,v 1.4 2005/08/22 18:35:10 gustavoz Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/librep-0.17-r1.ebuild,v 1.5 2005/09/01 14:37:14 kugelfang Exp $
IUSE="readline"
-inherit libtool toolchain-funcs
+inherit libtool toolchain-funcs multilib
DESCRIPTION="Shared library implementing a Lisp dialect"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
@@ -24,11 +24,7 @@ DEPEND="${RDEPEND}
src_compile() {
elibtoolize
- local myconf
-
- use readline \
- && myconf='--with-readline' \
- || myconf='--without-readline'
+ local myconf="$(use_with readline)"
use ppc && myconf="${myconf} --with-stack-direction=1"
LC_ALL=""
LINGUAS=""
@@ -36,7 +32,7 @@ src_compile() {
export LC_ALL LINGUAS LANG
CC=$(tc-getCC) econf \
- --libexecdir=/usr/lib \
+ --libexecdir=/usr/$(get_libdir) \
--without-gmp \
--without-ffi \
${myconf} || die "configure failure"