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-admin/newsyslog/
Date: Fri, 28 Apr 2017 21:53:50
Message-Id: 1493416387.23507311ace3c6ca9b405eb80655b837781499ef.monsieurp@gentoo
1 commit: 23507311ace3c6ca9b405eb80655b837781499ef
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 27 21:58:20 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 28 21:53:07 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23507311
7
8 app-admin/newsyslog: clean up old.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 app-admin/newsyslog/newsyslog-1.1.ebuild | 45 --------------------------------
13 1 file changed, 45 deletions(-)
14
15 diff --git a/app-admin/newsyslog/newsyslog-1.1.ebuild b/app-admin/newsyslog/newsyslog-1.1.ebuild
16 deleted file mode 100644
17 index 6a4bcfef9de..00000000000
18 --- a/app-admin/newsyslog/newsyslog-1.1.ebuild
19 +++ /dev/null
20 @@ -1,45 +0,0 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -inherit eutils
25 -
26 -DESCRIPTION="a highly configurable program for managing and archiving log files"
27 -HOMEPAGE="http://www.weird.com/~woods/projects/newsyslog.html"
28 -SRC_URI="ftp://ftp.weird.com/pub/local/${P}.tar.gz"
29 -
30 -LICENSE="MIT"
31 -SLOT="0"
32 -KEYWORDS="alpha ~amd64 hppa ~mips ppc ppc64 ~sparc x86"
33 -IUSE=""
34 -
35 -DEPEND="sys-apps/groff"
36 -RDEPEND="virtual/cron
37 - app-arch/gzip"
38 -
39 -src_unpack() {
40 - unpack ${A}
41 - cd "${S}"
42 - epatch "${FILESDIR}"/newsyslog-html.patch
43 -}
44 -
45 -src_compile() {
46 - local myconf="--with-syslogd_pid=/var/run/syslog.pid"
47 -
48 - has_version 'app-admin/syslog-ng' \
49 - && myconf="--with-syslogd_pid=/var/run/syslog-ng.pid"
50 -
51 - econf \
52 - --with-gzip \
53 - --with-newsyslog_conf=/etc/newsyslog.conf \
54 - ${myconf} || die "econf failed"
55 -
56 - emake || die
57 -}
58 -
59 -src_install() {
60 - emake \
61 - DESTDIR="${D}" \
62 - catmandir="${T}"/dont-install \
63 - install || die "install failed"
64 - dodoc newsyslog.conf AUTHORS ChangeLog INSTALL NEWS README.* ToDo
65 -}