blob: 074486b7fdf12e4c0b452015cd661dcae4b37488 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/bless/bless-0.5.2.ebuild,v 1.1 2007/10/28 18:56:18 compnerd Exp $
inherit autotools eutils gnome2 mono
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.8
>=dev-dotnet/glade-sharp-2.8"
DEPEND="${RDEPEND}
app-text/scrollkeeper
>=sys-devel/gettext-0.15
>=dev-util/pkgconfig-0.19"
DOCS="AUTHORS ChangeLog NEWS README"
pkg_setup() {
G2CONF="${G2CONF} --enable-unix-specific $(use_enable debug)"
# 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_unpack() {
gnome2_src_unpack
einfo "Running gettextize -f --no-changelog..."
( "${T}/gettextize" -f --no-changelog > /dev/null ) || die "gettexize failed"
eautoreconf
}
|