diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2006-01-24 23:09:29 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2006-01-24 23:09:29 +0000 |
commit | 7a8cceaebeeb4bdb9d960f019a0205e4d740a7f0 (patch) | |
tree | 7a879c0999a59d879182f6f7323f1905e41cfb29 /x11-plugins/wmdots | |
parent | make replace in config files effective (diff) | |
download | gentoo-2-7a8cceaebeeb4bdb9d960f019a0205e4d740a7f0.tar.gz gentoo-2-7a8cceaebeeb4bdb9d960f019a0205e4d740a7f0.tar.bz2 gentoo-2-7a8cceaebeeb4bdb9d960f019a0205e4d740a7f0.zip |
Fixed DEPEND for modular X.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'x11-plugins/wmdots')
-rw-r--r-- | x11-plugins/wmdots/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/wmdots/wmdots-0.2_beta.ebuild | 19 |
2 files changed, 14 insertions, 12 deletions
diff --git a/x11-plugins/wmdots/ChangeLog b/x11-plugins/wmdots/ChangeLog index 125ed95c961c..9560f7b3de37 100644 --- a/x11-plugins/wmdots/ChangeLog +++ b/x11-plugins/wmdots/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-plugins/wmdots -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdots/ChangeLog,v 1.5 2004/10/02 15:46:13 swegener Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdots/ChangeLog,v 1.6 2006/01/24 23:07:31 nelchael Exp $ + + 24 Jan 2006; Krzysiek Pawlik <nelchael@gentoo.org> wmdots-0.2_beta.ebuild: + Fixed DEPEND for modular X. 12 Jun 2003; <msterret@gentoo.org> wmdots-0.2_beta.ebuild: fix Header diff --git a/x11-plugins/wmdots/wmdots-0.2_beta.ebuild b/x11-plugins/wmdots/wmdots-0.2_beta.ebuild index c97e7f574011..6bdab16c2cd2 100644 --- a/x11-plugins/wmdots/wmdots-0.2_beta.ebuild +++ b/x11-plugins/wmdots/wmdots-0.2_beta.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdots/wmdots-0.2_beta.ebuild,v 1.9 2004/06/24 23:08:37 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdots/wmdots-0.2_beta.ebuild,v 1.10 2006/01/24 23:07:31 nelchael Exp $ MY_P=wmdots-0.2beta S=${WORKDIR}/${PN} @@ -13,16 +13,15 @@ SLOT="0" IUSE="" -DEPEND="virtual/x11" - - -src_compile() { - - emake || die - -} +RDEPEND="|| ( ( + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm ) + virtual/x11 )" +DEPEND="${RDEPEND}" src_install () { dobin ${S}/wmdots + } |