forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bless-0.6.0-r2.ebuild
52 lines (44 loc) · 1.18 KB
/
bless-0.6.0-r2.ebuild
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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools gnome2 mono-env
DESCRIPTION="GTK# Hex Editor"
HOMEPAGE="http://home.gna.org/bless/"
SRC_URI="http://download.gna.org/bless/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
RDEPEND="
>=dev-lang/mono-1.1.14
>=dev-dotnet/gtk-sharp-2.12
|| ( >=dev-dotnet/gtk-sharp-2.12.21
>=dev-dotnet/glade-sharp-2.12 )
"
DEPEND="${RDEPEND}
app-text/rarian
>=sys-devel/gettext-0.15
virtual/pkgconfig
"
# See bug 278162
# Waiting on nunit ebuild entering the tree
RESTRICT="test"
pkg_setup() {
# Stolen from enlightenment.eclass
cp $(type -p gettextize) "${T}/" || die "Could not copy gettextize"
sed -i -e 's:read dummy < /dev/tty::' "${T}/gettextize"
}
src_prepare() {
einfo "Running gettextize -f --no-changelog..."
( "${T}/gettextize" -f --no-changelog > /dev/null ) || die "gettexize failed"
eapply "${FILESDIR}/${P}-pixmap.patch"
eapply "${FILESDIR}/${P}-docpath.patch"
eapply "${FILESDIR}/${P}-mono-4.patch"
eautoreconf
gnome2_src_prepare
}
src_configure() {
gnome2_src_configure \
--enable-unix-specific \
$(use_enable debug)
}