forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
svn2cl-0.12.ebuild
38 lines (31 loc) · 960 Bytes
/
svn2cl-0.12.ebuild
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
35
36
37
38
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
inherit eutils
DESCRIPTION="Create a GNU-style ChangeLog from subversion's svn log --xml output"
HOMEPAGE="http://ch.tudelft.nl/~arthur/svn2cl/"
SRC_URI="${HOMEPAGE}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~mips ~ppc x86"
IUSE=""
RDEPEND="dev-libs/libxslt
dev-vcs/subversion"
src_unpack() {
unpack ${A}
cd "${S}"
# the wrapper script looks for the xsl files in the
# same directory as the script.
epatch "${FILESDIR}"/0.9-wrapper.patch
}
src_install() {
newbin svn2cl.sh svn2cl || die "failed to install wrapper script"
insinto /usr/share/svn2cl
doins svn2cl.xsl svn2html.xsl || die
dodoc README NEWS TODO ChangeLog authors.xml svn2html.css || die
doman svn2cl.1 || die
}
pkg_postinst() {
einfo "You can find samples of svn2html.css and authors.xml in"
einfo "/usr/share/doc/${PF}/"
einfo "Read man page for details."
}