diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-03-16 19:14:02 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-03-16 19:14:02 +0000 |
commit | 26d6658388375b61b274caf541f26c4d76fd2531 (patch) | |
tree | c75996f98e98c999d1499eb2d072825f6fc64075 /net-p2p/azureus-bin | |
parent | Initial work on bug 43851 (Manifest recommit) (diff) | |
download | gentoo-2-26d6658388375b61b274caf541f26c4d76fd2531.tar.gz gentoo-2-26d6658388375b61b274caf541f26c4d76fd2531.tar.bz2 gentoo-2-26d6658388375b61b274caf541f26c4d76fd2531.zip |
Made the systray4j DEPEND require the kde use flag.
Diffstat (limited to 'net-p2p/azureus-bin')
-rw-r--r-- | net-p2p/azureus-bin/ChangeLog | 6 | ||||
-rw-r--r-- | net-p2p/azureus-bin/azureus-bin-2.0.8.0a.ebuild | 14 |
2 files changed, 15 insertions, 5 deletions
diff --git a/net-p2p/azureus-bin/ChangeLog b/net-p2p/azureus-bin/ChangeLog index 16f4c74affab..7c897672823e 100644 --- a/net-p2p/azureus-bin/ChangeLog +++ b/net-p2p/azureus-bin/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-p2p/azureus-bin # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/azureus-bin/ChangeLog,v 1.5 2004/03/14 01:32:19 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/azureus-bin/ChangeLog,v 1.6 2004/03/16 19:14:02 eradicator Exp $ + + 16 Mar 2004; Jeremy Huddleston <eradicator@gentoo.org> + azureus-bin-2.0.8.0a.ebuild: + Made the systray4j DEPEND require the kde use flag. *azureus-bin-2.0.8.0a (13 Mar 2004) diff --git a/net-p2p/azureus-bin/azureus-bin-2.0.8.0a.ebuild b/net-p2p/azureus-bin/azureus-bin-2.0.8.0a.ebuild index 4fddfd389ca3..740da50cecb0 100644 --- a/net-p2p/azureus-bin/azureus-bin-2.0.8.0a.ebuild +++ b/net-p2p/azureus-bin/azureus-bin-2.0.8.0a.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/azureus-bin/azureus-bin-2.0.8.0a.ebuild,v 1.1 2004/03/14 01:32:19 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/azureus-bin/azureus-bin-2.0.8.0a.ebuild,v 1.2 2004/03/16 19:14:02 eradicator Exp $ inherit eutils @@ -22,14 +22,14 @@ SLOT="0" # Still in progress... trying to get most external classes in through DEPENDs rather than KEYWORDS="~x86" -IUSE="gtk" +IUSE="gtk kde" DEPEND="virtual/glibc" RDEPEND="${DEPEND} dev-java/commons-cli dev-java/log4j - dev-java/systray4j + kde? ( dev-java/systray4j ) dev-java/junit gtk? ( =x11-libs/gtk+-2* ) !gtk? ( =x11-libs/openmotif-2.1* ) @@ -39,7 +39,12 @@ RDEPEND="${DEPEND} PROGRAM_DIR="/usr/lib/${MY_PN}" src_unpack() { - if [ `use gtk` ] ; then + if ! use kde; then + einfo "The kde use flag is off, so the systray support will be disabled." + einfo "kde is required to build dev-java/systray4j." + fi + + if use gtk; then unpack Azureus_${PV}_linux.GTK.tar.bz2 echo einfo "Using the GTK Azureus package, to use the Motif package" @@ -111,4 +116,5 @@ pkg_postinst() { einfo "the setting in ~/.azureus/gentoo.config will be properly used, but" einfo "you should report all bugs pertaining to the CVS release to the" einfo "azureus developers and not Gentoo." + echo } |