dev-vcs/cvs-fast-export: bump.

Package-Manager: portage-2.2.28
This commit is contained in:
Robin H. Johnson
2016-04-04 16:07:12 -07:00
parent a093092318
commit 7b7346b36c
2 changed files with 41 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST cvs-fast-export-1.26.tar.gz 668913 SHA256 ebca4b19ba9045bc1b733f729042d7a98dd6675dac3030239f718b13a99949ed SHA512 81d240ae387b4231415335b4a0d294ae81f6ecbc97077d92a1738aca17642b9a7e7ee3f7806890ceafc5c65c50d4370c39c36ee21c927a4fcd30ebfa3bbe472e WHIRLPOOL 1a59b9e5e0b30d935f463a58873c3554315d0d512b4d9482d5fc2341bdb194b16bd017a444f9e21f8ce2181a3bcf6e85aa09584467b1a9e6845ed92b8a75c4f8
DIST cvs-fast-export-1.38.tar.gz 396524 SHA256 7106c2e85b9fca680230879547dc102186637bd1fbcc5a913127483603d9731a SHA512 ed2aabc417b093c1742ea15bd21855c600a46a5ab72758d15bab24672b6e648531416a6b28c17e6faedd67b4c697b004ba3316cd65cb0ec638566c26878e9428 WHIRLPOOL aba8deba5f3ef8ef7bf38dedf7cd941c24ba709083ff94cfa6c45ae8ebd42f789d1c44276521a752a7b3869d20537964bd05a0689d0ba90a7b180abcc5384bd1

View File

@@ -0,0 +1,40 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
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 them in tarball
src_prepare() {
tc-export CC
export prefix=/usr
# respect CC, CFLAGS and LDFLAGS. don't install cvssync
sed \
-e 's/cc /$(CC) $(LDFLAGS) /' \
-e 's/^CFLAGS += -O/#&/' \
-e 's/CFLAGS=/CFLAGS+=/' \
-e 's/$(INSTALL).*cvssync/#&/g' \
-i Makefile || die
}
src_install() {
default
dodoc README
}