summaryrefslogtreecommitdiff
path: root/dev-vcs/cssc/cssc-1.4.0.ebuild
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2020-12-17 09:46:38 -0500
committerAaron Bauman <bman@gentoo.org>2020-12-17 09:50:19 -0500
commit0570973d828e1338ee116bece93bc7dce7a1ba92 (patch)
treee94dd0d1d9b759f13d63bd172bf2e4dd56b26b1f /dev-vcs/cssc/cssc-1.4.0.ebuild
parent17d3528fc1097e69bff7765a0a15d57483cef43b (diff)
downloadgentoo-0570973d828e1338ee116bece93bc7dce7a1ba92.tar.gz
gentoo-0570973d828e1338ee116bece93bc7dce7a1ba92.tar.bz2
gentoo-0570973d828e1338ee116bece93bc7dce7a1ba92.zip
dev-vcs/cssc: drop old
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-vcs/cssc/cssc-1.4.0.ebuild')
-rw-r--r--dev-vcs/cssc/cssc-1.4.0.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/dev-vcs/cssc/cssc-1.4.0.ebuild b/dev-vcs/cssc/cssc-1.4.0.ebuild
deleted file mode 100644
index e1e1659be646..000000000000
--- a/dev-vcs/cssc/cssc-1.4.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils
-
-# Switch to ^^ when we switch to EAPI=6.
-#MY_PN="${PN^^}"
-MY_PN="CSSC"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="The GNU Project's replacement for SCCS"
-SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
-HOMEPAGE="https://www.gnu.org/software/cssc/"
-SLOT="0"
-LICENSE="GPL-3"
-
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="test valgrind"
-RESTRICT="!test? ( test )"
-
-DEPEND="
- test? ( valgrind? ( dev-util/valgrind ) )
-"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- epatch \
- "${FILESDIR}"/${PN}-1.3.0-gcc47.patch \
- "${FILESDIR}"/${P}-config.patch \
- "${FILESDIR}"/${P}-m4.patch \
- "${FILESDIR}"/${P}-test-large.patch
-
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use test && use_with valgrind) \
- --enable-binary
-}
-
-src_test() {
- if [[ ${froobUID} = 0 ]]; then
- einfo "The test suite can not be run as root"
- else
- emake check
- fi
-}