diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2008-10-28 11:42:44 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2008-10-28 11:42:44 +0000 |
commit | ca39f1571bf754092faa3e751d3dbe2012997faa (patch) | |
tree | 457288881ffc69767585421e83087273a16c69f4 /x11-plugins/wmxkb | |
parent | Version bump (diff) | |
download | gentoo-2-ca39f1571bf754092faa3e751d3dbe2012997faa.tar.gz gentoo-2-ca39f1571bf754092faa3e751d3dbe2012997faa.tar.bz2 gentoo-2-ca39f1571bf754092faa3e751d3dbe2012997faa.zip |
Trivial fix for bug #242188, plus minor QA fixes.
(Portage version: 2.1.4.5)
Diffstat (limited to 'x11-plugins/wmxkb')
-rw-r--r-- | x11-plugins/wmxkb/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/wmxkb/wmxkb-1.2.2.ebuild | 12 |
2 files changed, 13 insertions, 6 deletions
diff --git a/x11-plugins/wmxkb/ChangeLog b/x11-plugins/wmxkb/ChangeLog index 0a6e67312439..61171cc6ba78 100644 --- a/x11-plugins/wmxkb/ChangeLog +++ b/x11-plugins/wmxkb/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-plugins/wmxkb -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmxkb/ChangeLog,v 1.9 2007/07/22 04:16:09 dberkholz Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmxkb/ChangeLog,v 1.10 2008/10/28 11:42:44 s4t4n Exp $ + + 28 Oct 2008; Michele Noberasco <s4t4n@gentoo.org>; wmxkb-1.2.2.ebuild: + Trivial fix for bug #242188, plus minor QA fixes. 22 Jul 2007; Donnie Berkholz <dberkholz@gentoo.org>; wmxkb-1.2.2.ebuild: Drop virtual/x11 references. diff --git a/x11-plugins/wmxkb/wmxkb-1.2.2.ebuild b/x11-plugins/wmxkb/wmxkb-1.2.2.ebuild index ace2b5e30b68..e06a5e459fce 100644 --- a/x11-plugins/wmxkb/wmxkb-1.2.2.ebuild +++ b/x11-plugins/wmxkb/wmxkb-1.2.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmxkb/wmxkb-1.2.2.ebuild,v 1.6 2007/07/22 04:16:09 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmxkb/wmxkb-1.2.2.ebuild,v 1.7 2008/10/28 11:42:44 s4t4n Exp $ IUSE="" @@ -22,8 +22,12 @@ DEPEND="${RDEPEND} x11-proto/inputproto" src_install () { - make DESTDIR=${D} BINDIR=${D}/usr/bin DOCDIR=${D}/usr/share/doc DATADIR=${D}/usr/share install + make DESTDIR="${D}" BINDIR="${D}/usr/bin" DOCDIR="${D}/usr/share/doc" DATADIR="${D}/usr/share" install + + #install binary by hand per bug #242188 + dobin wmxkb + dodoc README - cd ${WORKDIR}/${P}/doc + cd "${WORKDIR}/${P}/doc" dodoc manual_body.html manual_title.html manual.book } |