blob: 039bf1cd4f817d16839a7c27460aa6b96f89d118 (
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
41
42
43
44
45
46
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
ECVS_SERVER="cvs.savannah.gnu.org:/cvsroot/gnulib"
ECVS_MODULE="gnulib"
inherit eutils cvs
DESCRIPTION="Gnulib is a library of common routines intended to be shared at the source level."
HOMEPAGE="http://www.gnu.org/software/gnulib"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND=""
RDEPEND=""
S="${WORKDIR}"/${PN}
src_compile() {
emake -C doc info html || die "emake failed"
}
src_install() {
dodoc README COPYING ChangeLog
dohtml doc/gnulib.html
doinfo doc/gnulib.info
insinto /usr/share/${PN}
doins -r lib
doins -r m4
doins -r modules
# remove CVS dirs
find "${D}" -name CVS -type d -print0 | xargs -0 rm -r
# install the real script
exeinto /usr/share/${PN}
doexe gnulib-tool
# create and install the wrapper
make_wrapper gnulib-tool ./gnulib-tool /usr/share/${PN}
}
|