summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2017-12-19 23:50:47 +0100
committerPatrice Clement <monsieurp@gentoo.org>2017-12-19 23:51:09 +0100
commitf4e048a57a8de492f4d30c60caf1a3e90e9362b0 (patch)
tree58e8a82f23ca7d7f61fd9324bc4cfa26b22f7c3f /app-misc/vlock
parentapp-misc/vlock: mark stable for the remaining arches using the ALLARCHES policy. (diff)
downloadgentoo-f4e048a57a8de492f4d30c60caf1a3e90e9362b0.tar.gz
gentoo-f4e048a57a8de492f4d30c60caf1a3e90e9362b0.tar.bz2
gentoo-f4e048a57a8de492f4d30c60caf1a3e90e9362b0.zip
app-misc/vlock: clean up old.
Package-Manager: Portage-2.3.13, Repoman-2.3.3
Diffstat (limited to 'app-misc/vlock')
-rw-r--r--app-misc/vlock/vlock-2.2.3.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/app-misc/vlock/vlock-2.2.3.ebuild b/app-misc/vlock/vlock-2.2.3.ebuild
deleted file mode 100644
index 8f2c3117c2fc..000000000000
--- a/app-misc/vlock/vlock-2.2.3.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-inherit eutils pam toolchain-funcs multilib user
-
-DESCRIPTION="A console screen locker"
-HOMEPAGE="http://cthulhu.c3d2.de/~toidinamai/vlock/vlock.html"
-SRC_URI="http://cthulhu.c3d2.de/~toidinamai/vlock/archive/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86"
-IUSE="pam test"
-
-RDEPEND="pam? ( sys-libs/pam )"
-DEPEND="${RDEPEND}
- test? ( dev-util/cunit )"
-
-pkg_setup() {
- enewgroup vlock
-}
-
-src_prepare() {
- epatch \
- "${FILESDIR}/${PN}-2.2.2-asneeded.patch" \
- "${FILESDIR}/${PN}-2.2.2-test_process.patch"
-}
-
-src_configure() {
- if use pam; then
- myconf="--enable-pam"
- else
- myconf="--enable-shadow"
- fi
- # this package has handmade configure system which fails with econf...
- ./configure --prefix=/usr \
- --mandir=/usr/share/man \
- --libdir=/usr/$(get_libdir) \
- ${myconf} \
- CC="$(tc-getCC)" \
- LD="$(tc-getLD)" \
- CFLAGS="${CFLAGS} -pedantic -std=gnu99" \
- LDFLAGS="${LDFLAGS}" || die "configure failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- use pam && pamd_mimic_system vlock auth
- dodoc ChangeLog PLUGINS README README.X11 SECURITY STYLE TODO
-}