Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/away/
Date: Sun, 08 Apr 2018 22:42:26
Message-Id: 1523227297.09da6b9dce973dd00d7f0e751a6920a5833bc26c.monsieurp@gentoo
1 commit: 09da6b9dce973dd00d7f0e751a6920a5833bc26c
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Apr 8 16:41:44 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 8 22:41:37 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09da6b9d
7
8 app-misc/away: remove old.
9
10 app-misc/away/away-0.9.5-r1.ebuild | 38 --------------------------------------
11 1 file changed, 38 deletions(-)
12
13 diff --git a/app-misc/away/away-0.9.5-r1.ebuild b/app-misc/away/away-0.9.5-r1.ebuild
14 deleted file mode 100644
15 index 1b481dedd1b..00000000000
16 --- a/app-misc/away/away-0.9.5-r1.ebuild
17 +++ /dev/null
18 @@ -1,38 +0,0 @@
19 -# Copyright 1999-2008 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -inherit pam toolchain-funcs flag-o-matic
23 -
24 -DESCRIPTION="Terminal locking program with few additional features"
25 -HOMEPAGE="http://unbeatenpath.net/software/away/"
26 -SRC_URI="http://unbeatenpath.net/software/away/${P}.tar.bz2"
27 -
28 -LICENSE="GPL-2"
29 -SLOT="0"
30 -KEYWORDS="amd64 ppc ppc64 sparc x86"
31 -IUSE=""
32 -
33 -RDEPEND=">=sys-libs/pam-0.75"
34 -DEPEND="${RDEPEND}"
35 -
36 -src_unpack() {
37 - unpack ${A}
38 -
39 - sed -i -e '/-o \$(BINARY)/d' \
40 - -e 's:LIBS:LDLIBS:' \
41 - "${S}"/Makefile || die "Makefile fix failed"
42 -}
43 -src_compile() {
44 - append-flags -pthread
45 -
46 - emake CFLAGS="${CFLAGS}" CC="$(tc-getCC)" || die
47 -}
48 -
49 -src_install() {
50 - dobin away || die "dobin failed"
51 -
52 - pamd_mimic_system away auth
53 -
54 - doman doc/*
55 - dodoc BUGS AUTHORS NEWS README TODO data/awayrc || die "dodoc failed"
56 -}