blob: b15be850930ba1b73ceb4e914f61c390ca4aeebb (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-pim/gnome-pim-1.4.8.ebuild,v 1.14 2004/07/14 15:52:06 agriffis Exp $
IUSE="pda"
DESCRIPTION="gnome-pim"
#this version is not available from official gnome repos
SRC_URI="http://me.in-berlin.de/~jroger/gnome-pim/${P}.tar.gz"
HOMEPAGE="http://www.gnome.org/gnome-office/gnome-pim.shtml"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~sparc ppc"
RDEPEND=">=gnome-base/gnome-libs-1.4.1.2-r1"
DEPEND="${RDEPEND}
pda? ( <app-pda/gnome-pilot-2 )"
src_unpack() {
unpack ${A}
# remove unneeded check that makes it want libxml (#21504)
cd ${S}
mv configure.in configure.in.old
sed -e "s:GNOME_XML_CHECK::" configure.in.old > configure.in
autoconf || die
}
src_compile() {
econf || die "econf failed"
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS COPYING* ChangeLog NEWS README*
}
|