summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-11-29 02:23:26 +0000
committerMike Frysinger <vapier@gentoo.org>2005-11-29 02:23:26 +0000
commita1435c0ae2e5b310801a1d726b244fb993ac25e3 (patch)
tree42dd86d9259382cda3665a37de7c20f621cac4a4 /app-admin/showconsole
parentClean up build so that we no longer have .a or .la files in /. (diff)
downloadgentoo-2-a1435c0ae2e5b310801a1d726b244fb993ac25e3.tar.gz
gentoo-2-a1435c0ae2e5b310801a1d726b244fb993ac25e3.tar.bz2
gentoo-2-a1435c0ae2e5b310801a1d726b244fb993ac25e3.zip
Version bump.
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'app-admin/showconsole')
-rw-r--r--app-admin/showconsole/ChangeLog7
-rw-r--r--app-admin/showconsole/files/digest-showconsole-1.081
-rw-r--r--app-admin/showconsole/showconsole-1.08.ebuild38
3 files changed, 45 insertions, 1 deletions
diff --git a/app-admin/showconsole/ChangeLog b/app-admin/showconsole/ChangeLog
index 76706e304f43..75b6641f5788 100644
--- a/app-admin/showconsole/ChangeLog
+++ b/app-admin/showconsole/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-admin/showconsole
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/showconsole/ChangeLog,v 1.8 2005/10/02 18:39:28 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/showconsole/ChangeLog,v 1.9 2005/11/29 02:22:14 vapier Exp $
+
+*showconsole-1.08 (29 Nov 2005)
+
+ 29 Nov 2005; Mike Frysinger <vapier@gentoo.org> +showconsole-1.08.ebuild:
+ Version bump.
02 Oct 2005; Aron Griffis <agriffis@gentoo.org> showconsole-1.07.ebuild:
Mark 1.07 stable on alpha
diff --git a/app-admin/showconsole/files/digest-showconsole-1.08 b/app-admin/showconsole/files/digest-showconsole-1.08
new file mode 100644
index 000000000000..2cb783925646
--- /dev/null
+++ b/app-admin/showconsole/files/digest-showconsole-1.08
@@ -0,0 +1 @@
+MD5 392ff4f9e03b66769fa813f1897160c5 showconsole-1.08.tar.bz2 20821
diff --git a/app-admin/showconsole/showconsole-1.08.ebuild b/app-admin/showconsole/showconsole-1.08.ebuild
new file mode 100644
index 000000000000..4d6fa2438474
--- /dev/null
+++ b/app-admin/showconsole/showconsole-1.08.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/showconsole/showconsole-1.08.ebuild,v 1.1 2005/11/29 02:22:14 vapier Exp $
+
+# This tarball is extracted from SuSe's sysvinit-2.86-#.src.rpm
+# You can find said src rpm via opensuse.org:
+# http://mirrors.kernel.org/opensuse/distribution/SL-OSS-edge/inst-source/suse/src/
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="small daemon for logging console output during boot"
+HOMEPAGE="http://www.novell.com/linux/suse/"
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc ~x86"
+IUSE=""
+
+DEPEND=""
+
+src_unpack() {
+ unpack ${P}.tar.bz2
+ cd "${S}"
+ epatch "${FILESDIR}"/1.07-no-TIOCGDEV.patch
+}
+
+src_compile() {
+ emake COPTS="${CFLAGS}" CC="$(tc-getCC)" || die "emake failed"
+}
+
+src_install() {
+ make install DESTDIR="${D}" || die "install failed"
+ insinto /$(get_libdir)/rcscripts/addons
+ doins "${FILESDIR}"/bootlogger.sh || die "rcscript addon"
+ rmdir "${D}"/usr/lib/lsb || die
+ dodoc showconsole-*.lsm README
+}