blob: c23bc837685926f5e96007a7bb85f4338a3bb76d (
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
92
93
94
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/screem/screem-0.16.1-r1.ebuild,v 1.1 2009/03/22 02:20:28 eva Exp $
EAPI="2"
inherit autotools eutils gnome2
DESCRIPTION="SCREEM is an integrated environment for the creation and maintenance of websites and pages"
HOMEPAGE="http://www.screem.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="dbus spell nls"
# glib raised to 2.10 for goption
RDEPEND=">=dev-libs/glib-2.10.0
>=x11-libs/gtk+-2.6
>=dev-libs/libxml2-2.4.3
>=gnome-base/libglade-2.3
>=gnome-base/gconf-2.2
>=gnome-base/gnome-vfs-2.8.3
>=gnome-base/libgnome-2.2
>=gnome-base/libgnomeui-2.6
=gnome-extra/gtkhtml-2*
>=gnome-base/libgnomeprint-2.2
>=gnome-base/libgnomeprintui-2.2
=x11-libs/gtksourceview-1*
>=dev-libs/libcroco-0.6.0
>=gnome-base/gnome-menus-2.9.2
dbus? ( >=sys-apps/dbus-1.0.2 )
spell? ( >=app-text/enchant-1.1.6 )"
DEPEND="${RDEPEND}
>=app-text/scrollkeeper-0.1.1
>=dev-util/intltool-0.29
nls? ( sys-devel/gettext )
dev-util/pkgconfig
>=x11-misc/shared-mime-info-0.3.14"
DOCS="AUTHORS BUGS COPYING-DOCS ChangeLog NEWS README TODO"
pkg_setup() {
G2CONF="${G2CONF}
--disable-update-mime
--disable-update-desktop
--disable-schemas-install
$(use_enable nls)
$(use_enable dbus)
$(use_enable spell enchant)"
}
src_prepare() {
gnome2_src_prepare
# Remove deprecation warnings, bug #127486
epatch "${FILESDIR}/${P}-deprecated.patch"
# Make add tag file feature work, bug #256611
epatch "${FILESDIR}/${P}-add-tag-file.patch"
# About dialog does not close, bug #256803
epatch "${FILESDIR}/${P}-fix-about-dialog.patch"
# Fix error in exit due to old dbus calls, bug #255750
epatch "${FILESDIR}/${P}-dbus-closing.patch"
# Port to GOption
epatch "${FILESDIR}/${P}-goption.patch"
# Fix tests
echo "gdl/layout.glade" >> po/POTFILES.in
echo "src/screem-debug-console.c" >> po/POTFILES.in
strip-linguas -i "${S}/po"
intltoolize --force --copy --automake || die "intltoolize failed"
eautoreconf
}
src_install() {
gnome2_src_install
# Install translations, bug #256611
if use nls; then
cd po
for loc in ${LINGUAS}; do
msgfmt ${loc}.po --output-file ${loc}.gmo || die "fail to build ${loc}.po"
domo ${loc}.gmo || die "domo ${loc}.gmo"
done
fi
}
|