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/bespin | |
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/bespin')
-rw-r--r-- | x11-themes/bespin/Manifest | 1 | ||||
-rw-r--r-- | x11-themes/bespin/bespin-0_p20140225.ebuild | 82 | ||||
-rw-r--r-- | x11-themes/bespin/metadata.xml | 8 |
3 files changed, 91 insertions, 0 deletions
diff --git a/x11-themes/bespin/Manifest b/x11-themes/bespin/Manifest new file mode 100644 index 000000000000..08a0e13658e5 --- /dev/null +++ b/x11-themes/bespin/Manifest @@ -0,0 +1 @@ +DIST cloudcity-code-1712.zip 5076462 SHA256 86d9edd9fa70805677577da3425f010004b5159c82da68a95519c418aa6c2004 SHA512 475b572c565559886255e0afeee4a4a8d5fb32a49dae491ededc9301c22f0bf21cdf5372df1983d9a0878b6e552f2e95d6d263fbeba9286003037626ba89ca21 WHIRLPOOL 4ce0c332f4a17f3acd27213240527fd978ebc4398dfe6b8dd1ea608156fba0e886d41a907d5954c397484805362a6c0fca2044d7ad9ac102338816211344687a diff --git a/x11-themes/bespin/bespin-0_p20140225.ebuild b/x11-themes/bespin/bespin-0_p20140225.ebuild new file mode 100644 index 000000000000..2978d014bc86 --- /dev/null +++ b/x11-themes/bespin/bespin-0_p20140225.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +KDE_REQUIRED="optional" +KDE_SCM="svn" + +inherit kde4-base qmake-utils + +if [[ $PV != *9999 ]]; then + REV="1712" + S="${WORKDIR}/cloudcity-code-${REV}" + SRC_URI="http://sourceforge.net/code-snapshots/svn/c/cl/cloudcity/code/cloudcity-code-${REV}.zip" + KEYWORDS="~amd64 ~x86" +else + ESVN_REPO_URI="http://svn.code.sf.net/p/cloudcity/code/" + KEYWORDS="" +fi + +DESCRIPTION="Very configurable Qt4/KDE4 style derived from the Oxygen project" +HOMEPAGE="http://cloudcity.sourceforge.net/" + +LICENSE="GPL-2" +SLOT="4" +IUSE="debug kde plasma windeco" + +REQUIRED_USE=" + windeco? ( kde ) + plasma? ( kde ) +" + +RDEPEND=" + dev-qt/qt3support:4 + dev-qt/qtcore:4 + dev-qt/qtdbus:4 + dev-qt/qtgui:4 + x11-libs/libX11 + x11-libs/libXrender + windeco? ( $(add_kdebase_dep kwin) ) +" +DEPEND="${RDEPEND} + app-arch/unzip +" + +src_prepare() { + # bug #542976 + sed -e "s/kworkspace//" -i XBar/CMakeLists.txt || die + + kde4-base_src_prepare +} + +src_configure() { + if use kde ; then + local mycmakeargs=( + $(cmake-utils_use_enable kde KDE) + $(cmake-utils_use_enable windeco KWIN) + $(cmake-utils_use_enable plasma XBAR) + -DENABLE_ARGB=ON + ) + + kde4-base_src_configure + else + eqmake4 + fi +} + +src_compile() { + if use kde ; then + kde4-base_src_compile + else + default + fi +} + +src_install() { + if use kde ; then + kde4-base_src_install + else + emake INSTALL_ROOT="${D}" install + fi +} diff --git a/x11-themes/bespin/metadata.xml b/x11-themes/bespin/metadata.xml new file mode 100644 index 000000000000..618a8b749e0a --- /dev/null +++ b/x11-themes/bespin/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>kde</herd> + <use> + <flag name='windeco'>Enable window decoration for KWin.</flag> + </use> +</pkgmetadata> |