summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2020-02-12 22:19:46 +0000
committerSergei Trofimovich <slyfox@gentoo.org>2020-02-12 22:32:31 +0000
commit6892ba3cfb7edb5c14f7d87130c9660988b544e9 (patch)
treedf40f17de9dd94fcd815cdb41f85c3510753fe34 /dev-vcs/cvs-fast-export/cvs-fast-export-1.48.ebuild
parentdev-util/radare2: drop old (diff)
downloadgentoo-6892ba3cfb7edb5c14f7d87130c9660988b544e9.tar.gz
gentoo-6892ba3cfb7edb5c14f7d87130c9660988b544e9.tar.bz2
gentoo-6892ba3cfb7edb5c14f7d87130c9660988b544e9.zip
dev-vcs/cvs-fast-export: drop old
Package-Manager: Portage-2.3.88, Repoman-2.3.20 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-vcs/cvs-fast-export/cvs-fast-export-1.48.ebuild')
-rw-r--r--dev-vcs/cvs-fast-export/cvs-fast-export-1.48.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-vcs/cvs-fast-export/cvs-fast-export-1.48.ebuild b/dev-vcs/cvs-fast-export/cvs-fast-export-1.48.ebuild
deleted file mode 100644
index 50babdf251fa..000000000000
--- a/dev-vcs/cvs-fast-export/cvs-fast-export-1.48.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="fast-export history from a CVS repository or RCS collection"
-HOMEPAGE="http://www.catb.org/~esr/cvs-fast-export/"
-SRC_URI="http://www.catb.org/~esr/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
- app-text/asciidoc"
-
-RESTRICT=test # upstream does not ship some tests in tarball
-
-src_prepare() {
- default
-
- tc-export CC
- export prefix=/usr
-
- # respect CC, CFLAGS and LDFLAGS
- sed \
- -e 's/cc /$(CC) $(LDFLAGS) /' \
- -e 's/^CFLAGS += -O/#&/' \
- -e 's/CFLAGS=/CFLAGS+=/' \
- -i Makefile || die
-}
-
-src_compile() {
- # '.adoc.html' rules can't be executed in parallel
- # as they reuse the same 'docbook-xsl.css' file name.
- emake -j1 html
- # Allow full parallelism for the rest
- emake
-}
-
-src_install() {
- default
- dodoc README.adoc
-}