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 /net-misc/clockspeed-conf | |
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 'net-misc/clockspeed-conf')
-rw-r--r-- | net-misc/clockspeed-conf/Manifest | 1 | ||||
-rw-r--r-- | net-misc/clockspeed-conf/clockspeed-conf-0.4.5-r1.ebuild | 30 | ||||
-rw-r--r-- | net-misc/clockspeed-conf/files/clockspeed-conf-0.4.5-gentoo.patch | 26 | ||||
-rw-r--r-- | net-misc/clockspeed-conf/metadata.xml | 7 |
4 files changed, 64 insertions, 0 deletions
diff --git a/net-misc/clockspeed-conf/Manifest b/net-misc/clockspeed-conf/Manifest new file mode 100644 index 000000000000..a0da11544e06 --- /dev/null +++ b/net-misc/clockspeed-conf/Manifest @@ -0,0 +1 @@ +DIST clockspeed-conf-0.4.5.tar.gz 7190 RMD160 bb862a7c87a0f7673e6f12f5eede6b9ac403ecc7 SHA1 58d4c3ae8cc46d79453241d2a6b1ce22f2eea888 SHA256 6f61d140481286637d87dc29c519b06b0716348072e3b67b3d13f87285169a86 diff --git a/net-misc/clockspeed-conf/clockspeed-conf-0.4.5-r1.ebuild b/net-misc/clockspeed-conf/clockspeed-conf-0.4.5-r1.ebuild new file mode 100644 index 000000000000..35380b40b759 --- /dev/null +++ b/net-misc/clockspeed-conf/clockspeed-conf-0.4.5-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit eutils + +DESCRIPTION="scripts to setup a clockspeed client and/or a taiclockd server" +HOMEPAGE="http://foo42.de/devel/sysutils/clockspeed-conf/" +SRC_URI="http://foo42.de/distfiles/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="net-misc/clockspeed + virtual/daemontools" +RDEPEND="${DEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-gentoo.patch +} + +src_install() { + dobin clockspeed-conf taiclockd-conf || die "dobin" + doman clockspeed-conf.8 taiclockd-conf.8 + dodoc README TODO +} diff --git a/net-misc/clockspeed-conf/files/clockspeed-conf-0.4.5-gentoo.patch b/net-misc/clockspeed-conf/files/clockspeed-conf-0.4.5-gentoo.patch new file mode 100644 index 000000000000..dffbb35b08c7 --- /dev/null +++ b/net-misc/clockspeed-conf/files/clockspeed-conf-0.4.5-gentoo.patch @@ -0,0 +1,26 @@ +Configure for Gentoo + +Patch by Thilo Bangert +http://bugs.gentoo.org/show_bug.cgi?id=90073 + +--- clockspeed-conf ++++ clockspeed-conf +@@ -15,6 +15,7 @@ + #ADJUST_LOGDIR defaults to main + #VA=yes shortcut for 'ADJUST_LOGDIR=clockspeed-adjust' + # ++CLOCKSPEED_INSTALLATION="GENTOO" + [ -z "${CLOCKSPEED_INSTALLATION}" ] && CLOCKSPEED_INSTALLATION="DJB" + + PATH=/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/command:${PATH} +@@ -106,6 +107,10 @@ + BINDIR="${PREFIX}/clockspeed/bin" + ADJUSTFILE="${PREFIX}/clockspeed/adjust" + ;; ++ GENTOO) ++ ETCDIR="/var/lib/clockspeed" ++ BINDIR="/usr/bin" ++ ;; + custom) + # we expect ETCDIR and BINDIR from environment !!! + ;; diff --git a/net-misc/clockspeed-conf/metadata.xml b/net-misc/clockspeed-conf/metadata.xml new file mode 100644 index 000000000000..d9cd2cad66c2 --- /dev/null +++ b/net-misc/clockspeed-conf/metadata.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer> +<email>maintainer-needed@gentoo.org</email> +</maintainer> +</pkgmetadata> |