blob: dc725f21ef7c4a6ff1f670d77a57c5fd3009b958 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/devmanual/devmanual-9999.ebuild,v 1.4 2013/02/07 21:28:50 ulm Exp $
EAPI=5
inherit git-2
DESCRIPTION="The Gentoo Development Guide"
HOMEPAGE="http://devmanual.gentoo.org/"
EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/devmanual.git"
LICENSE="CC-BY-SA-2.0"
SLOT="0"
# Live ebuild but does not build anycode. It should work everywhere
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh
~sparc ~x86"
IUSE=""
DEPEND="dev-libs/libxslt
media-gfx/imagemagick[truetype]"
src_install() {
dohtml -r *
}
pkg_postinst() {
elog
elog "In order to browse the Gentoo Development Guide in"
elog "offline mode, point your browser to the following url:"
elog "/usr/share/doc/devmanual-9999/html/index.html"
elog
elog "The offline version of the devmanual does not include the"
elog "documentation for the eclasses. If you need it, then emerge"
elog "the following package:"
elog
elog "app-portage/eclass-manpages"
elog
}
|