blob: 21aff844acc432719310ddf2d4acfcec24671582 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
DESCRIPTION="Pro Git: an open-source book on Git by Scott Chacon and Ben Straub (English HTML version)"
HOMEPAGE="https://progit.org/"
SRC_URI="https://progit2.s3.amazonaws.com/en/2015-10-27-6c452/progit-en.904.zip"
LICENSE="CC-BY-NC-SA-3.0"
SLOT="0"
KEYWORDS="~*"
DEPEND=""
RDEPEND="${DEPEND}"
S="${WORKDIR}"
src_prepare() {
# Get rid of unneeded files:
rm -rf *.json Gemfile* diagram-source Rakefile theme/epub theme/mobi theme/pdf
# Fix some HTML brackets:
sed -i -e 's:<code class="p">\&<\/code>lt<code class="p">;:\<:g' *.html || die "sed failed"
sed -i -e 's:<code class="p">\&<\/code>gt<code class="p">;:\>:g' *.html || die "sed failed"
sed -i -e 's:\&lt;:\<:g' *.html || die "sed failed"
sed -i -e 's:\&gt;:\>:g' *.html || die "sed failed"
}
# Install the data files as well as the libraries:
src_install() {
insinto /usr/share/doc/pro-git
doins -r "${WORKDIR}"/*
}
|