summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Scherbaum <dertobi123@gentoo.org>2006-09-17 08:22:53 +0000
committerTobias Scherbaum <dertobi123@gentoo.org>2006-09-17 08:22:53 +0000
commitda26850e67d28eaa7ab438c405fff6f1e9db4768 (patch)
treea8794ab3066eebd1d5a41d9ebdbdc6aca4c97885 /x11-misc
parentremove esyslog statement (diff)
downloadgentoo-2-da26850e67d28eaa7ab438c405fff6f1e9db4768.tar.gz
gentoo-2-da26850e67d28eaa7ab438c405fff6f1e9db4768.tar.bz2
gentoo-2-da26850e67d28eaa7ab438c405fff6f1e9db4768.zip
build locales, bug #147071 by Luca Marturana
(Portage version: 2.1.1)
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/grsync/ChangeLog8
-rw-r--r--x11-misc/grsync/files/digest-grsync-0.5-r13
-rw-r--r--x11-misc/grsync/files/grsync-0.5-intltool.patch10
-rw-r--r--x11-misc/grsync/grsync-0.5-r1.ebuild31
4 files changed, 51 insertions, 1 deletions
diff --git a/x11-misc/grsync/ChangeLog b/x11-misc/grsync/ChangeLog
index 12bc3b6162d9..d265814a6463 100644
--- a/x11-misc/grsync/ChangeLog
+++ b/x11-misc/grsync/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-misc/grsync
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/grsync/ChangeLog,v 1.6 2006/08/19 08:00:11 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/grsync/ChangeLog,v 1.7 2006/09/17 08:22:53 dertobi123 Exp $
+
+*grsync-0.5-r1 (17 Sep 2006)
+
+ 17 Sep 2006; Tobias Scherbaum <dertobi123@gentoo.org>
+ +files/grsync-0.5-intltool.patch, +grsync-0.5-r1.ebuild:
+ build locales, bug #147071 by Luca Marturana
*grsync-0.5 (19 Aug 2006)
diff --git a/x11-misc/grsync/files/digest-grsync-0.5-r1 b/x11-misc/grsync/files/digest-grsync-0.5-r1
new file mode 100644
index 000000000000..9f36c2007302
--- /dev/null
+++ b/x11-misc/grsync/files/digest-grsync-0.5-r1
@@ -0,0 +1,3 @@
+MD5 f5d68c02c6cc5cafce2bee6653b6d6b3 grsync-0.5.tar.gz 153560
+RMD160 8b6adf808c5fc6a21cdcddff6148dca99e2ee092 grsync-0.5.tar.gz 153560
+SHA256 762ba0059f6270d6a5b00d117deeb048c3871d6d8a7bed65b44731372336dee4 grsync-0.5.tar.gz 153560
diff --git a/x11-misc/grsync/files/grsync-0.5-intltool.patch b/x11-misc/grsync/files/grsync-0.5-intltool.patch
new file mode 100644
index 000000000000..ffc28fa039c4
--- /dev/null
+++ b/x11-misc/grsync/files/grsync-0.5-intltool.patch
@@ -0,0 +1,10 @@
+--- configure.in 2006-07-10 17:47:04.000000000 +0200
++++ /root/configure.in 2006-09-08 09:51:31.012999000 +0200
+@@ -15,6 +15,7 @@
+ AC_SUBST(PACKAGE_CFLAGS)
+ AC_SUBST(PACKAGE_LIBS)
+
++AC_PROG_INTLTOOL([0.21])
+ GETTEXT_PACKAGE=grsync
+ AC_SUBST(GETTEXT_PACKAGE)
+ AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package.])
diff --git a/x11-misc/grsync/grsync-0.5-r1.ebuild b/x11-misc/grsync/grsync-0.5-r1.ebuild
new file mode 100644
index 000000000000..1eeefb28fca1
--- /dev/null
+++ b/x11-misc/grsync/grsync-0.5-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/grsync/grsync-0.5-r1.ebuild,v 1.1 2006/09/17 08:22:53 dertobi123 Exp $
+
+inherit eutils gnome2 autotools
+
+DESCRIPTION="A gtk frontend to rsync"
+HOMEPAGE="http://www.opbyte.it/grsync/"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="doc"
+SRC_URI="http://www.opbyte.it/release/${P}.tar.gz"
+
+RDEPEND=">=x11-libs/gtk+-2.6
+ net-misc/rsync"
+
+DEPEND="${RDEPEND}
+ dev-util/intltool"
+
+DOCS="AUTHORS NEWS README"
+
+src_unpack() {
+ gnome2_src_unpack
+
+ # Fix localization
+ cd ${S}
+ epatch ${FILESDIR}/${P}-intltool.patch
+ intltoolize --copy --force || die "intltoolize failed"
+ eautoreconf
+}