diff options
author | 2014-06-03 09:56:18 +0000 | |
---|---|---|
committer | 2014-06-03 09:56:18 +0000 | |
commit | dbfb07e1ccec7a1ca874a5140dac81215eb3f6f6 (patch) | |
tree | a91ca570682e3488252cdafd6d35ea5c40448b1e /x11-themes/greybird | |
parent | Version bump. (diff) | |
download | gentoo-2-dbfb07e1ccec7a1ca874a5140dac81215eb3f6f6.tar.gz gentoo-2-dbfb07e1ccec7a1ca874a5140dac81215eb3f6f6.tar.bz2 gentoo-2-dbfb07e1ccec7a1ca874a5140dac81215eb3f6f6.zip |
Version bump.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'x11-themes/greybird')
-rw-r--r-- | x11-themes/greybird/ChangeLog | 7 | ||||
-rw-r--r-- | x11-themes/greybird/greybird-1.3.4.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/x11-themes/greybird/ChangeLog b/x11-themes/greybird/ChangeLog index b59619fcc683..e1074ef5d7ac 100644 --- a/x11-themes/greybird/ChangeLog +++ b/x11-themes/greybird/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-themes/greybird # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/greybird/ChangeLog,v 1.36 2014/06/03 09:49:45 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/greybird/ChangeLog,v 1.37 2014/06/03 09:56:18 ssuominen Exp $ + +*greybird-1.3.4 (03 Jun 2014) + + 03 Jun 2014; Samuli Suominen <ssuominen@gentoo.org> +greybird-1.3.4.ebuild: + Version bump. 03 Jun 2014; Samuli Suominen <ssuominen@gentoo.org> -greybird-1.0.7.ebuild, -greybird-1.1.1.ebuild, -greybird-1.2.1.ebuild: diff --git a/x11-themes/greybird/greybird-1.3.4.ebuild b/x11-themes/greybird/greybird-1.3.4.ebuild new file mode 100644 index 000000000000..19095138a9aa --- /dev/null +++ b/x11-themes/greybird/greybird-1.3.4.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/greybird/greybird-1.3.4.ebuild,v 1.1 2014/06/03 09:56:18 ssuominen Exp $ + +EAPI=5 + +MY_PN=${PN/g/G} + +DESCRIPTION="The default theme from Xubuntu" +HOMEPAGE="http://shimmerproject.org/project/greybird/ http://github.com/shimmerproject/Greybird" +SRC_URI="https://github.com/shimmerproject/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +# README says "dual-licensed as GPLv2 or later and CC-BY-SA 3.0 or later" +LICENSE="CC-BY-SA-3.0 GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="ayatana gnome" + +RDEPEND=">=x11-themes/gtk-engines-murrine-0.90" +DEPEND="" + +RESTRICT="binchecks strip" + +src_unpack() { + unpack ${A} + mv ${MY_PN}-* "${S}" || die +} + +src_install() { + dodoc README + rm -f README LICENSE* + + insinto /usr/share/themes/${MY_PN}_compact/xfwm4 + doins xfwm4_compact/* + rm -rf xfwm4_compact + + use ayatana || rm -rf unity + use gnome || rm -rf metacity-1 + + insinto /usr/share/themes/${MY_PN} + doins -r * +} |