blob: 93920988a79e02d8b0fff98b5c6b17e1b690f072 (
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
35
36
37
38
39
40
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
# building the manual depends on dblatex, which is not stable as of yet
# only the lts.conf man page is generated
# the ebuild version date coincides with the latest bzr revision of lts.conf.xml
EAPI="2"
EBZR_REVISION="129"
EBZR_REPO_URI="http://bazaar.launchpad.net/~ltsp-docwriters/ltsp/ltsp-docs-trunk"
inherit autotools bzr
DESCRIPTION="LTSP documentation, only lts.conf manpage for now."
HOMEPAGE="http://www.ltsp.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 sparc x86"
DEPEND="app-text/xmlto
app-text/docbook-xml-dtd:4.5"
RDEPEND=""
src_unpack() {
bzr_src_unpack
}
src_prepare() {
# removing dblatex check error
epatch "${FILESDIR}/configure.patch"
# removing manual build target
epatch "${FILESDIR}/makefile.in.patch"
}
src_install() {
doman lts.conf.5
}
|