diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2003-03-30 20:28:35 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2003-03-30 20:28:35 +0000 |
commit | 981cf0e2a0990b6fbff45152d26e5a99a95d7a3e (patch) | |
tree | 8bf97c793e3263edd02e37687a3779d1c4443b43 /net-www | |
parent | cleanup; do not disable composer if mail enabled (diff) | |
download | historical-981cf0e2a0990b6fbff45152d26e5a99a95d7a3e.tar.gz historical-981cf0e2a0990b6fbff45152d26e5a99a95d7a3e.tar.bz2 historical-981cf0e2a0990b6fbff45152d26e5a99a95d7a3e.zip |
gtk support
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/amaya/ChangeLog | 5 | ||||
-rw-r--r-- | net-www/amaya/amaya-7.2.ebuild | 21 |
2 files changed, 19 insertions, 7 deletions
diff --git a/net-www/amaya/ChangeLog b/net-www/amaya/ChangeLog index 85bae96319fd..e5c566435e7a 100644 --- a/net-www/amaya/ChangeLog +++ b/net-www/amaya/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-www/amaya # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/amaya/ChangeLog,v 1.11 2003/02/20 17:22:41 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/amaya/ChangeLog,v 1.12 2003/03/30 20:28:35 lu_zero Exp $ + +30 Mar 2003; Luca Barbato <lu_zero@gentoo.org> amaya-7.2.ebuild: + Enabled gtk support *amaya-7.2 (22 Jan 2003) diff --git a/net-www/amaya/amaya-7.2.ebuild b/net-www/amaya/amaya-7.2.ebuild index 85929f02e880..49f9c21bc428 100644 --- a/net-www/amaya/amaya-7.2.ebuild +++ b/net-www/amaya/amaya-7.2.ebuild @@ -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/net-www/amaya/amaya-7.2.ebuild,v 1.4 2003/03/30 01:06:17 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/amaya/amaya-7.2.ebuild,v 1.5 2003/03/30 20:28:35 lu_zero Exp $ inherit libtool @@ -11,22 +11,31 @@ SRC_URI="ftp://ftp.w3.org/pub/amaya/${PN}-src-${PV}.tgz ftp://ftp.w3.org/pub/amaya/old/${PN}-src-${PV}.tgz" HOMEPAGE="http://www.w3.org/Amaya/" -KEYWORDS="~x86" +KEYWORDS="~x86 ~ppc" LICENSE="GPL-2" SLOT="0" -IUSE="" +IUSE="gtk" -RDEPEND="virtual/motif" +RDEPEND="virtual/motif + ( gtk? =x11-libs/gtk+-1.2* ) + ( gtk? =dev-libs/glib-1.2* )" DEPEND="dev-lang/perl ${RDEPEND}" src_compile() { + local myconf="" mkdir ${S} cd ${S} - + if [ -n "`use gtk`" ] + then + myconf="${myconf} --with-gtk" + + else + myconf="${myconf} --without-gtk" + fi ../configure \ - --without-gtk \ + ${myconf} \ --prefix=/usr \ --host=${CHOST} make || die |