Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/ptlink-opm/
Date: Tue, 03 May 2016 00:02:37
Message-Id: 1462232644.da6c1708cedd2e5624c6886f341607ee79581547.wizardedit@gentoo
1 commit: da6c1708cedd2e5624c6886f341607ee79581547
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 2 23:44:04 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Mon May 2 23:44:04 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da6c1708
7
8 net-irc/ptlink-opm: remove old ebuilds
9
10 Package-Manager: portage-2.2.26
11
12 net-irc/ptlink-opm/ptlink-opm-1.3.1.ebuild | 49 ------------------------------
13 1 file changed, 49 deletions(-)
14
15 diff --git a/net-irc/ptlink-opm/ptlink-opm-1.3.1.ebuild b/net-irc/ptlink-opm/ptlink-opm-1.3.1.ebuild
16 deleted file mode 100644
17 index f5f64ee..0000000
18 --- a/net-irc/ptlink-opm/ptlink-opm-1.3.1.ebuild
19 +++ /dev/null
20 @@ -1,49 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -inherit eutils user
26 -
27 -MY_P="PTlink.OPM${PV}"
28 -
29 -DESCRIPTION="PTlink Open Proxy Monitor"
30 -HOMEPAGE="http://www.ptlink.net/"
31 -SRC_URI="ftp://ftp.sunsite.dk/projects/ptlink/ptopm/${MY_P}.tar.gz"
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="~x86 ~ppc"
35 -IUSE=""
36 -
37 -RDEPEND=""
38 -DEPEND=">=sys-apps/sed-4"
39 -
40 -S=${WORKDIR}/${MY_P}
41 -
42 -src_compile() {
43 - econf \
44 - --sysconfdir=/etc/ptlink-opm \
45 - --localstatedir=/var/lib/ptlink-opm \
46 - || die "econf failed"
47 - emake || die "emake failed"
48 -}
49 -
50 -src_install() {
51 - newbin src/ptopm ptlink-opm || die "newbin failed"
52 -
53 - insinto /etc/ptlink-opm
54 - newins samples/ptopm.dconf.sample ptopm.dconf || die "newins failed"
55 - doins samples/scan_rules.dconf || die "doins failed"
56 -
57 - keepdir /var/{lib,log}/ptlink-opm || die "keepdir failed"
58 - dosym /var/log/ptlink-opm /var/lib/ptlink-opm/log || die "dosym failed"
59 -
60 - dodoc CHANGES README || die "dodoc failed"
61 -
62 - newinitd ${FILESDIR}/ptlink-opm.init.d ptlink-opm || die "newinitd failed"
63 - newconfd ${FILESDIR}/ptlink-opm.conf.d ptlink-opm || die "newconfd failed"
64 -}
65 -
66 -pkg_postinst() {
67 - enewuser ptlink-opm
68 - chown ptlink-opm ${ROOT}/var/{log,lib}/ptlink-opm
69 -}