summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Keadle <mkeadle@gentoo.org>2003-06-02 23:38:29 +0000
committerMatt Keadle <mkeadle@gentoo.org>2003-06-02 23:38:29 +0000
commit24a9407704e770a70de1364c4cc4b84fbefa20bd (patch)
tree49b7904b22cae7cf091b375e88ff6bb06c3ac8b6 /eclass/commonbox.eclass
parentmmx and sse disabled explicitly, if use flag disables them (diff)
downloadgentoo-2-24a9407704e770a70de1364c4cc4b84fbefa20bd.tar.gz
gentoo-2-24a9407704e770a70de1364c4cc4b84fbefa20bd.tar.bz2
gentoo-2-24a9407704e770a70de1364c4cc4b84fbefa20bd.zip
adjusting to use truetype USE
Diffstat (limited to 'eclass/commonbox.eclass')
-rw-r--r--eclass/commonbox.eclass8
1 files changed, 6 insertions, 2 deletions
diff --git a/eclass/commonbox.eclass b/eclass/commonbox.eclass
index 39f7807f75fc..fcbae30175c2 100644
--- a/eclass/commonbox.eclass
+++ b/eclass/commonbox.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/commonbox.eclass,v 1.22 2003/06/01 20:04:02 mkeadle Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/commonbox.eclass,v 1.23 2003/06/02 23:38:29 mkeadle Exp $
#
# Author: Seemant Kulleen <seemant@gentoo.org>
#
@@ -24,7 +24,7 @@ RDEPEND="nls? ( sys-devel/gettext )
PROVIDE="virtual/blackbox"
-myconf="--enable-xft"
+myconf=""
mydoc=""
BOOTSTRAP=""
FORCEXFT=""
@@ -90,6 +90,10 @@ commonbox_src_compile() {
&& myconf="${myconf} --enable-xinerama" \
|| myconf="${myconf} --disable-xinerama"
+ use truetype \
+ && myconf="${myconf} --enable-xft" \
+ || myconf="${myconf} --disable-xft"
+
econf \
--sysconfdir=/etc/X11/${MYBIN} \
--datadir=/usr/share/commonbox \