blob: 87d1f28d0a83b67709c49910c19ec2f09d06c82f (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/prozgui/prozgui-2.0.5.ebuild,v 1.1 2003/10/10 17:33:59 mholzer Exp $
S="${WORKDIR}/${P}beta"
DESCRIPTION="A Graphical download manager"
SRC_URI="http://prozilla.genesys.ro/downloads/${PN}/tarballs/${P}beta.tar.bz2"
HOMEPAGE="http://prozilla.genesys.ro/"
KEYWORDS="~x86 ~sparc ~ppc"
SLOT="0"
LICENSE="GPL-2"
DEPEND="virtual/glibc
>=x11-libs/fltk-1.1"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-configure.patch
}
src_compile() {
./configure --prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--host=${CHOST} \
--sysconfdir=/etc \
--disable-nls \
--with-fltk-includes=`fltk-config --cflags | cut -d' ' -f1 | sed 's/-I//'` \
--with-fltk-libs=`fltk-config --ldflags | cut -d' ' -f1 | sed 's/-L//'` || die
emake || die
}
src_install () {
make DESTDIR=${D} \
sysconfdir=${D}/etc \
install || die
dodoc ANNOUNCE AUTHORS COPYING CREDITS ChangeLog FAQ NEWS README TODO
}
|