blob: 1255f9e9a4d379e3db902498fc8a591668dd58a7 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-1.7.2.ebuild,v 1.2 2005/02/22 17:07:50 hanno Exp $
DESCRIPTION="A multi-platform helper library for other libraries"
HOMEPAGE="http://gwenhywfar.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="x86 ~amd64 ~sparc ~alpha ~ppc"
IUSE="debug ssl doc"
DEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )
sys-libs/ncurses
doc? ( app-doc/doxygen )"
S=${WORKDIR}/${P}
src_compile() {
if use doc; then
APIDOC="--with-docpath=/usr/share/doc/${P}/apidoc"
fi
econf \
`use_enable ssl` \
`use_enable debug` \
`use_enable doc full-doc` \
${APIDOC} || die "configure failed"
emake || die "emake failed"
if use doc; then
emake srcdoc || die "Building the api-doc failed"
fi
}
src_install() {
make DESTDIR=${D} install || die
dodoc README* AUTHORS ABOUT-NLS COPYING ChangeLog INSTALL TODO
if use doc; then
make DESTDIR=${D} install-srcdoc || die "Installing the API-Doc failed"
fi
}
|