diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-09-05 08:20:34 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-09-05 08:20:34 +0000 |
commit | 6f0106901ad9e688dd5b956006f4b405bee40323 (patch) | |
tree | 81cf1f11081dc89654a340a92ee74b81f6d6e565 /x11-plugins/wmsvencd | |
parent | Use domenu instead insinto + doins to install .desktop files (diff) | |
download | gentoo-2-6f0106901ad9e688dd5b956006f4b405bee40323.tar.gz gentoo-2-6f0106901ad9e688dd5b956006f4b405bee40323.tar.bz2 gentoo-2-6f0106901ad9e688dd5b956006f4b405bee40323.zip |
Use domenu instead insinto + doins to install .desktop files
(Portage version: 2.2.0_alpha124/cvs/Linux x86_64)
Diffstat (limited to 'x11-plugins/wmsvencd')
-rw-r--r-- | x11-plugins/wmsvencd/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/wmsvencd/wmsvencd-0.5.0.ebuild | 20 |
2 files changed, 12 insertions, 15 deletions
diff --git a/x11-plugins/wmsvencd/ChangeLog b/x11-plugins/wmsvencd/ChangeLog index 3ace02bd25bc..56d40098154f 100644 --- a/x11-plugins/wmsvencd/ChangeLog +++ b/x11-plugins/wmsvencd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-plugins/wmsvencd -# Copyright 1999-2001 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsvencd/ChangeLog,v 1.9 2011/05/26 13:07:49 s4t4n Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsvencd/ChangeLog,v 1.10 2012/09/05 08:20:34 jlec Exp $ + + 05 Sep 2012; Justin Lecher <jlec@gentoo.org> wmsvencd-0.5.0.ebuild: + Use domenu instead insinto + doins to install .desktop files 26 May 2011; Michele Noberasco <s4t4n@gentoo.org> wmsvencd-0.5.0.ebuild: Fixed non existent HOMEPAGE and SRC_URI (no replacements available). Closes bug #367181. diff --git a/x11-plugins/wmsvencd/wmsvencd-0.5.0.ebuild b/x11-plugins/wmsvencd/wmsvencd-0.5.0.ebuild index 1f34daceede0..9c61de5f0a8b 100644 --- a/x11-plugins/wmsvencd/wmsvencd-0.5.0.ebuild +++ b/x11-plugins/wmsvencd/wmsvencd-0.5.0.ebuild @@ -1,26 +1,24 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsvencd/wmsvencd-0.5.0.ebuild,v 1.10 2011/05/26 13:07:49 s4t4n Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsvencd/wmsvencd-0.5.0.ebuild,v 1.11 2012/09/05 08:20:34 jlec Exp $ inherit eutils -IUSE="" - DESCRIPTION="Window Maker Dockable CD-Player with CDDB" -SRC_URI="mirror://gentoo/${P}.tar.gz" HOMEPAGE="file:///dev/null" +SRC_URI="mirror://gentoo/${P}.tar.gz" -DEPEND="x11-wm/windowmaker +DEPEND=" + x11-wm/windowmaker x11-libs/libXpm" - RDEPEND="${DEPEND}" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86 ~ppc" +IUSE="" src_unpack() { - unpack ${A} cd "${S}" epatch "${FILESDIR}"/wmsvencd-compile.patch @@ -29,17 +27,13 @@ src_unpack() { } src_compile() { - emake CFLAGS="${CFLAGS} -fno-strength-reduce" || die "make failed" - } src_install() { - newman wmsvencd.1x wmsvencd.1 dobin wmsvencd dodoc README - insinto /usr/share/applications - doins "${FILESDIR}"/${PN}.desktop + domenu "${FILESDIR}"/${PN}.desktop } |