summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonnie Berkholz <dberkholz@gentoo.org>2008-01-31 03:42:36 +0000
committerDonnie Berkholz <dberkholz@gentoo.org>2008-01-31 03:42:36 +0000
commitb5742749c2ae5bcacf7055e24d310aa82ebd1493 (patch)
tree89c4bc9582c478707f214ecd2552b8032ad3705b /sys-libs/libutempter
parentClean up. (diff)
downloadgentoo-2-b5742749c2ae5bcacf7055e24d310aa82ebd1493.tar.gz
gentoo-2-b5742749c2ae5bcacf7055e24d310aa82ebd1493.tar.bz2
gentoo-2-b5742749c2ae5bcacf7055e24d310aa82ebd1493.zip
Clean up.
(Portage version: 2.1.4)
Diffstat (limited to 'sys-libs/libutempter')
-rw-r--r--sys-libs/libutempter/ChangeLog8
-rw-r--r--sys-libs/libutempter/files/digest-libutempter-1.1.4.13
-rw-r--r--sys-libs/libutempter/libutempter-1.1.4.1.ebuild63
3 files changed, 6 insertions, 68 deletions
diff --git a/sys-libs/libutempter/ChangeLog b/sys-libs/libutempter/ChangeLog
index b3c567f53b70..8e30d85debfa 100644
--- a/sys-libs/libutempter/ChangeLog
+++ b/sys-libs/libutempter/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-libs/libutempter
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libutempter/ChangeLog,v 1.32 2007/12/25 15:19:51 phreak Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libutempter/ChangeLog,v 1.33 2008/01/31 03:42:35 dberkholz Exp $
+
+ 31 Jan 2008; Donnie Berkholz <dberkholz@gentoo.org>;
+ -libutempter-1.1.4.1.ebuild:
+ Clean up.
25 Dec 2007; Christian Heim <phreak@gentoo.org> metadata.xml:
Removing seemant from metadata.xml as per #202469.
diff --git a/sys-libs/libutempter/files/digest-libutempter-1.1.4.1 b/sys-libs/libutempter/files/digest-libutempter-1.1.4.1
deleted file mode 100644
index 01cbcde418c5..000000000000
--- a/sys-libs/libutempter/files/digest-libutempter-1.1.4.1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 b60ade66538e807ca28ca68a7a8dd3b9 libutempter-1.1.4.tar.bz2 14583
-RMD160 380718e5531d7b396784e2e7298f25ef12606c2d libutempter-1.1.4.tar.bz2 14583
-SHA256 ca09ab18a8d29a5f0af1ce04e19924839f108f0cadbba90dd3e3a33c4dbf092c libutempter-1.1.4.tar.bz2 14583
diff --git a/sys-libs/libutempter/libutempter-1.1.4.1.ebuild b/sys-libs/libutempter/libutempter-1.1.4.1.ebuild
deleted file mode 100644
index 860a3a350d92..000000000000
--- a/sys-libs/libutempter/libutempter-1.1.4.1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libutempter/libutempter-1.1.4.1.ebuild,v 1.18 2007/11/03 16:17:32 grobian Exp $
-
-inherit eutils flag-o-matic versionator toolchain-funcs
-
-MY_P=${PN}-$(get_version_component_range 1-3)
-S=${WORKDIR}/${MY_P}
-
-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.org/pub/people/ldv/${PN}/${MY_P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
-IUSE="elibc_FreeBSD"
-
-DEPEND="!virtual/utempter"
-RDEPEND="!virtual/utempter"
-
-PROVIDE="virtual/utempter"
-
-pkg_setup() {
- enewgroup utmp 406
-}
-
-src_compile() {
- use elibc_FreeBSD && append-flags -lutil
- emake \
- CC="$(tc-getCC)" \
- RPM_OPT_FLAGS="${CFLAGS}" \
- libdir=/usr/$(get_libdir) \
- libexecdir=/usr/$(get_libdir)/misc || die
-}
-
-src_install() {
- make \
- DESTDIR="${D}" \
- libdir=/usr/$(get_libdir) \
- libexecdir=/usr/$(get_libdir)/misc \
- includedir=/usr/include \
- install || die
-
- fowners root:utmp /usr/$(get_libdir)/misc/utempter/utempter
- fperms 2755 /usr/$(get_libdir)/misc/utempter/utempter
- dodir /usr/sbin
- dosym ../$(get_libdir)/misc/utempter/utempter /usr/sbin/utempter
-}
-
-pkg_postinst() {
- if [ -f "${ROOT}/var/log/wtmp" ]
- then
- chown root:utmp "${ROOT}/var/log/wtmp"
- chmod 664 "${ROOT}/var/log/wtmp"
- fi
-
- if [ -f "${ROOT}/var/run/utmp" ]
- then
- chown root:utmp "${ROOT}/var/run/utmp"
- chmod 664 "${ROOT}/var/run/utmp"
- fi
-}