summaryrefslogtreecommitdiff
blob: 48efc7c51cc4fb4d3931b3c5855b29382964d8da (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
26
27
# Copyright 1999-2003 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.8 2004/01/18 00:56:37 seemant Exp $

S=${WORKDIR}/${P}
DESCRIPTION="App that allows non-privileged apps to write utmp (login) info, which needs root access"
# no homepage really, but redhat are the authors
HOMEPAGE="http://www.redhat.com"
SRC_URI="mirror://gentoo/${P}.tar.gz"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc sparc ~alpha ~hppa ~mips ~arm amd64 ~ia64 ~ppc64"

RDEPEND="virtual/glibc"


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

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