diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /x11-themes/shiki-colors | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'x11-themes/shiki-colors')
-rw-r--r-- | x11-themes/shiki-colors/Manifest | 2 | ||||
-rw-r--r-- | x11-themes/shiki-colors/metadata.xml | 9 | ||||
-rw-r--r-- | x11-themes/shiki-colors/shiki-colors-4.6.ebuild | 36 |
3 files changed, 47 insertions, 0 deletions
diff --git a/x11-themes/shiki-colors/Manifest b/x11-themes/shiki-colors/Manifest new file mode 100644 index 000000000000..e71322aa6eed --- /dev/null +++ b/x11-themes/shiki-colors/Manifest @@ -0,0 +1,2 @@ +DIST Shiki-Gentoo-4.6.tar.bz2 5725 SHA256 7504c01499cfa3c3480b03c46fa55329562eca403731dc66cb95982dc356aa5c SHA512 5b329973aab7b36d39c1e5397f968a594a998869e4770dab0f9b051d9559f970f81bfb40ed8b91415c39645a78da56bb5842a017866d3d6eaa42b1839e7717ef WHIRLPOOL 55cb0e90ea4961b2edafcb4fc926082930782a13443d17e722f34a8d96d76b59ebc4b0748610e0843fe02cc1eab0793770932da78a10ab016b485a6d922d8dae +DIST shiki-colors-4.6.tar.gz 254607 SHA256 cea527737c6556481d4ddd614a6b353f1f5c6e3f29a832734888ea40127238ca SHA512 862ac3f904b012d602b3ec624563bf57b5622c571819e55b2c37f9708c50e21e5a575d75863d3cc89a69c6594732fac6a961d981c4da8ed8dc1bb46d81313156 WHIRLPOOL 8e27489c6ea0102f34cfdf9991878e22e21e8d36693e8aa3afa54e67a19fdd16286f2a0204a42b17d3e940c728a55ec6c55fc787417c86b20d7735ca4a3308f7 diff --git a/x11-themes/shiki-colors/metadata.xml b/x11-themes/shiki-colors/metadata.xml new file mode 100644 index 000000000000..c421ccfa9302 --- /dev/null +++ b/x11-themes/shiki-colors/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>desktop-misc</herd> + <maintainer> + <email>pacho@gentoo.org</email> + <name>Pacho Ramos</name> + </maintainer> +</pkgmetadata>
\ No newline at end of file diff --git a/x11-themes/shiki-colors/shiki-colors-4.6.ebuild b/x11-themes/shiki-colors/shiki-colors-4.6.ebuild new file mode 100644 index 000000000000..4d8cd6f9d661 --- /dev/null +++ b/x11-themes/shiki-colors/shiki-colors-4.6.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="Shiki-Colors mixes the elegance of a dark theme with the usability of a light theme" +HOMEPAGE="http://code.google.com/p/gnome-colors/" + +SRC_URI="http://gnome-colors.googlecode.com/files/${P}.tar.gz + http://dev.gentoo.org/~pacho/Shiki-Gentoo-${PV}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +RDEPEND=" + || ( x11-wm/metacity x11-wm/muffin x11-wm/mutter xfce-base/xfwm4 ) + x11-themes/gtk-engines:2 +" +DEPEND="" +RESTRICT="binchecks strip" + +S="${WORKDIR}/" + +src_compile() { + einfo "Nothing to compile" +} + +src_install() { + dodir /usr/share/themes + insinto /usr/share/themes + doins -r "${WORKDIR}"/Shiki* + dodoc AUTHORS ChangeLog README +} |