summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2008-05-16 08:55:52 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2008-05-16 08:55:52 +0000
commitdaedbc8dd002a88d9fc4f7162eae4581f4b24750 (patch)
treec7f077bf36eee52fdee30f40ca4740d00ca5190f /sys-auth
parentInitial import, ebuild by me (diff)
downloadgentoo-2-daedbc8dd002a88d9fc4f7162eae4581f4b24750.tar.gz
gentoo-2-daedbc8dd002a88d9fc4f7162eae4581f4b24750.tar.bz2
gentoo-2-daedbc8dd002a88d9fc4f7162eae4581f4b24750.zip
Cleanup old.
(Portage version: 2.1.5)
Diffstat (limited to 'sys-auth')
-rw-r--r--sys-auth/pam_dotfile/ChangeLog6
-rw-r--r--sys-auth/pam_dotfile/pam_dotfile-0.7.ebuild41
2 files changed, 5 insertions, 42 deletions
diff --git a/sys-auth/pam_dotfile/ChangeLog b/sys-auth/pam_dotfile/ChangeLog
index 2e62baeb7484..2af2b78ee19f 100644
--- a/sys-auth/pam_dotfile/ChangeLog
+++ b/sys-auth/pam_dotfile/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-auth/pam_dotfile
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_dotfile/ChangeLog,v 1.9 2008/05/15 20:40:29 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_dotfile/ChangeLog,v 1.10 2008/05/16 08:55:52 flameeyes Exp $
+
+ 16 May 2008; Diego Pettenò <flameeyes@gentoo.org>
+ -pam_dotfile-0.7.ebuild:
+ Cleanup old.
15 May 2008; Markus Meier <maekke@gentoo.org> pam_dotfile-0.7-r1.ebuild:
amd64 stable, bug #222175
diff --git a/sys-auth/pam_dotfile/pam_dotfile-0.7.ebuild b/sys-auth/pam_dotfile/pam_dotfile-0.7.ebuild
deleted file mode 100644
index 4f362e79b549..000000000000
--- a/sys-auth/pam_dotfile/pam_dotfile-0.7.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_dotfile/pam_dotfile-0.7.ebuild,v 1.2 2007/07/11 13:08:43 flameeyes Exp $
-
-MY_P="${P/_beta/beta}"
-S="${WORKDIR}/${MY_P}"
-
-DESCRIPTION="pam module to allow password-storing in \$HOME/dotfiles"
-HOMEPAGE="http://0pointer.de/lennart/projects/pam_dotfile/"
-SRC_URI="http://0pointer.de/lennart/projects/pam_dotfile/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 amd64 ppc"
-IUSE="doc"
-DEPEND="doc? ( www-client/lynx )
- >=sys-libs/pam-0.72"
-
-src_compile() {
- local myconf
-
- if use doc; then
- myconf="--enable-lynx"
- else
- myconf="--disable-lynx"
- fi
-
- econf ${myconf} || die
- emake || die
-}
-
-src_install() {
- make -C src DESTDIR=${D} install
- make -C man DESTDIR=${D} install
-
- rm -f ${D}/lib/security/pam_dotfile.la
- fperms 4111 /usr/sbin/pam-dotfile-helper
-
- dodoc README
- dohtml doc/*
-}