From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8298B139085 for ; Mon, 6 Feb 2017 19:44:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0260E0DFC; Mon, 6 Feb 2017 19:44:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9DF28E0DFC for ; Mon, 6 Feb 2017 19:44:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7F65F341678 for ; Mon, 6 Feb 2017 19:44:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BF983DC2 for ; Mon, 6 Feb 2017 19:44:12 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1486410246.024796580d4fb4e2e41cde0c1ffe503999632f70.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xindy/files/, app-text/xindy/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/xindy/files/xindy-2.4-nogrep.patch app-text/xindy/xindy-2.4-r1.ebuild X-VCS-Directories: app-text/xindy/ app-text/xindy/files/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 024796580d4fb4e2e41cde0c1ffe503999632f70 X-VCS-Branch: master Date: Mon, 6 Feb 2017 19:44:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 333dd8b9-693e-48bc-b173-be014be3b34d X-Archives-Hash: 3a35f6175aa59da2184940a1fcc514bc commit: 024796580d4fb4e2e41cde0c1ffe503999632f70 Author: Ulrich Müller gentoo org> AuthorDate: Mon Feb 6 19:43:13 2017 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Feb 6 19:44:06 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02479658 app-text/xindy: Fix build of latin.xdy file. Non-maintainer commit with permission from dilfridge. Bug: 573794 Package-Manager: Portage-2.3.3, Repoman-2.3.1 app-text/xindy/files/xindy-2.4-nogrep.patch | 13 +++++++++ app-text/xindy/xindy-2.4-r1.ebuild | 42 +++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) diff --git a/app-text/xindy/files/xindy-2.4-nogrep.patch b/app-text/xindy/files/xindy-2.4-nogrep.patch new file mode 100644 index 00000000..41f1b3a --- /dev/null +++ b/app-text/xindy/files/xindy-2.4-nogrep.patch @@ -0,0 +1,13 @@ +https://bugs.gentoo.org/573794 + +--- xindy-2.4-orig/make-rules/inputenc/Makefile.am ++++ xindy-2.4/make-rules/inputenc/Makefile.am +@@ -43,7 +43,7 @@ + latin.xdy : latin1.xdy latin2.xdy latin3.xdy + echo ';; Generated from latin?.xdy' >latin.xdy + echo >>latin.xdy +- sort -u latin?.xdy | grep -v '^;' >>latin.xdy ++ sort -u latin?.xdy | sed '/^;/d' >>latin.xdy + + %.xdy %.idx : + $(PERL) $(srcdir)/make-testidx.pl TS1,T2A,T1 $* >$*.tex diff --git a/app-text/xindy/xindy-2.4-r1.ebuild b/app-text/xindy/xindy-2.4-r1.ebuild new file mode 100644 index 00000000..2a44636 --- /dev/null +++ b/app-text/xindy/xindy-2.4-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils autotools + +DESCRIPTION="A Flexible Indexing System" +HOMEPAGE="http://www.xindy.org/" +SRC_URI="http://www.xindy.org/xindy-2.4.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~x86" +IUSE="doc" + +RDEPEND="virtual/latex-base + dev-texlive/texlive-fontsrecommended + >=dev-lisp/clisp-2.44.1-r1 + dev-texlive/texlive-langcyrillic" +DEPEND="${RDEPEND} + dev-lang/perl + sys-devel/flex" + +PATCHES=("${FILESDIR}"/${P}-configure.patch + "${FILESDIR}"/${P}-locale.patch + "${FILESDIR}"/${P}-nogrep.patch) +DOCS=(AUTHORS ChangeLog.Gour NEWS README) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf $(use_enable doc docs) +} + +src_compile() { + VARTEXFONTS="${T}/fonts" emake +}