commit: fa2ca993f5a37fdb868c54254c48ac89c71a343c Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> AuthorDate: Sun Jan 17 21:03:00 2016 +0000 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> CommitDate: Sun Jan 17 21:06:52 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa2ca993
net-dialup/mingetty: Converted ebuild to EAPI-5. Took over maintenance. Package-Manager: portage-2.2.26 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org> net-dialup/mingetty/metadata.xml | 5 ++++- 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 2bf5f6e..7cd707c 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>[email protected]</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 7e382a4..b12c705 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 }
