blob: f4a98e63f7c127e862171a4481a5ca841ee6e9f1 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/mlview/mlview-0.8-r1.ebuild,v 1.8 2009/06/09 13:19:12 flameeyes Exp $
inherit eutils gnome2 flag-o-matic
DESCRIPTION="XML editor for the GNOME environment"
HOMEPAGE="http://www.freespiders.org/projects/gmlview/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND=">=dev-libs/libxml2-2.6.11
>=dev-libs/libxslt-1.1.8
>=dev-libs/glib-2.4.6
>=x11-libs/gtk+-2.4.3
>=gnome-base/libglade-2.4
>=gnome-base/libgnome-2.6.1
>=gnome-base/gconf-2.6.2
>=gnome-base/eel-2.6.2
=x11-libs/gtksourceview-1*
sys-libs/zlib"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.33
>=dev-util/pkgconfig-0.9"
DOCS="AUTHORS BRANCHES ChangeLog COPYRIGHT NEWS README"
pkg_setup() {
# see bug #179819
append-ldflags -Wl,--no-as-needed
}
src_unpack() {
gnome2_src_unpack
# Small corrections for mlview.desktop
epatch "${FILESDIR}/${P}-dot_desktop.patch"
}
|