blob: e0c6db7dd7b1f8abadf4b591a1e297de3e9bdba3 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/bar/bar-1.10.3.ebuild,v 1.2 2005/02/05 10:00:43 ka0ttic Exp $
DESCRIPTION="Console Progress Bar"
HOMEPAGE="http://clpbar.sourceforge.net/"
SRC_URI="mirror://sourceforge/clpbar/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="doc"
DEPEND="doc? ( >=app-doc/doxygen-1.3.5 )"
RDEPEND=""
src_compile() {
econf || die "econf failed"
emake CFLAGS="${CFLAGS}" || die "emake failed"
use doc && { emake doc || die "make doc failed" ; }
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS INSTALL PORTING ChangeLog || die "dodoc failed"
if use doc ; then
rm -f ${S}/doc/html/installdox
cp -R ${S}/doc/html ${D}/usr/share/doc/${PF}/
fi
}
|