diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2017-06-28 00:56:01 +0200 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2017-06-28 00:56:01 +0200 |
commit | 1a0088dc98a2c556852ecd9b6284174893efae0b (patch) | |
tree | 8761b80a2d1b8385e4944b7740827d6a5adcee00 /dev-util/intltool | |
parent | dev-util/intltool: Revision bump for bug 614698 (diff) | |
download | gentoo-1a0088dc98a2c556852ecd9b6284174893efae0b.tar.gz gentoo-1a0088dc98a2c556852ecd9b6284174893efae0b.tar.bz2 gentoo-1a0088dc98a2c556852ecd9b6284174893efae0b.zip |
dev-util/intltool: Remove old
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'dev-util/intltool')
-rw-r--r-- | dev-util/intltool/Manifest | 1 | ||||
-rw-r--r-- | dev-util/intltool/files/intltool-0.50.2-localedir-fix.patch | 70 | ||||
-rw-r--r-- | dev-util/intltool/intltool-0.50.2-r1.ebuild | 32 | ||||
-rw-r--r-- | dev-util/intltool/intltool-0.51.0.ebuild | 29 |
4 files changed, 0 insertions, 132 deletions
diff --git a/dev-util/intltool/Manifest b/dev-util/intltool/Manifest index 7e9e239e98eb..2dfc13a3855f 100644 --- a/dev-util/intltool/Manifest +++ b/dev-util/intltool/Manifest @@ -1,2 +1 @@ -DIST intltool-0.50.2.tar.gz 189483 SHA256 67f25c5c6fb71d095793a7f895b245e65e829e8bde68c6c8b4c912144ff34406 SHA512 9f7f0746e77a1a6765b49e16f65438103bc031f3fa8cac42c061deade4291703b95aa336eba2500c8f05d19e35620cf01a120c71a7b6816c1bfecbb9fd747b11 WHIRLPOOL b026ab99921aaddb376823f1eb06e7d669bcc0a3cfb12431676e4e041343a370d7f715d39d60ef991e86e4f8441228713fc82a7ecb3cae2dc3273f7f01ce66a3 DIST intltool-0.51.0.tar.gz 162286 SHA256 67c74d94196b153b774ab9f89b2fa6c6ba79352407037c8c14d5aeb334e959cd SHA512 4c93cb26592ed0b1622d3b7800b5d6622ffa36f58ac73f2ef0bddfab522565fdfb8fa73d81914b9a202f1d62bc995a08960f8adb9f62c86918e75498e85fbfdf WHIRLPOOL f0cf9a23c7f7dd9d4ec504709c447de1895bf5bdb10fe2000f9ebc8d93b0be204bb4bc1a54a1c3e981a9f8754cc354224e8411711e4996fc7ffd56335cb300cd diff --git a/dev-util/intltool/files/intltool-0.50.2-localedir-fix.patch b/dev-util/intltool/files/intltool-0.50.2-localedir-fix.patch deleted file mode 100644 index a887c41d3b52..000000000000 --- a/dev-util/intltool/files/intltool-0.50.2-localedir-fix.patch +++ /dev/null @@ -1,70 +0,0 @@ -=== modified file 'Makefile.in.in' ---- Makefile.in.in 2013-05-12 18:38:08 +0000 -+++ Makefile.in.in 2013-05-22 13:43:26 +0000 -@@ -33,8 +33,7 @@ - datadir = @datadir@ - datarootdir = @datarootdir@ - libdir = @libdir@ --DATADIRNAME = @DATADIRNAME@ --itlocaledir = $(prefix)/$(DATADIRNAME)/locale -+localedir = @localedir@ - subdir = po - install_sh = @install_sh@ - # Automake >= 1.8 provides @mkdir_p@. -@@ -108,7 +107,7 @@ - install-data-yes: all - linguas="$(USE_LINGUAS)"; \ - for lang in $$linguas; do \ -- dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \ -+ dir=$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \ - $(mkdir_p) $$dir; \ - if test -r $$lang.gmo; then \ - $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ -@@ -142,8 +141,8 @@ - uninstall: - linguas="$(USE_LINGUAS)"; \ - for lang in $$linguas; do \ -- rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \ -- rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \ -+ rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \ -+ rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \ - done - - check: all $(GETTEXT_PACKAGE).pot - -=== modified file 'intltool.m4' ---- intltool.m4 2012-02-20 14:50:33 +0000 -+++ intltool.m4 2013-05-12 17:08:09 +0000 -@@ -155,31 +155,6 @@ - # Substitute ALL_LINGUAS so we can use it in po/Makefile - AC_SUBST(ALL_LINGUAS) - --# Set DATADIRNAME correctly if it is not set yet --# (copied from glib-gettext.m4) --if test -z "$DATADIRNAME"; then -- AC_LINK_IFELSE( -- [AC_LANG_PROGRAM([[]], -- [[extern int _nl_msg_cat_cntr; -- return _nl_msg_cat_cntr]])], -- [DATADIRNAME=share], -- [case $host in -- *-*-solaris*) -- dnl On Solaris, if bind_textdomain_codeset is in libc, -- dnl GNU format message catalog is always supported, -- dnl since both are added to the libc all together. -- dnl Hence, we'd like to go with DATADIRNAME=share -- dnl in this case. -- AC_CHECK_FUNC(bind_textdomain_codeset, -- [DATADIRNAME=share], [DATADIRNAME=lib]) -- ;; -- *) -- [DATADIRNAME=lib] -- ;; -- esac]) --fi --AC_SUBST(DATADIRNAME) -- - IT_PO_SUBDIR([po]) - - ]) - diff --git a/dev-util/intltool/intltool-0.50.2-r1.ebuild b/dev-util/intltool/intltool-0.50.2-r1.ebuild deleted file mode 100644 index ce380d8f20a0..000000000000 --- a/dev-util/intltool/intltool-0.50.2-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils - -DESCRIPTION="Internationalization Tool Collection" -HOMEPAGE="https://launchpad.net/intltool/" -SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND=" - >=dev-lang/perl-5.8.1 - dev-perl/XML-Parser -" -RDEPEND="${DEPEND} - sys-devel/gettext -" -DOCS=( AUTHORS ChangeLog NEWS README TODO doc/I18N-HOWTO ) - -src_prepare() { - # Use plain localedir to install mo files to, rather than trying to - # guess one, bug #432848#c11 - epatch "${FILESDIR}/${P}-localedir-fix.patch" - - # Fix handling absolute paths in single file key output, bug #470040 - epatch "${FILESDIR}/${PN}-0.50.2-absolute-paths.patch" -} diff --git a/dev-util/intltool/intltool-0.51.0.ebuild b/dev-util/intltool/intltool-0.51.0.ebuild deleted file mode 100644 index cfd5ea16f0c5..000000000000 --- a/dev-util/intltool/intltool-0.51.0.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils - -DESCRIPTION="Internationalization Tool Collection" -HOMEPAGE="https://launchpad.net/intltool/" -SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND=" - >=dev-lang/perl-5.8.1 - dev-perl/XML-Parser -" -RDEPEND="${DEPEND} - sys-devel/gettext -" -DOCS=( AUTHORS ChangeLog NEWS README TODO doc/I18N-HOWTO ) - -src_prepare() { - # Fix handling absolute paths in single file key output, bug #470040 - # https://bugs.launchpad.net/intltool/+bug/1168941 - epatch "${FILESDIR}/${PN}-0.50.2-absolute-paths.patch" -} |