Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/bless: bless-0.6.0-r2.ebuild ChangeLog bless-0.6.0-r1.ebuild
Date: Tue, 02 Dec 2014 16:16:04
Message-Id: 20141202161600.AC56AB5D8@oystercatcher.gentoo.org
1 pacho 14/12/02 16:16:00
2
3 Modified: ChangeLog
4 Added: bless-0.6.0-r2.ebuild
5 Removed: bless-0.6.0-r1.ebuild
6 Log:
7 Bump to eapi5, follow latest policies for gnome2.eclass, drop using deprecated mono.eclass
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.23 dev-util/bless/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/bless/ChangeLog?rev=1.23&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/bless/ChangeLog?rev=1.23&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/bless/ChangeLog?r1=1.22&r2=1.23
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-util/bless/ChangeLog,v
21 retrieving revision 1.22
22 retrieving revision 1.23
23 diff -u -r1.22 -r1.23
24 --- ChangeLog 8 Jul 2014 11:22:29 -0000 1.22
25 +++ ChangeLog 2 Dec 2014 16:16:00 -0000 1.23
26 @@ -1,6 +1,13 @@
27 # ChangeLog for dev-util/bless
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-util/bless/ChangeLog,v 1.22 2014/07/08 11:22:29 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-util/bless/ChangeLog,v 1.23 2014/12/02 16:16:00 pacho Exp $
31 +
32 +*bless-0.6.0-r2 (02 Dec 2014)
33 +
34 + 02 Dec 2014; Pacho Ramos <pacho@g.o> +bless-0.6.0-r2.ebuild,
35 + -bless-0.6.0-r1.ebuild:
36 + Bump to eapi5, follow latest policies for gnome2.eclass, drop using deprecated
37 + mono.eclass
38
39 08 Jul 2014; Pacho Ramos <pacho@g.o> -bless-0.5.2.ebuild:
40 Drop old version as it's one of the last eapi0 consumers of gnome2.eclass
41
42
43
44 1.1 dev-util/bless/bless-0.6.0-r2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/bless/bless-0.6.0-r2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/bless/bless-0.6.0-r2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: bless-0.6.0-r2.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-util/bless/bless-0.6.0-r2.ebuild,v 1.1 2014/12/02 16:16:00 pacho Exp $
54
55 EAPI=5
56 GCONF_DEBUG="no"
57
58 inherit autotools eutils gnome2 mono-env
59
60 DESCRIPTION="GTK# Hex Editor"
61 HOMEPAGE="http://home.gna.org/bless/"
62 SRC_URI="http://download.gna.org/bless/${P}.tar.gz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="debug"
68
69 RDEPEND="
70 >=dev-lang/mono-1.1.14
71 >=dev-dotnet/gtk-sharp-2.12
72 >=dev-dotnet/glade-sharp-2.12
73 "
74 DEPEND="${RDEPEND}
75 app-text/scrollkeeper
76 >=sys-devel/gettext-0.15
77 virtual/pkgconfig
78 "
79
80 # See bug 278162
81 # Waiting on nunit ebuild entering the tree
82 RESTRICT="test"
83
84 pkg_setup() {
85 # Stolen from enlightenment.eclass
86 cp $(type -p gettextize) "${T}/" || die "Could not copy gettextize"
87 sed -i -e 's:read dummy < /dev/tty::' "${T}/gettextize"
88 }
89
90 src_prepare() {
91 einfo "Running gettextize -f --no-changelog..."
92 ( "${T}/gettextize" -f --no-changelog > /dev/null ) || die "gettexize failed"
93 epatch "${FILESDIR}/${P}-pixmap.patch"
94 epatch "${FILESDIR}/${P}-docpath.patch"
95 eautoreconf
96 gnome2_src_prepare
97 }
98
99 src_configure() {
100 gnome2_src_configure \
101 --enable-unix-specific \
102 $(use_enable debug)
103 }