diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2006-11-28 20:23:13 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2006-11-28 20:23:13 +0000 |
commit | a85c5cd248a4148ed3c74bc68dc7bcc7363abf65 (patch) | |
tree | 9821878da5daa7a0de4409d6dcaeefc07e18203d /app-text/active-dvi/active-dvi-1.6.0.ebuild | |
parent | Dropped old versions. Cleaned up the ebuild. (diff) | |
download | historical-a85c5cd248a4148ed3c74bc68dc7bcc7363abf65.tar.gz historical-a85c5cd248a4148ed3c74bc68dc7bcc7363abf65.tar.bz2 historical-a85c5cd248a4148ed3c74bc68dc7bcc7363abf65.zip |
moved tcltk USE flag over to separate tk and tcl flags, see bug #17808
Package-Manager: portage-2.1.1-r2
Diffstat (limited to 'app-text/active-dvi/active-dvi-1.6.0.ebuild')
-rw-r--r-- | app-text/active-dvi/active-dvi-1.6.0.ebuild | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/app-text/active-dvi/active-dvi-1.6.0.ebuild b/app-text/active-dvi/active-dvi-1.6.0.ebuild index c60805ac0a16..a519ee609f93 100644 --- a/app-text/active-dvi/active-dvi-1.6.0.ebuild +++ b/app-text/active-dvi/active-dvi-1.6.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/active-dvi-1.6.0.ebuild,v 1.4 2005/09/21 21:28:24 mattam Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/active-dvi/active-dvi-1.6.0.ebuild,v 1.5 2006/11/28 20:16:27 opfer Exp $ inherit eutils @@ -13,7 +13,7 @@ SRC_URI="ftp://ftp.inria.fr/INRIA/Projects/cristal/${MY_PN}/${MY_P}.tgz" HOMEPAGE="http://pauillac.inria.fr/advi/" LICENSE="LGPL-2.1" -IUSE="cjk tcltk" +IUSE="cjk tk" SLOT="0" KEYWORDS="~x86 ~ppc" @@ -28,19 +28,19 @@ DOCS="README TODO" pkg_setup() { - # warn those who have USE="tcltk" but no ocaml tcltk support - # because we cant force ocaml to be build with tcltk. - if use tcltk; then + # warn those who have USE="tk" but no ocaml tk support + # because we cant force ocaml to be build with tk. + if use tk; then if [ ! -d /usr/lib/ocaml/labltk ]; then echo "" - ewarn "You have requested tcltk support, but it appears" - ewarn "your ocaml wasnt compiled with tcltk support, " + ewarn "You have requested tk support, but it appears" + ewarn "your ocaml wasnt compiled with tk support, " ewarn "so it can't be included for active-dvi." echo "" ewarn "Please stop this build, and emerge ocaml with " - ewarn "USE=\"tcltk\" ocaml" - ewarn "before emerging active-dvi if you want tcltk support." + ewarn "USE=\"tk\" ocaml" + ewarn "before emerging active-dvi if you want tk support." echo "" # give the user some time to read this, but leave the # choice up to them |