blob: 7b0f87757cf5605ef659e4033e136604cbdd1036 (
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
|
# Copyright 1999-2010 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
EAPI="2"
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=""
DEPEND="app-text/xmlto"
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
}
|