From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3A8EA139083 for ; Tue, 19 Dec 2017 22:51:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C42EE106D; Tue, 19 Dec 2017 22:51:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E0257E106D for ; Tue, 19 Dec 2017 22:51:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C986433DDA5 for ; Tue, 19 Dec 2017 22:51:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E9D0AE8D for ; Tue, 19 Dec 2017 22:51:19 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1513723869.f4e048a57a8de492f4d30c60caf1a3e90e9362b0.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/vlock/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/vlock/vlock-2.2.3.ebuild X-VCS-Directories: app-misc/vlock/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: f4e048a57a8de492f4d30c60caf1a3e90e9362b0 X-VCS-Branch: master Date: Tue, 19 Dec 2017 22:51:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6d601318-5b2e-45e8-9778-188ab35f1b74 X-Archives-Hash: a6d712bdd382bc87409c0b213562cee5 commit: f4e048a57a8de492f4d30c60caf1a3e90e9362b0 Author: Patrice Clement gentoo org> AuthorDate: Tue Dec 19 22:50:47 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Tue Dec 19 22:51:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4e048a5 app-misc/vlock: clean up old. Package-Manager: Portage-2.3.13, Repoman-2.3.3 app-misc/vlock/vlock-2.2.3.ebuild | 52 --------------------------------------- 1 file changed, 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 8f2c3117c2f..00000000000 --- 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 -}