summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2005-07-02 14:07:41 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2005-07-02 14:07:41 +0000
commitedaa24bf2507d601d82e04c93791b64a9186d315 (patch)
tree00e1c3c3c9be8c90ab264eb8a4b3f7e90fa59e6b /sys-auth/pam_dotfile
parentAdded new beta version. (diff)
downloadgentoo-2-edaa24bf2507d601d82e04c93791b64a9186d315.tar.gz
gentoo-2-edaa24bf2507d601d82e04c93791b64a9186d315.tar.bz2
gentoo-2-edaa24bf2507d601d82e04c93791b64a9186d315.zip
Removed backup file added by error by epkgmove.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'sys-auth/pam_dotfile')
-rw-r--r--sys-auth/pam_dotfile/ChangeLog6
-rw-r--r--sys-auth/pam_dotfile/pam_dotfile-0.7-r1.ebuild~54
2 files changed, 5 insertions, 55 deletions
diff --git a/sys-auth/pam_dotfile/ChangeLog b/sys-auth/pam_dotfile/ChangeLog
index 1769f42b89b4..25ea5069abb1 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-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_dotfile/ChangeLog,v 1.1 2005/07/02 14:04:58 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_dotfile/ChangeLog,v 1.2 2005/07/02 14:07:41 flameeyes Exp $
+
+ 02 Jul 2005; Diego Pettenò <flameeyes@gentoo.org>
+ -pam_dotfile-0.7-r1.ebuild~:
+ Removed backup file added by error by epkgmove.
02 Jul 2005; Diego Pettenò <flameeyes@gentoo.org>
+pam_dotfile-0.7-r1.ebuild~, +metadata.xml, +pam_dotfile-0.7.ebuild,
diff --git a/sys-auth/pam_dotfile/pam_dotfile-0.7-r1.ebuild~ b/sys-auth/pam_dotfile/pam_dotfile-0.7-r1.ebuild~
deleted file mode 100644
index d9363477e21c..000000000000
--- a/sys-auth/pam_dotfile/pam_dotfile-0.7-r1.ebuild~
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2005 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-r1.ebuild~,v 1.1 2005/07/02 14:04:58 flameeyes Exp $
-
-inherit eutils pam
-
-MY_P="${P/_beta/beta}"
-S="${WORKDIR}/${MY_P}"
-
-PATCHLEVEL="1"
-DESCRIPTION="pam module to allow password-storing in \$HOME/dotfiles"
-HOMEPAGE="http://www.stud.uni-hamburg.de/users/lennart/projects/pam_dotfile/"
-SRC_URI="http://www.stud.uni-hamburg.de/users/lennart/projects/pam_dotfile/${MY_P}.tar.gz
- http://digilander.libero.it/dgp85/gentoo/${PN}-patches-${PATCHLEVEL}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc"
-DEPEND="doc? ( www-client/lynx )
- virtual/pam"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- EPATCH_SUFFIX="patch"
- epatch ${WORKDIR}/${PV}
- sed -i -e 's:./configure:#./configure:' ${S}/bootstrap.sh
- sed -i -e "s:aclocal:aclocal -I ${WORKDIR}/${PV}/m4:" ${S}/bootstrap.sh
-
- sh bootstrap.sh
-}
-
-src_compile() {
- local myconf
-
- econf \
- $(use_enable doc lynx) \
- "--with-pammoddir=$(getpam_mod_dir)" \
- || die
- emake || die
-}
-
-src_install() {
- make -C src DESTDIR=${D} install
- make -C man DESTDIR=${D} install
-
- rm -f ${D}/$(getpam_mod_dir)/pam_dotfile.la
- fperms 4111 /usr/sbin/pam-dotfile-helper
-
- dodoc README
- dohtml doc/*
-}