summaryrefslogtreecommitdiff
blob: 9479ea950f15b6a9679dc38c3bd4518f703cf966 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="2"

inherit eutils gnome2 python

MY_PN="awn-extras"
MY_P="${MY_PN}-${PV}"
PVS="0.4"

DESCRIPTION="Applets for Avant Window Navigator"
HOMEPAGE="https://launchpad.net/awn-extras"
SRC_URI="https://launchpad.net/awn-extras/${PVS}/${PV/_rc1}/+download/${MY_P/_/~}.tar.gz"
LICENSE="GPL-2"

SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gnome nls webkit xulrunner"

COMMON_DEPEND="
	>=dev-libs/dbus-glib-0.70
	>=dev-python/pygobject-2
	>=dev-python/pygtk-2
	>=gnome-extra/avant-window-navigator-0.4.0_rc1
	x11-libs/libnotify
	x11-libs/libsexy
	x11-libs/libXcomposite
	x11-libs/libXrender
	>=x11-libs/libwnck-2.22
	x11-libs/vte
	gnome? (
		gnome-base/gnome-menus
		>=gnome-base/gconf-2
		>=gnome-base/gnome-vfs-2
		>=gnome-base/libgtop-2
		gnome-base/librsvg
	)
	webkit? ( net-libs/webkit-gtk )
	xulrunner? ( net-libs/xulrunner )"
DEPEND="${COMMON_DEPEND}
	>=dev-util/intltool-0.35
	>=dev-util/pkgconfig-0.17"
RDEPEND="${COMMON_DEPEND}
	dev-python/feedparser
	dev-python/notify-python
	dev-python/pyalsaaudio
	gnome? (
		dev-python/gconf-python
		dev-python/gnome-applets-python
		dev-python/gnome-desktop-python
		dev-python/gnome-keyring-python
		dev-python/gnome-media-python
		dev-python/gnome-vfs-python
		dev-python/gtkmozembed-python
		dev-python/libgnomecanvas-python
		dev-python/libgnomeprint-python
		dev-python/libgnome-python
		dev-python/librsvg-python
		dev-python/libwnck-python
		gnome-base/gnome-menus[python]
	)"

DOCS="ChangeLog README"

S="${WORKDIR}/${MY_P/_/~}"

pkg_setup() {
	G2CONF="${G2CONF}
		--disable-pymod-checks
		--disable-shave
		--disable-static
		--with-gconf-schema-file-dir=/etc/gconf/schemas
		$(use_enable nls)
		$(use_with gnome gconf)
		$(use_with gnome)
		$(use_with webkit)
		$(use_with xulrunner mozilla)"
}

pkg_postinst() {
	gnome2_pkg_postinst
	python_mod_optimize $(python_get_sitedir)/awn/extras
}

pkg_postrm() {
	gnome2_pkg_postrm
	python_mod_cleanup awn/extras
}