<?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>
-# 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"
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
}