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/xsetleds/Manifest | 1 + .../xsetleds/files/xsetleds-0.1.3-assignment.patch | 11 +++++++ .../xsetleds/files/xsetleds-0.1.3-isalpha.patch | 13 +++++++++ x11-misc/xsetleds/metadata.xml | 11 +++++++ x11-misc/xsetleds/xsetleds-0.1.3-r1.ebuild | 34 ++++++++++++++++++++++ x11-misc/xsetleds/xsetleds-0.1.3.ebuild | 34 ++++++++++++++++++++++ 6 files changed, 104 insertions(+) create mode 100644 x11-misc/xsetleds/Manifest create mode 100644 x11-misc/xsetleds/files/xsetleds-0.1.3-assignment.patch create mode 100644 x11-misc/xsetleds/files/xsetleds-0.1.3-isalpha.patch create mode 100644 x11-misc/xsetleds/metadata.xml create mode 100644 x11-misc/xsetleds/xsetleds-0.1.3-r1.ebuild create mode 100644 x11-misc/xsetleds/xsetleds-0.1.3.ebuild (limited to 'x11-misc/xsetleds') diff --git a/x11-misc/xsetleds/Manifest b/x11-misc/xsetleds/Manifest new file mode 100644 index 000000000000..652f5ea0de23 --- /dev/null +++ b/x11-misc/xsetleds/Manifest @@ -0,0 +1 @@ +DIST xsetleds-0.1.3.tar.gz 221399 SHA256 e844ea61a11bde39e9b46f2eacd08b88bfadd29ee7857fc0b8455357640d3b96 SHA512 7fe6baa77b4b2c8f57dfc331776bb457520facdb2f54a5c101764c590d7c5556cd00477e56d36e64cb7264a8de28698422b99ec4852798069189fbe6c1c19f72 WHIRLPOOL 1d3edc2247595f283846ea4f25bffbc226a33dc541d79af842a014e5d4f6ebe6eb8f177e4a5897e86cb6c1c559539393d662cb46d76dc8cab22a1a9f8c8b8616 diff --git a/x11-misc/xsetleds/files/xsetleds-0.1.3-assignment.patch b/x11-misc/xsetleds/files/xsetleds-0.1.3-assignment.patch new file mode 100644 index 000000000000..bc929813a3fc --- /dev/null +++ b/x11-misc/xsetleds/files/xsetleds-0.1.3-assignment.patch @@ -0,0 +1,11 @@ +--- a/src/utils.c ++++ b/src/utils.c +@@ -38,7 +38,7 @@ + { + const char *p; + +- if (p = strrchr (filename, '/')) ++ if ((p = strrchr (filename, '/'))) + p = strrchr (filename, '/') + 1; + else + p = filename; diff --git a/x11-misc/xsetleds/files/xsetleds-0.1.3-isalpha.patch b/x11-misc/xsetleds/files/xsetleds-0.1.3-isalpha.patch new file mode 100644 index 000000000000..b256bdb2da66 --- /dev/null +++ b/x11-misc/xsetleds/files/xsetleds-0.1.3-isalpha.patch @@ -0,0 +1,13 @@ +--- a/src/xsetleds.c ++++ b/src/xsetleds.c +@@ -29,8 +29,9 @@ + #include + #include + #include ++#include /* isalpha() */ + +-#include ++#include "xsetleds.h" + + + struct key keytab[] = { diff --git a/x11-misc/xsetleds/metadata.xml b/x11-misc/xsetleds/metadata.xml new file mode 100644 index 000000000000..09b04e7fe07d --- /dev/null +++ b/x11-misc/xsetleds/metadata.xml @@ -0,0 +1,11 @@ + + + + desktop-misc + proxy-maintainers + + jss2k2@chello.no + Unknown + seemant@gentoo.org as a proxy maintainer. Please refer to jss2k2 + + diff --git a/x11-misc/xsetleds/xsetleds-0.1.3-r1.ebuild b/x11-misc/xsetleds/xsetleds-0.1.3-r1.ebuild new file mode 100644 index 000000000000..042721f90317 --- /dev/null +++ b/x11-misc/xsetleds/xsetleds-0.1.3-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils toolchain-funcs + +DESCRIPTION="small tool to report and change the keyboard LED states of an X display" +HOMEPAGE="ftp://ftp.unix-ag.org/user/bmeurer/xsetleds/" +SRC_URI="ftp://ftp.unix-ag.org/user/bmeurer/xsetleds/src/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86" + +RDEPEND=" + x11-libs/libX11 + x11-libs/libXtst +" +DEPEND=" + ${RDEPEND} + x11-proto/inputproto + x11-proto/xextproto + x11-proto/xproto +" + +src_prepare() { + epatch \ + "${FILESDIR}"/${P}-assignment.patch \ + "${FILESDIR}"/${P}-isalpha.patch + tc-export CC +} + +DOCS=( AUTHORS ChangeLog README TODO ) diff --git a/x11-misc/xsetleds/xsetleds-0.1.3.ebuild b/x11-misc/xsetleds/xsetleds-0.1.3.ebuild new file mode 100644 index 000000000000..db42b1f96781 --- /dev/null +++ b/x11-misc/xsetleds/xsetleds-0.1.3.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils toolchain-funcs + +DESCRIPTION="small tool to report and change the keyboard LED states of an X display" +HOMEPAGE="ftp://ftp.unix-ag.org/user/bmeurer/xsetleds/" +SRC_URI="ftp://ftp.unix-ag.org/user/bmeurer/xsetleds/src/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc sparc alpha hppa ~mips amd64 ia64" + +RDEPEND=" + x11-libs/libX11 + x11-libs/libXtst +" +DEPEND=" + ${RDEPEND} + x11-proto/inputproto + x11-proto/xextproto + x11-proto/xproto +" + +src_prepare() { + epatch \ + "${FILESDIR}"/${P}-assignment.patch \ + "${FILESDIR}"/${P}-isalpha.patch + tc-export CC +} + +DOCS=( AUTHORS ChangeLog README TODO ) -- cgit v1.2.3-65-gdbad