blob: f876aaeba83754dc8d30a6bc5dc8afc50d080f3c (
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
|
# Copyright 1999-2007 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.6 2007/04/18 20:06:47 welp Exp $
DESCRIPTION="Console Progress Bar"
HOMEPAGE="http://clpbar.sourceforge.net/"
SRC_URI="mirror://sourceforge/clpbar/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 sparc x86"
IUSE="doc"
DEPEND="doc? ( >=app-doc/doxygen-1.3.5 )"
RDEPEND=""
src_compile() {
local myconf
# Fix wrt #113392
use sparc && myconf="${myconf} --disable-use-memalign"
econf ${myconf} || 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
}
|