Gentoo Archives: gentoo-commits

From: Wim Muskee <wimmuskee@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/ltsp:master commit in: sys-apps/kicktoo/
Date: Wed, 28 Sep 2011 18:44:13
Message-Id: ae1df38cc751fa28549407eee4d39b0b3a8b7fa0.wim@gentoo
1 commit: ae1df38cc751fa28549407eee4d39b0b3a8b7fa0
2 Author: Wim Muskee <wimmuskee <AT> gmail <DOT> com>
3 AuthorDate: Wed Sep 28 18:43:46 2011 +0000
4 Commit: Wim Muskee <wimmuskee <AT> gmail <DOT> com>
5 CommitDate: Wed Sep 28 18:43:46 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/ltsp.git;a=commit;h=ae1df38c
7
8 kicktoo: New package, alternative to quickstart.
9
10 ---
11 sys-apps/kicktoo/ChangeLog | 8 ++++++
12 sys-apps/kicktoo/Manifest | 3 ++
13 sys-apps/kicktoo/kicktoo-9999.ebuild | 43 ++++++++++++++++++++++++++++++++++
14 sys-apps/kicktoo/metadata.xml | 13 ++++++++++
15 4 files changed, 67 insertions(+), 0 deletions(-)
16
17 diff --git a/sys-apps/kicktoo/ChangeLog b/sys-apps/kicktoo/ChangeLog
18 new file mode 100644
19 index 0000000..5bc48c7
20 --- /dev/null
21 +++ b/sys-apps/kicktoo/ChangeLog
22 @@ -0,0 +1,8 @@
23 +# ChangeLog for sys-apps/kicktoo
24 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
25 +# $Header: $
26 +
27 +*kicktoo-9999 (28 09 2011)
28 +
29 + 28 09 2011; Wim Muskee wimmuskee@×××××.com kicktoo-9999.ebuild:
30 + Initial import.
31
32 diff --git a/sys-apps/kicktoo/Manifest b/sys-apps/kicktoo/Manifest
33 new file mode 100644
34 index 0000000..495f682
35 --- /dev/null
36 +++ b/sys-apps/kicktoo/Manifest
37 @@ -0,0 +1,3 @@
38 +EBUILD kicktoo-9999.ebuild 891 RMD160 58662767d81674cb1ef015bf20cb72c1294d06ab SHA1 90e3d4c45979211d1b07ddfea3e5d84ed8200c0f SHA256 499ad1ea52ef2669708abebfc0794468470842e37e8e188e89ef1e0d5cfd705a
39 +MISC ChangeLog 230 RMD160 277f55ed97f52935f29a044e8a776a27557ded46 SHA1 f22d9459e597757d07c43bfec37fcee9932372d9 SHA256 777f5e091ae06bc2fdf7c0a7bd4fbffc91c140a8bf38c2c22596d96a1a368dd4
40 +MISC metadata.xml 308 RMD160 103ab4e82ecc105bea4bb2e2b9e19dc1270895b5 SHA1 ad841358ee15d0173ba354fd6e9b4eef35e450ac SHA256 b41fb6ce536c589ed2e34006ff1af62e8752fbc071a78f4d3ab9ae4f56941551
41
42 diff --git a/sys-apps/kicktoo/kicktoo-9999.ebuild b/sys-apps/kicktoo/kicktoo-9999.ebuild
43 new file mode 100644
44 index 0000000..98464e3
45 --- /dev/null
46 +++ b/sys-apps/kicktoo/kicktoo-9999.ebuild
47 @@ -0,0 +1,43 @@
48 +# Copyright 1999-2011 Gentoo Foundation
49 +# Distributed under the terms of the GNU General Public License v2
50 +# $Header: $
51 +
52 +EAPI="1"
53 +
54 +inherit git-2
55 +
56 +EGIT_REPO_URI="git://github.com/r1k0/kicktoo.git"
57 +DESCRIPTION="A Portage based installer/profiler for Gentoo/Funtoo (/Exherbo RIP)"
58 +HOMEPAGE="http://www.openchill.org"
59 +LICENSE="GPL-2"
60 +SLOT="0"
61 +KEYWORDS=""
62 +# making the profiles optional, included by default
63 +# they are not required for the tool
64 +IUSE="doc +examples"
65 +
66 +src_install() {
67 + ktdir=/usr/share/kicktoo
68 +
69 + insinto ${ktdir}/modules
70 + doins modules/*
71 +
72 + dobin kicktoo
73 + newbin daemon/kicktood.pl kicktood
74 +
75 + if use doc; then
76 + dodoc README
77 + dodoc TODO
78 + newdoc profiles/config.txt profile-config.txt
79 + fi
80 +
81 + if use examples; then
82 + insinto ${ktdir}/kbin
83 + doins kbin/*
84 + insinto ${ktdir}/kconfig
85 + doins kconfig/*
86 + insinto ${ktdir}/profiles
87 + rm profiles/config.txt
88 + doins -r profiles/*
89 + fi
90 +}
91
92 diff --git a/sys-apps/kicktoo/metadata.xml b/sys-apps/kicktoo/metadata.xml
93 new file mode 100644
94 index 0000000..5565ff4
95 --- /dev/null
96 +++ b/sys-apps/kicktoo/metadata.xml
97 @@ -0,0 +1,13 @@
98 +<?xml version="1.0" encoding="UTF-8"?>
99 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
100 +<pkgmetadata>
101 + <herd>no-herd</herd>
102 +
103 + <maintainer>
104 + <email></email>
105 + </maintainer>
106 +
107 + <upstream>
108 + <bugs-to>https://github.com/r1k0/kicktoo/issues</bugs-to>
109 + </upstream>
110 +</pkgmetadata>