blob: 5b1efc68c18921a02a1213f0b7db58d9c678d15b (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/gnome-blog/gnome-blog-0.9.1.ebuild,v 1.7 2008/05/29 17:44:16 hawking Exp $
inherit gnome2 python
DESCRIPTION="Post entries to your blog right from the Gnome panel"
HOMEPAGE="http://www.gnome.org/~seth/gnome-blog/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND=">=gnome-base/gconf-2
>=dev-python/pygtk-2.6
dev-python/gnome-python"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.28
>=dev-util/pkgconfig-0.9"
DOCS="AUTHORS ChangeLog NEWS README TODO"
src_unpack () {
gnome2_src_unpack
# Let this file be re-created so the path in the <oaf_server> element is
# correct. See bug #93612.
rm -f GNOME_BlogApplet.server.in
# disable pyc compiling
mv py-compile py-compile.orig
ln -s $(type -P true) py-compile
}
pkg_postinst() {
gnome2_pkg_postinst
python_version
python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/gnomeblog
}
pkg_postrm() {
gnome2_pkg_postrm
python_mod_cleanup /usr/$(get_libdir)/python*/site-packages/gnomeblog
}
|