summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2018-06-02 20:34:38 -0400
committerAaron Bauman <bman@gentoo.org>2018-06-02 22:58:55 -0400
commitf3902a07d03a60f8a2d52f28cc04f39cab2badf7 (patch)
tree4fdf2bcbe6e2de004cec1cce98556be18b364432
parentmail-filter/assp: drop old EAPI (diff)
downloadgentoo-f3902a07.tar.gz
gentoo-f3902a07.tar.bz2
gentoo-f3902a07.zip
dev-vcs/cvsd: drop old EAPI
Package-Manager: Portage-2.3.40, Repoman-2.3.9
-rw-r--r--dev-vcs/cvsd/Manifest1
-rw-r--r--dev-vcs/cvsd/cvsd-1.0.7.ebuild45
2 files changed, 0 insertions, 46 deletions
diff --git a/dev-vcs/cvsd/Manifest b/dev-vcs/cvsd/Manifest
index 27048f510a65..b8eb5a2a108a 100644
--- a/dev-vcs/cvsd/Manifest
+++ b/dev-vcs/cvsd/Manifest
@@ -1,2 +1 @@
DIST cvsd-1.0.17.tar.gz 247026 BLAKE2B 82162d74bf63f8eae2141c07f97bbe31a51ee8aeabcf097b2a6aa33a1dfd65aaf6c48017bc11bd6494dac8e9f4f12d9905d1f27fe11361e14910925455ee06d4 SHA512 beea48a288ff580e6cc7fdcd1997b7af01e7ea1b1c185006c92cd7758e7e557d2b1b4fc820bd03b787ebc74b5fa9ef661584d2c523480cf6418f452f5f929c9d
-DIST cvsd-1.0.7.tar.gz 193964 BLAKE2B 0eb91bf9e7c47920c14d1290df0572af96432e33a98ca5f3f21fc5b1e4ecd257c47cefda372dd891b6f6088a21650fde92863dd338f847486606456ae40e75b6 SHA512 6ffc3d554e43d50c0fa4861b3f6cc6c696298d882074f017da80068f7afbca3361e5d88fbd13fcadf930afee2df8d6a0777710bc0f992dd208b7674595cc8ea1
diff --git a/dev-vcs/cvsd/cvsd-1.0.7.ebuild b/dev-vcs/cvsd/cvsd-1.0.7.ebuild
deleted file mode 100644
index d82be30964cd..000000000000
--- a/dev-vcs/cvsd/cvsd-1.0.7.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils user
-
-DESCRIPTION="CVS pserver daemon"
-HOMEPAGE="http://ch.tudelft.nl/~arthur/cvsd/"
-SRC_URI="http://ch.tudelft.nl/~arthur/cvsd/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86"
-IUSE="tcpd"
-
-DEPEND="tcpd? ( >=sys-apps/tcp-wrappers-7.6 )"
-RDEPEND="${DEPEND}
- >=dev-lang/perl-5.8.0
- >=dev-vcs/cvs-1.11.6"
-
-pkg_setup() {
- enewgroup cvsd
- enewuser cvsd -1 -1 /var/lib/cvsd cvsd
-}
-
-src_compile() {
- econf $(use_with tcpd libwrap) || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
- dosed 's:^Repos:# Repos:g' /etc/cvsd/cvsd.conf
- keepdir /var/lib/cvsd
-
- dodoc AUTHORS ChangeLog FAQ INSTALL NEWS README TODO
-
- newinitd "${FILESDIR}"/cvsd.rc6 ${PN}
-}
-
-pkg_postinst() {
- elog "To configure cvsd please read the README in "
- elog "/usr/share/doc/${PF}/"
-}