summaryrefslogtreecommitdiff
blob: 2216af1d0e7dee60c7e90ee33501a5293a626b33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/utempter/utempter-0.5.2.ebuild,v 1.2 2002/12/05 11:01:17 danarmak Exp $

DESCRIPTION="App that allows non-privileged apps to write utmp (login) info, which needs root access"
HOMEPAGE="www.redhat.com" # no homepage really, but redhat are the authors
SRC_URI="mirror://gentoo/$P.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"

RDEPEND="virtual/glibc"

S="${WORKDIR}/${P}"

src_compile() {
	export RPM_OPT_FLAGS="$CFLAGS"
	make || die
}

src_install() {
	make RPM_BUILD_ROOT="$D" install
	dobin utmp
	dodoc COPYING
}