blob: 667adfb45e3bbe7e0ea771a8460370b4adcf6357 (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit gnome2
DESCRIPTION="A Gnome tray app for wireless OBEX file transfer using IRDA or Bluetooth"
HOMEPAGE="http://gro.clinux.org/projects/ircp-tray/"
SRC_URI="http://download.gro.clinux.org/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND=">=x11-libs/gtk+-2.6.0
>=gnome-base/libgnome-1.96.0
>=gnome-base/libgnomeui-1.96.0
>=dev-libs/openobex-1.0"
DEPEND="${RDEPEND}
sys-devel/gettext
>=app-text/scrollkeeper-0.1.4
dev-util/pkgconfig"
src_compile() {
econf --with-posix-regex || die "econf failed"
emake || die "emake failed"
}
src_install( ) {
emake DESTDIR="${D}" install || die
dodoc README CHANGES
}
|