summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2017-04-27 23:58:20 +0200
committerPatrice Clement <monsieurp@gentoo.org>2017-04-28 23:53:07 +0200
commit23507311ace3c6ca9b405eb80655b837781499ef (patch)
treeaccecadf237d75ad34242aac3dcd16d820030494 /app-admin
parentapp-admin/newsyslog: stable for amd64 and the remaining arches using the ALLA... (diff)
downloadgentoo-23507311ace3c6ca9b405eb80655b837781499ef.tar.gz
gentoo-23507311ace3c6ca9b405eb80655b837781499ef.tar.bz2
gentoo-23507311ace3c6ca9b405eb80655b837781499ef.zip
app-admin/newsyslog: clean up old.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/newsyslog/newsyslog-1.1.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/app-admin/newsyslog/newsyslog-1.1.ebuild b/app-admin/newsyslog/newsyslog-1.1.ebuild
deleted file mode 100644
index 6a4bcfef9de0..000000000000
--- a/app-admin/newsyslog/newsyslog-1.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils
-
-DESCRIPTION="a highly configurable program for managing and archiving log files"
-HOMEPAGE="http://www.weird.com/~woods/projects/newsyslog.html"
-SRC_URI="ftp://ftp.weird.com/pub/local/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="alpha ~amd64 hppa ~mips ppc ppc64 ~sparc x86"
-IUSE=""
-
-DEPEND="sys-apps/groff"
-RDEPEND="virtual/cron
- app-arch/gzip"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/newsyslog-html.patch
-}
-
-src_compile() {
- local myconf="--with-syslogd_pid=/var/run/syslog.pid"
-
- has_version 'app-admin/syslog-ng' \
- && myconf="--with-syslogd_pid=/var/run/syslog-ng.pid"
-
- econf \
- --with-gzip \
- --with-newsyslog_conf=/etc/newsyslog.conf \
- ${myconf} || die "econf failed"
-
- emake || die
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- catmandir="${T}"/dont-install \
- install || die "install failed"
- dodoc newsyslog.conf AUTHORS ChangeLog INSTALL NEWS README.* ToDo
-}