Add chenvr and syndgen ebuild
authorDa Risk <darisk972@gmail.com>
Sat, 19 Mar 2011 20:33:49 +0100
changeset 18 b20ce960cbc0
parent 17 2108520854c4
child 19 6a4c64b2183a
Add chenvr and syndgen ebuild
sys-apps/chenvr/chenvr-0.6.ebuild
sys-apps/syndgen/syndgen-0.2.2.ebuild
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sys-apps/chenvr/chenvr-0.6.ebuild	Sat Mar 19 20:33:49 2011 +0100
@@ -0,0 +1,28 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header:  $
+
+DESCRIPTION="An tool to create 32 and/or 64bits chrooted Gentoo"
+HOMEPAGE="http://tuna.lyua.org/chenvr/"
+SRC_URI="http://tuna.lyua.org/downloads/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+IUSE="doc"
+
+DEPEND=""
+
+src_install() {
+	cd "${WORKDIR}/${PN}"
+
+	mkdir -p ${D}usr/bin
+	install chenvr ${D}usr/bin/ || die "installing chenvr script"
+
+	mkdir -p ${D}etc
+	install config/chenvr.conf ${D}etc/ || die "installing chenvr configuration"
+
+	if use doc; then
+	   doinfo doc/chenvr.info
+	fi
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sys-apps/syndgen/syndgen-0.2.2.ebuild	Sat Mar 19 20:33:49 2011 +0100
@@ -0,0 +1,29 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header:  $
+
+NEED_PYTHON=2.4
+
+inherit distutils
+
+DESCRIPTION="A distant Gentoo synchronizer helper"
+HOMEPAGE="http://tuna.lyua.org/syndgen/"
+SRC_URI="http://tuna.lyua.org/downloads/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="net-misc/rsync net-misc/openssh app-portage/gentoolkit"
+
+PYTHON_MODNAME="syndgen"
+
+src_install() 
+{
+    cd ${S}
+    distutils_src_install
+
+    doman doc/syndgen.1
+}