diff options
author | Alex Alexander <wired@gentoo.org> | 2013-02-05 23:25:49 +0000 |
---|---|---|
committer | Alex Alexander <wired@gentoo.org> | 2013-02-05 23:25:49 +0000 |
commit | 2503baf1d8fc447eaab5fd5f53059a40603fb4af (patch) | |
tree | d241961b581e3103398070c7e8bea97a06651e37 /x11-plugins/vicious | |
parent | Update to EAPI=4 and drop useless depends #455722 by Christoph Junghans. (diff) | |
download | gentoo-2-2503baf1d8fc447eaab5fd5f53059a40603fb4af.tar.gz gentoo-2-2503baf1d8fc447eaab5fd5f53059a40603fb4af.tar.bz2 gentoo-2-2503baf1d8fc447eaab5fd5f53059a40603fb4af.zip |
fixed install location of contrib widgets. bug #455176
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key EB9B4AFA)
Diffstat (limited to 'x11-plugins/vicious')
-rw-r--r-- | x11-plugins/vicious/ChangeLog | 9 | ||||
-rw-r--r-- | x11-plugins/vicious/vicious-2.1.0-r1.ebuild | 29 |
2 files changed, 36 insertions, 2 deletions
diff --git a/x11-plugins/vicious/ChangeLog b/x11-plugins/vicious/ChangeLog index 0088a1d9ef50..6f81a17d5d19 100644 --- a/x11-plugins/vicious/ChangeLog +++ b/x11-plugins/vicious/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-plugins/vicious -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/vicious/ChangeLog,v 1.10 2012/11/20 18:58:12 wired Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/vicious/ChangeLog,v 1.11 2013/02/05 23:25:49 wired Exp $ + +*vicious-2.1.0-r1 (05 Feb 2013) + + 05 Feb 2013; Alex Alexander <wired@gentoo.org> +vicious-2.1.0-r1.ebuild: + fixed install location of contrib widgets. bug #455176 *vicious-2.1.0 (20 Nov 2012) diff --git a/x11-plugins/vicious/vicious-2.1.0-r1.ebuild b/x11-plugins/vicious/vicious-2.1.0-r1.ebuild new file mode 100644 index 000000000000..1c0a0fc0f0ba --- /dev/null +++ b/x11-plugins/vicious/vicious-2.1.0-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/vicious/vicious-2.1.0-r1.ebuild,v 1.1 2013/02/05 23:25:49 wired Exp $ + +EAPI=5 + +DESCRIPTION="Modular widget library for x11-wm/awesome" +HOMEPAGE="http://awesome.naquadah.org/wiki/Vicious" +SRC_URI="http://git.sysphere.org/${PN}/snapshot/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="contrib" + +DEPEND="" +RDEPEND="x11-wm/awesome" + +src_install() { + insinto /usr/share/awesome/lib/vicious + doins -r widgets helpers.lua init.lua + dodoc CHANGES README TODO + + if use contrib; then + insinto /usr/share/awesome/lib/vicious/contrib + doins contrib/*.lua + newdoc contrib/README README.contrib + fi +} |