diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2005-04-15 13:03:31 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2005-04-15 13:03:31 +0000 |
commit | bedf57123571bdf803b8f2ff48a2edbcc4cfcc37 (patch) | |
tree | 0109d3c1c36d8bd5c585dd7bcfb628241537d83b /sys-apps/utempter/utempter-0.5.5.6.ebuild | |
parent | Stable on amd64. (diff) | |
download | historical-bedf57123571bdf803b8f2ff48a2edbcc4cfcc37.tar.gz historical-bedf57123571bdf803b8f2ff48a2edbcc4cfcc37.tar.bz2 historical-bedf57123571bdf803b8f2ff48a2edbcc4cfcc37.zip |
version bump, that's allegedly compilable with gcc-4. Also, this adds a patch so that utempter can be compiled against uclibc. Patch provided by Peter S. Mazinger <ps.m@gmx.net> in bug #69470 by Daniel Black <dragonheart@gentoo.org>
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'sys-apps/utempter/utempter-0.5.5.6.ebuild')
-rw-r--r-- | sys-apps/utempter/utempter-0.5.5.6.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/sys-apps/utempter/utempter-0.5.5.6.ebuild b/sys-apps/utempter/utempter-0.5.5.6.ebuild new file mode 100644 index 000000000000..0eb23250324b --- /dev/null +++ b/sys-apps/utempter/utempter-0.5.5.6.ebuild @@ -0,0 +1,65 @@ +# 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.1 2005/04/15 13:03:31 seemant 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 + http://dev.gentoo.org/~seemant/distfiles/${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" + +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 +} |