summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Cardona <remi@gentoo.org>2008-05-27 18:58:34 +0000
committerRémi Cardona <remi@gentoo.org>2008-05-27 18:58:34 +0000
commit4979d83528014f1543fe70a86a880b11a1a99f5c (patch)
tree9d78e907b1d12a37dc661f368c2fa797c695118f /app-text
parentChanged to depend on any revision of btrfs-progs (diff)
downloadgentoo-2-4979d83528014f1543fe70a86a880b11a1a99f5c.tar.gz
gentoo-2-4979d83528014f1543fe70a86a880b11a1a99f5c.tar.bz2
gentoo-2-4979d83528014f1543fe70a86a880b11a1a99f5c.zip
app-text/gtranslator: bump to 1.1.7
(Portage version: 2.1.5.2)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/gtranslator/ChangeLog8
-rw-r--r--app-text/gtranslator/files/gtranslator-1.1.7-scrollkeeper.patch22
-rw-r--r--app-text/gtranslator/gtranslator-1.1.7.ebuild36
3 files changed, 65 insertions, 1 deletions
diff --git a/app-text/gtranslator/ChangeLog b/app-text/gtranslator/ChangeLog
index 0199024ef243..ee81282b179b 100644
--- a/app-text/gtranslator/ChangeLog
+++ b/app-text/gtranslator/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-text/gtranslator
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/gtranslator/ChangeLog,v 1.30 2008/02/29 12:19:16 coldwind Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/gtranslator/ChangeLog,v 1.31 2008/05/27 18:58:34 remi Exp $
+
+*gtranslator-1.1.7 (27 May 2008)
+
+ 27 May 2008; Rémi Cardona <remi@gentoo.org>
+ +files/gtranslator-1.1.7-scrollkeeper.patch, +gtranslator-1.1.7.ebuild:
+ bump to 1.1.7
29 Feb 2008; Santiago M. Mola <coldwind@gentoo.org>
gtranslator-1.1.6-r1.ebuild:
diff --git a/app-text/gtranslator/files/gtranslator-1.1.7-scrollkeeper.patch b/app-text/gtranslator/files/gtranslator-1.1.7-scrollkeeper.patch
new file mode 100644
index 000000000000..ffc8efd24a13
--- /dev/null
+++ b/app-text/gtranslator/files/gtranslator-1.1.7-scrollkeeper.patch
@@ -0,0 +1,22 @@
+--- configure 2008-05-27 20:44:46.000000000 +0200
++++ configure 2008-05-27 20:45:29.000000000 +0200
+@@ -7127,7 +7127,7 @@
+ if test "z$sc_present" = "zyes" ; then
+ { echo "$as_me:$LINENO: checking for scrollkeeper" >&5
+ echo $ECHO_N "checking for scrollkeeper... $ECHO_C" >&6; }
+- _VERSION=`scrollkeeper-config --version|sed -e 's/\.//g'`
++ _VERSION=`scrollkeeper-config --version|sed -e 's/^\([0-9\.]\+\).*/\1/g;s/\.//g'`
+ if test $_VERSION -ge 0 -o $_VERSION -ge 02; then
+ { echo "$as_me:$LINENO: result: yes" >&5
+ echo "${ECHO_T}yes" >&6; }
+--- configure.in 2008-05-27 20:44:33.000000000 +0200
++++ configure.in 2008-05-27 20:45:10.000000000 +0200
+@@ -117,7 +117,7 @@
+ AC_CHECK_PROG(sc_present, scrollkeeper-config, yes, no)
+ if test "z$sc_present" = "zyes" ; then
+ AC_MSG_CHECKING([for scrollkeeper])
+- _VERSION=`scrollkeeper-config --version|sed -e 's/\.//g'`
++ _VERSION=`scrollkeeper-config --version|sed -e 's/^\([0-9\.]\+\).*/\1/g;s/\.//g'`
+ if test $_VERSION -ge 0 -o $_VERSION -ge 02; then
+ AC_MSG_RESULT(yes)
+ SC_STATEDIR=`scrollkeeper-config --pkglocalstatedir`
diff --git a/app-text/gtranslator/gtranslator-1.1.7.ebuild b/app-text/gtranslator/gtranslator-1.1.7.ebuild
new file mode 100644
index 000000000000..71f56a829eae
--- /dev/null
+++ b/app-text/gtranslator/gtranslator-1.1.7.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/gtranslator/gtranslator-1.1.7.ebuild,v 1.1 2008/05/27 18:58:34 remi Exp $
+
+inherit gnome2 eutils
+
+DESCRIPTION="An enhanced gettext po file editor for GNOME"
+HOMEPAGE="http://gtranslator.sourceforge.net/"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND=">=dev-libs/libxml2-2.4.12
+ app-text/gtkspell
+ >=gnome-base/libgnome-2
+ >=gnome-base/libgnomeui-2
+ >=gnome-base/libbonobo-2
+ >=gnome-base/libbonoboui-2
+ >=gnome-base/libgnomecanvas-2
+ >=gnome-base/gnome-vfs-2"
+
+DEPEND="${RDEPEND}
+ >=app-text/scrollkeeper-0.1.4
+ >=dev-util/intltool-0.22
+ dev-util/pkgconfig"
+
+DOCS="AUTHORS ChangeLog HACKING INSTALL NEWS README THANKS TODO"
+
+src_unpack() {
+ gnome2_src_unpack
+
+ # Fix scrollkeeper detection
+ epatch "${FILESDIR}"/${PN}-1.1.7-scrollkeeper.patch
+}