blob: af3d20a6a7f71d1e14a0481921845889463b59e5 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=1
inherit gnome2-utils versionator
DESCRIPTION="A tray app for wireless OBEX file transfers using IrDA"
HOMEPAGE="https://launchpad.net/ircp-tray"
SRC_URI="http://launchpad.net/${PN}/$(get_version_component_range 1-2)/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-libs/openobex
x11-libs/gtk+:2
x11-libs/libnotify"
DEPEND="${RDEPEND}
dev-util/intltool
dev-util/pkgconfig
sys-devel/gettext"
src_install( ) {
emake DESTDIR="${D}" install || die
dodoc AUTHORS CONTRIBUTORS ChangeLog || die
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
}
|