From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 20A41138222 for ; Wed, 4 May 2016 00:11:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AED6E21C0B6; Wed, 4 May 2016 00:10:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 4598421C0B1 for ; Wed, 4 May 2016 00:10:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 516523406C0 for ; Wed, 4 May 2016 00:10:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3766967 for ; Wed, 4 May 2016 00:10:33 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1462320517.667b7bd4b3c3a5f49725c22dea17adb80a0cf3f1.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/linux-identd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/linux-identd/linux-identd-1.3-r1.ebuild X-VCS-Directories: net-misc/linux-identd/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 667b7bd4b3c3a5f49725c22dea17adb80a0cf3f1 X-VCS-Branch: master Date: Wed, 4 May 2016 00:10:33 +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: 65fce9b9-808c-4e87-b9c2-eff03d84c6bf X-Archives-Hash: 5a5206a933f077080e5ed55a40a6a548 commit: 667b7bd4b3c3a5f49725c22dea17adb80a0cf3f1 Author: Austin English gentoo org> AuthorDate: Wed May 4 00:02:23 2016 +0000 Commit: Austin English gentoo org> CommitDate: Wed May 4 00:08:37 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=667b7bd4 net-misc/linux-identd: remove old version Package-Manager: portage-2.2.26 net-misc/linux-identd/linux-identd-1.3-r1.ebuild | 36 ------------------------ 1 file changed, 36 deletions(-) diff --git a/net-misc/linux-identd/linux-identd-1.3-r1.ebuild b/net-misc/linux-identd/linux-identd-1.3-r1.ebuild deleted file mode 100644 index d6607ef..0000000 --- a/net-misc/linux-identd/linux-identd-1.3-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit toolchain-funcs - -DESCRIPTION="A real IDENT daemon for linux" -HOMEPAGE="http://www.fukt.bsnet.se/~per/identd/" -SRC_URI="http://www.fukt.bsnet.se/~per/identd/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ~hppa ia64 ~mips ppc sparc x86" -IUSE="xinetd" - -DEPEND="" -RDEPEND="xinetd? ( sys-apps/xinetd )" - -src_compile() { - emake CC="$(tc-getCC)" CEXTRAS="${CFLAGS}" -} - -src_install() { - dodir /etc/init.d /usr/sbin /usr/share/man/man8 - dodoc README ChangeLog - emake install DESTDIR="${D}" MANDIR=/usr/share/man - - if use xinetd; then - insinto /etc/xinetd.d - newins "${FILESDIR}"/identd.xinetd identd - else - newinitd "${FILESDIR}"/identd.init identd - fi -}