blob: 8b581fe22740e82c322f170e8e3fa62b0307f3aa (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-2.4.0.ebuild,v 1.8 2007/09/20 14:33:55 armin76 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="amd64 ppc sparc x86"
IUSE="debug ssl doc ncurses"
DEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )
sys-libs/ncurses
doc? ( app-doc/doxygen )
ncurses? ( sys-libs/ncurses )"
src_compile() {
econf \
$(use_enable ssl) \
$(use_enable debug) \
$(use_enable doc full-doc) \
$(use_enable ncurses gwenui) \
--with-docpath=/usr/share/doc/${PF}/apidoc || die "configure failed"
emake || die "emake failed"
if use doc ; then
emake srcdoc || die "emake failed"
fi
}
src_install() {
einstall || die
dodoc README* AUTHORS ChangeLog TODO
if use doc ; then
make DESTDIR="${D}" install-srcdoc || die "make isntall-srcdoc failed"
fi
}
|