Gentoo Archives: gentoo-commits

From: "Chris Reffett (creffett)" <creffett@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/glosung: glosung-3.6.2-r1.ebuild ChangeLog glosung-3.6.2.ebuild
Date: Tue, 29 Jan 2013 18:52:08
Message-Id: 20130129185204.C231F2171E@flycatcher.gentoo.org
1 creffett 13/01/29 18:52:04
2
3 Modified: ChangeLog
4 Added: glosung-3.6.2-r1.ebuild
5 Removed: glosung-3.6.2.ebuild
6 Log:
7 Revision bump, add patch to allow SCons to use environment CC, CFLAGS, and LDFLAGS, remove auto-set CFLAGS such as -g.
8
9 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 42618354)
10
11 Revision Changes Path
12 1.14 app-text/glosung/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/glosung/ChangeLog?rev=1.14&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/glosung/ChangeLog?rev=1.14&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/glosung/ChangeLog?r1=1.13&r2=1.14
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-text/glosung/ChangeLog,v
21 retrieving revision 1.13
22 retrieving revision 1.14
23 diff -u -r1.13 -r1.14
24 --- ChangeLog 21 Jan 2013 20:23:46 -0000 1.13
25 +++ ChangeLog 29 Jan 2013 18:52:04 -0000 1.14
26 @@ -1,6 +1,14 @@
27 # ChangeLog for app-text/glosung
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-text/glosung/ChangeLog,v 1.13 2013/01/21 20:23:46 creffett Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/glosung/ChangeLog,v 1.14 2013/01/29 18:52:04 creffett Exp $
31 +
32 +*glosung-3.6.2-r1 (29 Jan 2013)
33 +
34 + 29 Jan 2013; Chris Reffett <creffett@g.o>
35 + +files/glosung-3.6.2-scons-respectflags.patch, +glosung-3.6.2-r1.ebuild,
36 + -glosung-3.6.2.ebuild:
37 + Revision bump, add patch to allow SCons to use environment CC, CFLAGS, and
38 + LDFLAGS, remove auto-set CFLAGS such as -g.
39
40 *glosung-3.6.2 (21 Jan 2013)
41
42
43
44
45 1.1 app-text/glosung/glosung-3.6.2-r1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/glosung/glosung-3.6.2-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/glosung/glosung-3.6.2-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: glosung-3.6.2-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2013 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/app-text/glosung/glosung-3.6.2-r1.ebuild,v 1.1 2013/01/29 18:52:04 creffett Exp $
55
56 EAPI=5
57
58 inherit eutils toolchain-funcs
59 DESCRIPTION="Watch word program for the GNOME2 desktop (watch word (german): losung)"
60 HOMEPAGE="http://www.godehardt.org/losung.html"
61 SRC_URI="mirror://sourceforge/glosung/${P}.tar.bz2"
62
63 LICENSE="GPL-2+"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE=""
67
68 RDEPEND="
69 dev-libs/libxml2
70 >=gnome-base/gconf-2.0:2
71 >=gnome-base/libgnome-2
72 >=gnome-base/libgnomeui-2
73 net-misc/curl
74 >=x11-libs/gtk+-2.10:2
75 "
76
77 DEPEND="${RDEPEND}
78 >=dev-util/scons-0.93
79 >=dev-util/intltool-0.22
80 >=sys-devel/gettext-0.10
81 virtual/pkgconfig
82 "
83
84 src_prepare() {
85 epatch "${FILESDIR}/${PN}-3.6.2-glib-includes.patch"
86 epatch "${FILESDIR}/${PN}-3.6.2-scons-respectflags.patch"
87 }
88
89 src_compile() {
90 tc-export CC
91 scons ${MAKEOPTS} || die "scons make died"
92 }
93
94 src_install() {
95 scons install DESTDIR="${D}" || die "scons install died"
96 #Ships with an ISO-8859 encoded .desktop file, which causes validation to fail, so ship a UTF-8 version
97 cp "${FILESDIR}/glosung.desktop" "${D}/usr/share/applications"
98 }