From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- x11-misc/okindd/Manifest | 2 ++ x11-misc/okindd/files/okindd-0.6.1-gcc-4.7.patch | 10 ++++++ x11-misc/okindd/metadata.xml | 5 +++ x11-misc/okindd/okindd-0.6.0.ebuild | 40 +++++++++++++++++++++ x11-misc/okindd/okindd-0.6.1.ebuild | 45 ++++++++++++++++++++++++ 5 files changed, 102 insertions(+) create mode 100644 x11-misc/okindd/Manifest create mode 100644 x11-misc/okindd/files/okindd-0.6.1-gcc-4.7.patch create mode 100644 x11-misc/okindd/metadata.xml create mode 100644 x11-misc/okindd/okindd-0.6.0.ebuild create mode 100644 x11-misc/okindd/okindd-0.6.1.ebuild (limited to 'x11-misc/okindd') diff --git a/x11-misc/okindd/Manifest b/x11-misc/okindd/Manifest new file mode 100644 index 000000000000..1ba8cbea08b8 --- /dev/null +++ b/x11-misc/okindd/Manifest @@ -0,0 +1,2 @@ +DIST okindd-0.6.0-49-20110113.tar.bz2 11557 SHA256 a2a98c1bbe2e64b22542d7a0f131a4373dcd075fb569841e045aa6cfb827a236 +DIST okindd-0.6.1-23-20120304.tar.bz2 14778 SHA256 f99e48b56f312d9aa7f0d612eb926ee3a11cec1bec50538e4c3efa5e7df6a985 diff --git a/x11-misc/okindd/files/okindd-0.6.1-gcc-4.7.patch b/x11-misc/okindd/files/okindd-0.6.1-gcc-4.7.patch new file mode 100644 index 000000000000..4cf7e4f20571 --- /dev/null +++ b/x11-misc/okindd/files/okindd-0.6.1-gcc-4.7.patch @@ -0,0 +1,10 @@ +--- src/okindd.h ++++ src/okindd.h +@@ -9,6 +9,7 @@ + #include "text.h" + #include "menu.h" + #include "global.h" ++#include + #include + #include + #include diff --git a/x11-misc/okindd/metadata.xml b/x11-misc/okindd/metadata.xml new file mode 100644 index 000000000000..ab02f994fdd2 --- /dev/null +++ b/x11-misc/okindd/metadata.xml @@ -0,0 +1,5 @@ + + + + qt + diff --git a/x11-misc/okindd/okindd-0.6.0.ebuild b/x11-misc/okindd/okindd-0.6.0.ebuild new file mode 100644 index 000000000000..2dbefddf7d89 --- /dev/null +++ b/x11-misc/okindd/okindd-0.6.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +inherit qt4-r2 + +MY_P="${P}-49-20110113" + +DESCRIPTION="On Screen Display (OSD) for KDE 4.x - works on any qt desktop" +HOMEPAGE="http://sites.kochkin.org/okindd/Home" +SRC_URI="http://sites.kochkin.org/okindd/Home/development/${MY_P}.tar.bz2" + +LICENSE="GPL-3" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="debug" + +DEPEND="dev-qt/qtgui:4 + dev-qt/qtdbus:4" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}" + +src_configure() { + eqmake4 okindd.pro +} + +DOCS=( changelog ) +src_install() { + qt4-r2_src_install + docinto examples + dodoc scripts/* + dodoc conf/okinddrc.example + + elog "You can find an example configuration file at" + elog " /usr/share/doc/okindd/examples/okinddrc.example" + elog "It should be placed in \${HOME}/.okindd/" +} diff --git a/x11-misc/okindd/okindd-0.6.1.ebuild b/x11-misc/okindd/okindd-0.6.1.ebuild new file mode 100644 index 000000000000..716796226f37 --- /dev/null +++ b/x11-misc/okindd/okindd-0.6.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +inherit qt4-r2 + +MY_P=${P}-23-20120304 + +DESCRIPTION="On Screen Display (OSD) for KDE 4.x - works on any Qt desktop" +HOMEPAGE="http://sites.kochkin.org/okindd/Home" +SRC_URI="http://sites.kochkin.org/okindd/Home/${MY_P}.tar.bz2" + +LICENSE="GPL-3" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="debug" + +DEPEND=" + dev-qt/qtcore:4 + dev-qt/qtdbus:4 + dev-qt/qtgui:4 +" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${PN} + +DOCS="changelog" +PATCHES=( "${FILESDIR}/${P}-gcc-4.7.patch" ) + +src_install() { + qt4-r2_src_install + + rm -rf "${ED}"usr/share/doc/${PN} + docinto examples + dodoc conf/okinddrc.{example,my} scripts/* + docompress -x /usr/share/doc/${PF}/examples +} + +pkg_postinst() { + elog "You can find an example configuration file at" + elog " ${EROOT}usr/share/doc/${PF}/examples/okinddrc.example" + elog "It should be placed inside \${HOME}/.okindd/" +} -- cgit v1.2.3-65-gdbad