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/xxv-skins | |
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/xxv-skins')
-rw-r--r-- | x11-themes/xxv-skins/Manifest | 2 | ||||
-rw-r--r-- | x11-themes/xxv-skins/metadata.xml | 9 | ||||
-rw-r--r-- | x11-themes/xxv-skins/xxv-skins-1.6.1.ebuild | 36 |
3 files changed, 47 insertions, 0 deletions
diff --git a/x11-themes/xxv-skins/Manifest b/x11-themes/xxv-skins/Manifest new file mode 100644 index 000000000000..6be587ace162 --- /dev/null +++ b/x11-themes/xxv-skins/Manifest @@ -0,0 +1,2 @@ +DIST xxv-jason-1.6.1.tgz 892863 SHA256 fafd8ff1943949c34844fa19ee69975c29b00103a7dacacc0ea986615ba02cb2 SHA512 fcab6c52106265209fa80c61b9ec24a063974f817225649be7bca3ec1468df7c8d82aba5372f5a7fcb7f0beff2dff275e0a1969e91fdce8c985b60d4514e2a4f WHIRLPOOL 8bfb461a9385bf48d8b9bea2c705a14db01350ac3fb9da314ed9e70708a1d415c89ebd43b46dfc56f646cf99c1353e8780584568464c448716072b2ee2e69efa +DIST xxv-skins-1.6.1.tgz 537124 SHA256 022016ded58e34cebe99b8362001460fcd4a47010d0057ac9af943c1317ea4be SHA512 108240563d733af3853b72417f34f45638ffab1b9c487c5fd12068ced604da01c357376875679614b0ce6404c58dbf06f0f3481a1f0d47ae5eca0fbbd7f02bab WHIRLPOOL 4d6ea907532fc56cc8f29cdce326889df71b65108a6e865db126ad74bc8f69284422e15032e54427d738688b08ba80bd0f64b0b34a684803040d76e0735f2a37 diff --git a/x11-themes/xxv-skins/metadata.xml b/x11-themes/xxv-skins/metadata.xml new file mode 100644 index 000000000000..b4862f352c90 --- /dev/null +++ b/x11-themes/xxv-skins/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>media-tv</herd> +<maintainer> + <email>vdr@gentoo.org</email> + <name>Gentoo VDR Project</name> +</maintainer> +</pkgmetadata> diff --git a/x11-themes/xxv-skins/xxv-skins-1.6.1.ebuild b/x11-themes/xxv-skins/xxv-skins-1.6.1.ebuild new file mode 100644 index 000000000000..4451304d7a61 --- /dev/null +++ b/x11-themes/xxv-skins/xxv-skins-1.6.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils + +DESCRIPTION="Additional skins for XXV" +HOMEPAGE="http://projects.vdr-developer.org/projects/xxv" +SRC_URI="mirror://vdr-developerorg/719/${P}.tgz + mirror://vdr-developerorg/720/xxv-jason-${PV}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +RDEPEND="=www-misc/xxv-${PV}" + +SKINROOT=/usr/share/xxv/skins + +src_compile() { +: +} + +src_install() { + + insinto ${SKINROOT} + + cd "${S}" + cp -a * "${D}${SKINROOT}" + + cd "${WORKDIR}" + cp -a jason "${D}${SKINROOT}" +} |