diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-06-28 02:17:01 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-06-28 02:17:01 +0000 |
commit | 58c7fd204f39e9a4938ebc0f9238af0efdf81438 (patch) | |
tree | 87b9a1492da22e7cd1be194723d2e49855f890fc /x11-misc | |
parent | Remove old. (diff) | |
download | gentoo-2-58c7fd204f39e9a4938ebc0f9238af0efdf81438.tar.gz gentoo-2-58c7fd204f39e9a4938ebc0f9238af0efdf81438.tar.bz2 gentoo-2-58c7fd204f39e9a4938ebc0f9238af0efdf81438.zip |
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/alock/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/alock/alock-60-r3.ebuild | 60 |
2 files changed, 5 insertions, 62 deletions
diff --git a/x11-misc/alock/ChangeLog b/x11-misc/alock/ChangeLog index bf3bc6b3baf8..9087aae9902b 100644 --- a/x11-misc/alock/ChangeLog +++ b/x11-misc/alock/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/alock -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/alock/ChangeLog,v 1.21 2011/07/13 19:49:48 maekke Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/alock/ChangeLog,v 1.22 2015/06/28 02:17:01 mrueg Exp $ + + 28 Jun 2015; Manuel Rüger <mrueg@gentoo.org> -alock-60-r3.ebuild: + Remove old. 13 Jul 2011; Markus Meier <maekke@gentoo.org> alock-94.ebuild: x86 stable, bug #371979 diff --git a/x11-misc/alock/alock-60-r3.ebuild b/x11-misc/alock/alock-60-r3.ebuild deleted file mode 100644 index 1e1919ae3555..000000000000 --- a/x11-misc/alock/alock-60-r3.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/alock/alock-60-r3.ebuild,v 1.9 2010/06/05 10:50:59 hwoarang Exp $ - -EAPI="2" - -inherit eutils - -DESCRIPTION="locks the local X display until a password is entered" -HOMEPAGE="http://code.google.com/p/alock/ - http://darkshed.net/projects/alock" -SRC_URI="http://alock.googlecode.com/files/alock-svn-${PV}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="imlib pam" - -DEPEND="x11-libs/libX11 - x11-libs/libXext - x11-libs/libXpm - x11-libs/libXrender - x11-libs/libXcursor - imlib? ( media-libs/imlib2[X] ) - pam? ( virtual/pam )" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/alock-svn-${PV} - -src_prepare() { - sed -i 's|\$(DESTDIR)\$(prefix)/man|\$(DESTDIR)\$(prefix)/share/man|g' \ - "${S}"/Makefile || die "sed failed" -} - -src_configure() { - econf --with-all \ - $(use_with pam) \ - $(use_with imlib imlib2) \ - || die "configure failed" -} - -src_install() { - dobin src/alock || die - doman alock.1 || die - dodoc README.txt CHANGELOG.txt || die - - insinto /usr/share/alock/xcursors - doins contrib/xcursor-* || die - - insinto /usr/share/alock/bitmaps - doins bitmaps/* || die -} - -pkg_postinst() { - if ! use pam; then - einfo "pam support disabled" - einfo "In order to authenticate against /etc/passwd, " - einfo "/usr/bin/alock will need to be SUID" - fi -} |