diff options
author | 2015-08-08 13:49:04 -0700 | |
---|---|---|
committer | 2015-08-08 17:38:18 -0700 | |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /media-gfx/kcoloredit | |
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 'media-gfx/kcoloredit')
-rw-r--r-- | media-gfx/kcoloredit/Manifest | 1 | ||||
-rw-r--r-- | media-gfx/kcoloredit/files/kcoloredit-2.0.0-underlinking.patch | 11 | ||||
-rw-r--r-- | media-gfx/kcoloredit/kcoloredit-2.0.0-r1.ebuild | 28 | ||||
-rw-r--r-- | media-gfx/kcoloredit/metadata.xml | 5 |
4 files changed, 45 insertions, 0 deletions
diff --git a/media-gfx/kcoloredit/Manifest b/media-gfx/kcoloredit/Manifest new file mode 100644 index 000000000000..66f60667d6cb --- /dev/null +++ b/media-gfx/kcoloredit/Manifest @@ -0,0 +1 @@ +DIST kcoloredit-2.0.0-kde4.4.0.tar.bz2 156462 SHA256 37712000c5c6990deb3a43e55b463704dc736a06450df9dafa1a030afcf79e6e SHA512 93a418e475bb8f494a90c409c60573d3d7936921b7dac5b1dd669d0934123b234df013c0b1a594f211c33200b62d3b8edef80a826f6f75da110ec8a1af99a140 WHIRLPOOL b812867b5c02eae2ef4fbbd2eb29f1dd83ae08c135faf96998e56b56192b632d2dc8992f5ced922d93ba0ad36e8d21b4eeec6239433f96fb69453fbb1777d0a8 diff --git a/media-gfx/kcoloredit/files/kcoloredit-2.0.0-underlinking.patch b/media-gfx/kcoloredit/files/kcoloredit-2.0.0-underlinking.patch new file mode 100644 index 000000000000..588b673c5622 --- /dev/null +++ b/media-gfx/kcoloredit/files/kcoloredit-2.0.0-underlinking.patch @@ -0,0 +1,11 @@ +diff -ruN kcoloredit-2.0.0-kde4.4.0.orig/src/CMakeLists.txt kcoloredit-2.0.0-kde4.4.0/src/CMakeLists.txt +--- kcoloredit-2.0.0-kde4.4.0.orig/src/CMakeLists.txt 2010-02-11 21:40:05.000000000 +0100 ++++ kcoloredit-2.0.0-kde4.4.0/src/CMakeLists.txt 2011-08-11 22:25:09.747295562 +0200 +@@ -56,6 +56,6 @@ + + kde4_add_executable ( kcoloredit ${kcoloredit_SRCS} ) + +-target_link_libraries ( kcoloredit ${KDE4_KFILE_LIBS} ) ++target_link_libraries ( kcoloredit ${KDE4_KFILE_LIBS} ${X11_LIBRARIES} ) + + install (TARGETS kcoloredit ${INSTALL_TARGETS_DEFAULT_ARGS} ) diff --git a/media-gfx/kcoloredit/kcoloredit-2.0.0-r1.ebuild b/media-gfx/kcoloredit/kcoloredit-2.0.0-r1.ebuild new file mode 100644 index 000000000000..65ab179ca0f7 --- /dev/null +++ b/media-gfx/kcoloredit/kcoloredit-2.0.0-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +KDE_LINGUAS="af ar be bg br ca ca@valencia cs cy da de el en_GB eo es et eu fa +fi fr ga gl he hi hne hr hu is it ja km ku lt lv mai mk ms nb nds ne nl nn oc +pa pl pt pt_BR ro ru se sk sl sv ta tg th tr uk vi xh zh_CN zh_HK zh_TW" +KDE_DOC_DIRS="doc doc-translations/%lingua_${PN}" +KDE_HANDBOOK="optional" +inherit kde4-base + +KDE_VERSION=4.4.0 +MY_P=${P}-kde${KDE_VERSION} + +DESCRIPTION="Tool for editing color palettes" +HOMEPAGE="http://www.kde.org/" +SRC_URI="mirror://kde/stable/${KDE_VERSION}/src/extragear/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="4" +KEYWORDS="amd64 x86" +IUSE="debug" + +S=${WORKDIR}/${MY_P} + +PATCHES=( "${FILESDIR}/${P}-underlinking.patch" ) diff --git a/media-gfx/kcoloredit/metadata.xml b/media-gfx/kcoloredit/metadata.xml new file mode 100644 index 000000000000..8d1e86a9cefb --- /dev/null +++ b/media-gfx/kcoloredit/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>kde</herd> +</pkgmetadata> |