diff options
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 +} |