blob: ec82e75d774a8357fee3d5ee876799da829ad524 (
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
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/mrproject/mrproject-0.5.1-r1.ebuild,v 1.2 2002/10/04 04:59:25 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Project management application for GNOME"
SRC_URI="ftp://ftp.codefactory.se/pub/software/mrproject/source/${P}.tar.gz"
HOMEPAGE="http://mrproject.codefactory.se/"
SLOT="1"
LICENSE="GPL-2"
KEYWORDS="x86"
RDEPEND=">=media-libs/gdk-pixbuf-0.18
>=gnome-base/ORBit-0.5.16
>=gnome-extra/gal-0.19.2
>=gnome-base/bonobo-1.0.19
( >=gnome-base/libglade-0.17-r1
<gnome-base/libglade-2.0.0 )
>=dev-libs/libxml-1.8.15
=gnome-base/gconf-1.0*
=gnome-base/gnome-vfs-1.0*
>=gnome-base/oaf-0.6.8
>=gnome-base/gnome-print-0.34"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=dev-util/intltool-0.11"
src_compile() {
local myconf
if [ -z "`use nls`" ] ; then
myconf="--disable-nls"
fi
./configure --host=${CHOST} \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib \
--disable-more-warnings \
--without-python $myconf || die
emake || die
}
src_install () {
make prefix=${D}/usr \
sysconfdir=${D}/etc \
localstatedir=${D}/var/lib \
install || die
dodoc AUTHORS COPYING ChangeLog README NEWS TODO
}
|