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 3D143139696 for ; Fri, 28 Apr 2017 21:53:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76FA7E0E17; Fri, 28 Apr 2017 21:53:47 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 498D9E0E17 for ; Fri, 28 Apr 2017 21:53:47 +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 4C234341748 for ; Fri, 28 Apr 2017 21:53:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BC5C7443 for ; Fri, 28 Apr 2017 21:53:43 +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: <1493416387.23507311ace3c6ca9b405eb80655b837781499ef.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/newsyslog/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/newsyslog/newsyslog-1.1.ebuild X-VCS-Directories: app-admin/newsyslog/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 23507311ace3c6ca9b405eb80655b837781499ef X-VCS-Branch: master Date: Fri, 28 Apr 2017 21:53:43 +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: 82260442-641f-48f6-90eb-6576ec9e02ff X-Archives-Hash: 78d802757de07326c84925fc7cbcb260 commit: 23507311ace3c6ca9b405eb80655b837781499ef Author: Patrice Clement gentoo org> AuthorDate: Thu Apr 27 21:58:20 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Fri Apr 28 21:53:07 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23507311 app-admin/newsyslog: clean up old. Package-Manager: Portage-2.3.3, Repoman-2.3.1 app-admin/newsyslog/newsyslog-1.1.ebuild | 45 -------------------------------- 1 file changed, 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 6a4bcfef9de..00000000000 --- 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 -}