diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-11-06 04:23:05 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-11-06 04:23:05 +0000 |
commit | 936e5fe0da56bafd99fbcc3faad2907340715abb (patch) | |
tree | 618779eefea5aad33c7d41ab2fdefbf167998c31 /net-dialup/mingetty | |
parent | changelog changes (diff) | |
download | gentoo-2-936e5fe0da56bafd99fbcc3faad2907340715abb.tar.gz gentoo-2-936e5fe0da56bafd99fbcc3faad2907340715abb.tar.bz2 gentoo-2-936e5fe0da56bafd99fbcc3faad2907340715abb.zip |
new minimal getty
Diffstat (limited to 'net-dialup/mingetty')
-rw-r--r-- | net-dialup/mingetty/ChangeLog | 13 | ||||
-rw-r--r-- | net-dialup/mingetty/files/digest-mingetty-1.00 | 1 | ||||
-rw-r--r-- | net-dialup/mingetty/mingetty-1.00.ebuild | 31 |
3 files changed, 45 insertions, 0 deletions
diff --git a/net-dialup/mingetty/ChangeLog b/net-dialup/mingetty/ChangeLog new file mode 100644 index 000000000000..170d832781cf --- /dev/null +++ b/net-dialup/mingetty/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for net-dialup/mingetty +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/mingetty/ChangeLog,v 1.1 2002/11/06 04:23:05 seemant Exp $ + +*mingetty-1.00 (05 Nov 2002) + + 05 Nov 2002; Seemant Kulleen <seemant@gentoo.org> mingetty-1.00.ebuild + ChangeLog files/digest-mingetty-1.00 : + + This is a minimal getty for virtual consoles only, as used by RedHat, + Mandrake, etc. The SRC_URI points to a src.rpm from Redhat, which is why + rpm2targz was made a dependency of this. Ebuild submission by: + ian@abbott.org (Ian Abbott) in bug #7382. diff --git a/net-dialup/mingetty/files/digest-mingetty-1.00 b/net-dialup/mingetty/files/digest-mingetty-1.00 new file mode 100644 index 000000000000..8a41c91112ef --- /dev/null +++ b/net-dialup/mingetty/files/digest-mingetty-1.00 @@ -0,0 +1 @@ +MD5 b114ac572861e9be60a7d495dfb3561b mingetty-1.00-1.src.rpm 19064 diff --git a/net-dialup/mingetty/mingetty-1.00.ebuild b/net-dialup/mingetty/mingetty-1.00.ebuild new file mode 100644 index 000000000000..0a1f03dc105d --- /dev/null +++ b/net-dialup/mingetty/mingetty-1.00.ebuild @@ -0,0 +1,31 @@ +# Copyright 2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/mingetty/mingetty-1.00.ebuild,v 1.1 2002/11/06 04:23:05 seemant Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A compact getty program for virtual consoles only." +SRC_URI="ftp://ftp.redhat.com/pub/redhat/linux/7.3/en/os/i386/SRPMS/${P}-1.src.rpm" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +DEPEND="app-arch/rpm2targz" +RDEPEND="virtual/glibc" + +src_unpack() { + rpm2targz ${DISTDIR}/${P}-1.src.rpm + tar zxf ${WORKDIR}/${P}-1.src.tar.gz + tar zxf ${WORKDIR}/${P}.tar.gz + patch -p0 < ${P}-opt.patch || die +} + +src_compile() { + emake RPM_OPTS="${CFLAGS}" || die +} + +src_install () { + into / + dosbin mingetty + doman mingetty.8 +} |