summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-11-02 04:35:08 +0000
committerMike Frysinger <vapier@gentoo.org>2005-11-02 04:35:08 +0000
commitbc3cd5336c236841754239111c6e66e7527caaca (patch)
tree1de816cb2b7af10964ef77e34b465235da105059 /sys-apps/initng
parentold (diff)
downloadgentoo-2-bc3cd5336c236841754239111c6e66e7527caaca.tar.gz
gentoo-2-bc3cd5336c236841754239111c6e66e7527caaca.tar.bz2
gentoo-2-bc3cd5336c236841754239111c6e66e7527caaca.zip
Version bump #111121 by Enderson Tadeu S. Maia.
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'sys-apps/initng')
-rw-r--r--sys-apps/initng/ChangeLog7
-rw-r--r--sys-apps/initng/files/digest-initng-0.3.41
-rw-r--r--sys-apps/initng/initng-0.3.4.ebuild35
3 files changed, 42 insertions, 1 deletions
diff --git a/sys-apps/initng/ChangeLog b/sys-apps/initng/ChangeLog
index 514637e8df7d..e43400243c95 100644
--- a/sys-apps/initng/ChangeLog
+++ b/sys-apps/initng/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/initng
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/initng/ChangeLog,v 1.26 2005/10/16 02:47:14 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/initng/ChangeLog,v 1.27 2005/11/02 04:35:08 vapier Exp $
+
+*initng-0.3.4 (02 Nov 2005)
+
+ 02 Nov 2005; Mike Frysinger <vapier@gentoo.org> +initng-0.3.4.ebuild:
+ Version bump #111121 by Enderson Tadeu S. Maia.
*initng-0.3.3 (16 Oct 2005)
diff --git a/sys-apps/initng/files/digest-initng-0.3.4 b/sys-apps/initng/files/digest-initng-0.3.4
new file mode 100644
index 000000000000..126752f8fe4c
--- /dev/null
+++ b/sys-apps/initng/files/digest-initng-0.3.4
@@ -0,0 +1 @@
+MD5 3c79eea783550e807e9f7c4b28049e31 initng-0.3.4.tar.bz2 554814
diff --git a/sys-apps/initng/initng-0.3.4.ebuild b/sys-apps/initng/initng-0.3.4.ebuild
new file mode 100644
index 000000000000..2f5e1ac090ab
--- /dev/null
+++ b/sys-apps/initng/initng-0.3.4.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/initng/initng-0.3.4.ebuild,v 1.1 2005/11/02 04:35:08 vapier Exp $
+
+DESCRIPTION="A next generation init replacement"
+HOMEPAGE="http://initng.thinktux.net/"
+SRC_URI="http://initng.thinktux.net/download/v${PV:0:3}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+IUSE="debug"
+
+src_compile() {
+ econf \
+ $(use_enable debug) \
+ --with-doc-dir=/usr/share/doc/${PF} \
+ --prefix=/ \
+ || die
+ emake || die
+}
+
+src_install() {
+ make install DESTDIR="${D}" || die
+ # Dont need libtool linker scripts, so punt em
+ find "${D}" -name '*.la' -exec rm {} \;
+ # other packages install these
+ rm -f "${D}"/sbin/{ifplugd,wpa_cli}.action
+ dodoc README FAQ AUTHORS ChangeLog NEWS TEMPLATE_HEADER TODO
+}
+
+pkg_postinst() {
+ einfo "remember to add init=/sbin/initng in your grub or lilo config"
+ einfo "to use initng Happy testing."
+}