summaryrefslogtreecommitdiff
blob: d9851bdf2a2766ee8512d57d6503fd29b6e91902 (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
91
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=2

inherit gnome2 python

PVS="0.4"

DESCRIPTION="Fully customisable dock-like window navigator."
HOMEPAGE="https://launchpad.net/awn"
SRC_URI="http://launchpad.net/awn/${PVS}/${PV/_rc1}/+download/${P/_/~}.tar.gz"
LICENSE="GPL-2 LGPL-2.1"

SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc nls vala"

RDEPEND="
	|| (
		>=dev-lang/python-2.5
		dev-python/elementtree
	)
	dev-libs/dbus-glib
	>=dev-libs/glib-2.16.0
	dev-python/pycairo
	>=dev-python/pygtk-2
	dev-python/pyxdg
	>=gnome-base/gconf-2
	>=gnome-base/libglade-2
	>=x11-libs/gtk+-2
	>=x11-libs/libwnck-2.20
	vala? ( dev-lang/vala )
	x11-libs/desktop-agnostic"
DEPEND="${RDEPEND}
	>=dev-util/intltool-0.35.5
	dev-util/pkgconfig
	doc? ( >=dev-util/gtk-doc-1.4 )"

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

pkg_setup() {
	G2CONF="${G2CONF}
		--disable-pymod-checks
		--disable-shave
		--disable-static
		--with-gconf-schema-file-dir=/etc/gconf/schemas
		--with-html-dir=/usr/share/doc/${PF}/html
		$(use_enable nls)
		$(use_enable doc gtk-doc)
                $(use_with vala)"
}

#DOCS="AUTHORS ChangeLog NEWS README TODO"
#
#src_unpack() {
#	gnome2_src_unpack
#
#	# Disable pyc compiling.
#	mv py-compile py-compile.orig
#	ln -s $(type -P true) py-compile
#}

#src_compile() {
#	local myconf
#
#	if use gnome; then myconf="--with-desktop=gnome"
#	elif use xfce; then myconf="--with-desktop=xfce4"
#	else myconf="--with-desktop=agnostic"
#	fi
#
#	econf $(use_enable doc gtk-doc) \
#		$(use_with vala) \
#		--with-gconf \
#		--disable-static \
#		--disable-pymod-checks \
#		${myconf}
#
#	emake || die "emake failed"
#}

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

pkg_postrm() {
	gnome2_pkg_postrm
	python_mod_cleanup awn
}