diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2016-01-17 22:03:00 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2016-01-17 22:06:52 +0100 |
commit | fa2ca993f5a37fdb868c54254c48ac89c71a343c (patch) | |
tree | d15aeae73a7f3813cf6511de96b0ee03a553fdb2 /net-dialup | |
parent | amd64: removed obsolete net-irc/xchat and net-irc/xchat-gnome entries (diff) | |
download | gentoo-fa2ca993f5a37fdb868c54254c48ac89c71a343c.tar.gz gentoo-fa2ca993f5a37fdb868c54254c48ac89c71a343c.tar.bz2 gentoo-fa2ca993f5a37fdb868c54254c48ac89c71a343c.zip |
net-dialup/mingetty: Converted ebuild to EAPI-5. Took over maintenance.
Package-Manager: portage-2.2.26
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/mingetty/metadata.xml | 5 | ||||
-rw-r--r-- | net-dialup/mingetty/mingetty-1.08.ebuild | 12 |
2 files changed, 10 insertions, 7 deletions
diff --git a/net-dialup/mingetty/metadata.xml b/net-dialup/mingetty/metadata.xml index 2bf5f6e1fab2..7cd707c0759f 100644 --- a/net-dialup/mingetty/metadata.xml +++ b/net-dialup/mingetty/metadata.xml @@ -1,7 +1,10 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <herd>net-dialup</herd> + <maintainer> + <email>polynomial-c@gentoo.org</email> + <name>Lars Wendler</name> + </maintainer> <longdescription>The mingetty program is a lightweight, minimalist getty program for use only on virtual consoles. Mingetty is not suitable for serial lines (you should use the mgetty program in that case).</longdescription> diff --git a/net-dialup/mingetty/mingetty-1.08.ebuild b/net-dialup/mingetty/mingetty-1.08.ebuild index 7e382a426aa4..b12c705b8437 100644 --- a/net-dialup/mingetty/mingetty-1.08.ebuild +++ b/net-dialup/mingetty/mingetty-1.08.ebuild @@ -1,7 +1,9 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ +EAPI=5 + inherit toolchain-funcs eutils DESCRIPTION="A compact getty program for virtual consoles only" @@ -13,17 +15,15 @@ SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sparc x86" IUSE="unicode" -src_unpack() { - unpack ${A} - +src_prepare() { use unicode && epatch "${FILESDIR}"/${P}-utf8.patch } src_compile() { - emake CFLAGS="${CFLAGS} -Wall -W -pipe -D_GNU_SOURCE" CC="$(tc-getCC)" || die "compile failed" + emake CFLAGS="${CFLAGS} -Wall -W -pipe -D_GNU_SOURCE" CC="$(tc-getCC)" } src_install () { dodir /sbin /usr/share/man/man8 - emake DESTDIR="${D}" install || die "install failed" + emake DESTDIR="${D}" install } |