summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2008-01-27 14:22:57 +0000
committerAlexis Ballier <aballier@gentoo.org>2008-01-27 14:22:57 +0000
commitd534d4f59ac75769eda8d74da62fe273c72518e1 (patch)
tree04980f2ac1c145607608e137fa7318d8c270b153 /dev-ml
parentstable x86, bug 207648 (diff)
downloadgentoo-2-d534d4f59ac75769eda8d74da62fe273c72518e1.tar.gz
gentoo-2-d534d4f59ac75769eda8d74da62fe273c72518e1.tar.bz2
gentoo-2-d534d4f59ac75769eda8d74da62fe273c72518e1.zip
fix automagics...
(Portage version: 2.1.4)
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/camlimages/ChangeLog5
-rw-r--r--dev-ml/camlimages/camlimages-2.20.ebuild7
2 files changed, 7 insertions, 5 deletions
diff --git a/dev-ml/camlimages/ChangeLog b/dev-ml/camlimages/ChangeLog
index 7cec760a8dbd..9da9b0608973 100644
--- a/dev-ml/camlimages/ChangeLog
+++ b/dev-ml/camlimages/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/camlimages
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlimages/ChangeLog,v 1.10 2008/01/27 14:07:32 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlimages/ChangeLog,v 1.11 2008/01/27 14:22:57 aballier Exp $
+
+ 27 Jan 2008; Alexis Ballier <aballier@gentoo.org> camlimages-2.20.ebuild:
+ fix automagics...
27 Jan 2008; Alexis Ballier <aballier@gentoo.org> camlimages-2.20.ebuild:
Add missing deps, should fix bug #206170, quote variables, do temporary
diff --git a/dev-ml/camlimages/camlimages-2.20.ebuild b/dev-ml/camlimages/camlimages-2.20.ebuild
index e76b3927fced..433ec57fb29d 100644
--- a/dev-ml/camlimages/camlimages-2.20.ebuild
+++ b/dev-ml/camlimages/camlimages-2.20.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlimages/camlimages-2.20.ebuild,v 1.6 2008/01/27 14:07:32 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlimages/camlimages-2.20.ebuild,v 1.7 2008/01/27 14:22:57 aballier Exp $
inherit findlib eutils
@@ -49,7 +49,6 @@ src_compile() {
local myconf
cd ${MY_S}
-
if !(use gtk);
then
myconf="--with-lablgtk=/dev/null --with-lablgtk2=/dev/null"
@@ -57,10 +56,10 @@ src_compile() {
if !(use opengl);
then
- myconf="--with-lablgl=/dev/null"
+ myconf="$myconf --with-lablgl=/dev/null"
fi
- econf || die
+ econf ${myconf} || die
emake -j1 || die
emake -j1 opt || die
}