blob: 29a5f40287c755e158fdaac695e7515283c56fcf (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/utempter/utempter-0.5.5.6.ebuild,v 1.6 2005/08/07 09:11:28 vapier Exp $
inherit rpm eutils flag-o-matic
MY_P=${P%.*}-${PV##*.}
S=${WORKDIR}/${P%.*}
DESCRIPTION="App that allows non-privileged apps to write utmp (login) info"
HOMEPAGE="http://www.redhat.com/"
SRC_URI="mirror://gentoo/${MY_P}.src.rpm"
LICENSE="|| ( MIT LGPL-2 )"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 s390 sparc x86"
IUSE=""
RDEPEND="virtual/libc"
PROVIDE="virtual/utempter"
pkg_setup() {
enewgroup utmp 406
}
src_unpack() {
rpm_src_unpack
cd ${S}
epatch ${FILESDIR}/${P}-soname-makefile-fix.patch
epatch ${FILESDIR}/${P}-no_utmpx.patch
}
src_compile() {
append-ldflags -Wl,-z,now
make RPM_OPT_FLAGS="${CFLAGS}" || die
}
src_install() {
make \
RPM_BUILD_ROOT="${D}" \
LIBDIR=/usr/$(get_libdir) \
install || die
dobin utmp
fowners root:utmp /usr/sbin/utempter
fperms 2755 /usr/sbin/utempter
}
pkg_postinst() {
if [ "${ROOT}" = "/" ]
then
if [ -f /var/log/wtmp ]
then
chown root:utmp /var/log/wtmp
chmod 664 /var/log/wtmp
fi
if [ -f /var/run/utmp ]
then
chown root:utmp /var/run/utmp
chmod 664 /var/run/utmp
fi
fi
}
|