diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2019-04-26 16:23:50 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2019-04-26 16:24:08 +0100 |
commit | d2f8aa85e22c399baf897fb8d45bf0a3ec667cc1 (patch) | |
tree | 9490815f87fcfc49545b30152ce456868a5f7ef4 /dev-vcs/cvs-fast-export/cvs-fast-export-1.48.ebuild | |
parent | app-admin/hcloud: regenerate Manifest, wrt bug #684422 (diff) | |
download | gentoo-d2f8aa85e22c399baf897fb8d45bf0a3ec667cc1.tar.gz gentoo-d2f8aa85e22c399baf897fb8d45bf0a3ec667cc1.tar.bz2 gentoo-d2f8aa85e22c399baf897fb8d45bf0a3ec667cc1.zip |
dev-vcs/cvs-fast-export: bump up to 1.48
Package-Manager: Portage-2.3.62, Repoman-2.3.12
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.ebuild | 48 |
1 files changed, 48 insertions, 0 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 new file mode 100644 index 000000000000..50babdf251fa --- /dev/null +++ b/dev-vcs/cvs-fast-export/cvs-fast-export-1.48.ebuild @@ -0,0 +1,48 @@ +# 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 +} |