summaryrefslogtreecommitdiff
blob: e817bc22bc0f439b8346d0d02a026ce01d35c93f (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libutempter/libutempter-1.1.2.1.ebuild,v 1.6 2005/12/17 21:38:57 fmccor Exp $

inherit rpm eutils flag-o-matic versionator

MY_P=${PN}-$(replace_version_separator 3 '-alt')
S=${WORKDIR}/${PN}-$(get_version_component_range 1-3)
PATCHVER="1"
DESCRIPTION="Library that allows non-privileged apps to write utmp (login) info, which need root access"
HOMEPAGE="http://altlinux.org/index.php?module=sisyphus&package=libutempter"
SRC_URI="ftp://ftp.altlinux.ru/pub/distributions/ALTLinux/Sisyphus/SRPMS.classic/${MY_P}.src.rpm
	mirror://gentoo/${PN}-patches-${PATCHVER}.tar.bz2"


LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ppc64 s390 sh sparc x86"
IUSE=""

RDEPEND=""
DEPEND="!virtual/utempter"
PROVIDE="virtual/utempter"

PATCHDIR="${WORKDIR}/gentoo/patches"

pkg_setup() {
	enewgroup utmp 406
}

src_unpack() {
	unpack ${A}
	rpm_src_unpack
	cd ${S}

	export EPATCH_SUFFIX="patch"
	epatch ${PATCHDIR}

	if ! use elibc_glibc &&  ! use elibc_uclibc
	then
		epatch ${PATCHDIR}/freebsd
	fi
}

src_compile() {
	make \
		RPM_OPT_FLAGS="${CFLAGS}" \
		libdir=/usr/$(get_libdir) \
		libexecdir=/usr/$(get_libdir) || die
}

src_install() {
	make \
		DESTDIR=${D} \
		libdir=/usr/$(get_libdir) \
		libexecdir=/usr/$(get_libdir) \
		install || die

	fowners root:utmp /usr/$(get_libdir)/utempter/utempter
	fperms 2755 /usr/$(get_libdir)/utempter/utempter
	dodir /usr/sbin
	dosym ../$(get_libdir)/utempter/utempter /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
}