blob: 7fc2b9ab707f024a3da102a774f5e53a604e1137 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot-conduits/gnome-pilot-conduits-2.32.1.ebuild,v 1.1 2010/10/27 21:53:04 eva Exp $
EAPI="3"
GCONF_DEBUG="no"
inherit gnome2
DESCRIPTION="Gnome Pilot Conduits"
HOMEPAGE="http://live.gnome.org/GnomePilot"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
RDEPEND="
>=x11-libs/gtk+-2.13:2
>=app-pda/gnome-pilot-2.32
>=dev-libs/libxml2-2.5"
DEPEND="${RDEPEND}
sys-devel/gettext
>=dev-util/intltool-0.35
dev-util/pkgconfig"
pkg_setup() {
DOCS="AUTHORS ChangeLog NEWS README"
G2CONF="${G2CONF} --disable-static"
}
src_install() {
gnome2_src_install
find "${ED}" -name "*.la" -delete || die
}
|