summaryrefslogtreecommitdiff
blob: 1ea0ebea860fb3019fc32baeba1ae543ec7f2345 (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
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

DESCRIPTION="a tool to write option parsing code for C programs."
HOMEPAGE="http://www.gnu.org/software/gengetopt/"
SRC_URI="ftp://ftp.gnu.org/gnu/${PN}/${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples"

DEPEND=""
RDEPEND=""

src_install() {
	cd src
	emake DESTDIR="${D}" install || die "emake install failed"

	cd "${S}"
	dodoc AUTHORS ChangeLog NEWS README THANKS TODO

	cd doc
	dohtml *.html
	doinfo *.info
	doman *.1
	if use examples; then
		docinto examples
		dodoc sample{1,2}.ggo main{1.cc,2.c} cmdline{1,2}.{c,h} README.example
	fi
}