diff options
author | 2010-12-02 15:46:06 +0000 | |
---|---|---|
committer | 2010-12-02 15:46:06 +0000 | |
commit | e38032f7a68a07df2ba834170f8c3363eb56fbfe (patch) | |
tree | 9daa2eb05fe4cb4c1b642e30070ce39f8a98a314 /x11-plugins | |
parent | Version bump. (diff) | |
download | gentoo-2-e38032f7a68a07df2ba834170f8c3363eb56fbfe.tar.gz gentoo-2-e38032f7a68a07df2ba834170f8c3363eb56fbfe.tar.bz2 gentoo-2-e38032f7a68a07df2ba834170f8c3363eb56fbfe.zip |
QA: remove unneeded dependency over automake 1.4; remove unneeded src_unpack; add die statements to install.
(Portage version: 2.2.0_alpha6/cvs/Linux x86_64)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/wmwifi/ChangeLog | 8 | ||||
-rw-r--r-- | x11-plugins/wmwifi/wmwifi-0.6.ebuild | 21 |
2 files changed, 12 insertions, 17 deletions
diff --git a/x11-plugins/wmwifi/ChangeLog b/x11-plugins/wmwifi/ChangeLog index fd13a62db977..a09e073d0be9 100644 --- a/x11-plugins/wmwifi/ChangeLog +++ b/x11-plugins/wmwifi/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-plugins/wmwifi -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmwifi/ChangeLog,v 1.19 2008/06/28 07:22:01 maekke Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmwifi/ChangeLog,v 1.20 2010/12/02 15:46:06 flameeyes Exp $ + + 02 Dec 2010; Diego E. Pettenò <flameeyes@gentoo.org> wmwifi-0.6.ebuild: + QA: remove unneeded dependency over automake 1.4; remove unneeded src_unpack; + add die statements to install. 28 Jun 2008; Markus Meier <maekke@gentoo.org> wmwifi-0.6.ebuild: x86 stable, bug #229597 diff --git a/x11-plugins/wmwifi/wmwifi-0.6.ebuild b/x11-plugins/wmwifi/wmwifi-0.6.ebuild index f278e4b00ad4..0414f503ac84 100644 --- a/x11-plugins/wmwifi/wmwifi-0.6.ebuild +++ b/x11-plugins/wmwifi/wmwifi-0.6.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmwifi/wmwifi-0.6.ebuild,v 1.4 2008/06/28 07:22:01 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmwifi/wmwifi-0.6.ebuild,v 1.5 2010/12/02 15:46:06 flameeyes Exp $ IUSE="" HOMEPAGE="http://wmwifi.digitalssg.net" @@ -17,16 +17,7 @@ RDEPEND="x11-libs/libX11 x11-libs/libXpm" DEPEND="${RDEPEND} x11-proto/xextproto - x11-proto/xproto - =sys-devel/automake-1.4*" - -src_unpack() -{ - unpack ${A} - - # eek - package is already compiled! - rm "${S}/src/*.o" "${S}/src/wmwifi" -} + x11-proto/xproto" src_compile() { @@ -38,7 +29,7 @@ src_compile() src_install() { - dobin src/wmwifi - doman wmwifi.1 - dodoc AUTHORS README + dobin src/wmwifi || die + doman wmwifi.1 || die + dodoc AUTHORS README || die } |