diff options
author | 2006-10-28 22:24:01 +0000 | |
---|---|---|
committer | 2006-10-28 22:24:01 +0000 | |
commit | e861e222dbe7e4901a76f3181dbf84c541508bc4 (patch) | |
tree | 803df3b09924e8f4a6df4dc3becabf44011b4091 /x11-misc/wmctrl/wmctrl-1.07.ebuild | |
parent | Remove monolithic X support, move USE checking to pkg_setup(), change make to... (diff) | |
download | historical-e861e222dbe7e4901a76f3181dbf84c541508bc4.tar.gz historical-e861e222dbe7e4901a76f3181dbf84c541508bc4.tar.bz2 historical-e861e222dbe7e4901a76f3181dbf84c541508bc4.zip |
Remove monolithic X support, fix quotes, don't dodoc COPYING/INSTALL and add pkgconfig to DEPEND. (bug #150818)
Package-Manager: portage-2.1.2_pre3-r8
Diffstat (limited to 'x11-misc/wmctrl/wmctrl-1.07.ebuild')
-rw-r--r-- | x11-misc/wmctrl/wmctrl-1.07.ebuild | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/x11-misc/wmctrl/wmctrl-1.07.ebuild b/x11-misc/wmctrl/wmctrl-1.07.ebuild index a22bc248a1f6..ec0dd3826180 100644 --- a/x11-misc/wmctrl/wmctrl-1.07.ebuild +++ b/x11-misc/wmctrl/wmctrl-1.07.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/wmctrl/wmctrl-1.07.ebuild,v 1.6 2006/10/22 21:19:46 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/wmctrl/wmctrl-1.07.ebuild,v 1.7 2006/10/28 22:24:01 omp Exp $ DESCRIPTION="command line tool to interact with an EWMH/NetWM compatible X Window Manager" HOMEPAGE="http://sweb.cz/tripie/utils/wmctrl/" @@ -11,16 +11,15 @@ SLOT="0" KEYWORDS="~amd64 ppc ~sparc x86" IUSE="" -RDEPEND="|| ( ( - x11-libs/libX11 - x11-libs/libXt - x11-libs/libXmu ) - virtual/x11 ) - >=dev-libs/glib-2" +RDEPEND=">=dev-libs/glib-2 + x11-libs/libX11 + x11-libs/libXt + x11-libs/libXmu" DEPEND="${RDEPEND} - || ( x11-proto/xproto virtual/x11 )" + dev-util/pkgconfig + x11-proto/xproto" src_install () { - make DESTDIR=${D} install || die - dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS ChangeLog NEWS README } |