diff options
author | Matt Keadle <mkeadle@gentoo.org> | 2003-06-02 23:38:29 +0000 |
---|---|---|
committer | Matt Keadle <mkeadle@gentoo.org> | 2003-06-02 23:38:29 +0000 |
commit | 4392604e91fa8b1593fc45ea353443f26f5af84d (patch) | |
tree | b0e239b52faf1f3009c67f6fc9989fad23506ad9 /eclass | |
parent | mmx and sse disabled explicitly, if use flag disables them (diff) | |
download | historical-4392604e91fa8b1593fc45ea353443f26f5af84d.tar.gz historical-4392604e91fa8b1593fc45ea353443f26f5af84d.tar.bz2 historical-4392604e91fa8b1593fc45ea353443f26f5af84d.zip |
adjusting to use truetype USE
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/commonbox.eclass | 8 |
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 \ |