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 6BB3013997D for ; Sun, 10 Nov 2019 10:35:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7580AE0BBE; Sun, 10 Nov 2019 10:30:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B2571E0BBE for ; Sun, 10 Nov 2019 10:30:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 988C434CCE2 for ; Sat, 9 Nov 2019 23:01:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1EDCB889 for ; Sat, 9 Nov 2019 23:01:19 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1573340474.4bfc4c67407892b960b16c5ba4ef901c7a3260f6.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/tipa/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-tex/tipa/tipa-1.3.ebuild X-VCS-Directories: dev-tex/tipa/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 4bfc4c67407892b960b16c5ba4ef901c7a3260f6 X-VCS-Branch: master Date: Sat, 9 Nov 2019 23:01:19 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 807dc483-6412-4a1c-a330-bbf4c7845814 X-Archives-Hash: 8a52e459d7eca4d6c5188db21d75ada4 commit: 4bfc4c67407892b960b16c5ba4ef901c7a3260f6 Author: Aaron Bauman gentoo org> AuthorDate: Sat Nov 9 23:00:56 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sat Nov 9 23:01:14 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bfc4c67 dev-tex/tipa: bump EAPI and stuff Signed-off-by: Aaron Bauman gentoo.org> dev-tex/tipa/tipa-1.3.ebuild | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/dev-tex/tipa/tipa-1.3.ebuild b/dev-tex/tipa/tipa-1.3.ebuild index 6d68b16c4c9..02b80da6326 100644 --- a/dev-tex/tipa/tipa-1.3.ebuild +++ b/dev-tex/tipa/tipa-1.3.ebuild @@ -1,40 +1,39 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 DESCRIPTION="International Phonetic Alphabet package for LaTeX" -HOMEPAGE="http://www.l.u-tokyo.ac.jp/~fkr/" -SRC_URI="http://www.l.u-tokyo.ac.jp/~fkr/tipa/${P}.tar.gz" +HOMEPAGE="https://www.l.u-tokyo.ac.jp/~fkr/" +SRC_URI="https://www.l.u-tokyo.ac.jp/~fkr/tipa/${P}.tar.gz" -LICENSE="LPPL-1.2" -SLOT="0" KEYWORDS="amd64 x86" +LICENSE="LPPL-1.2" +SLOT="0" IUSE="" DEPEND="virtual/latex-base" RDEPEND="${DEPEND}" -src_compile() { +src_prepare() { # install files under /usr/share/texmf/ sed -e 's@PREFIX=/usr/local/teTeX/share/texmf@PREFIX=/usr/share/texmf@' \ - -i Makefile || die "sed failed" + -i Makefile || die "sed #1 failed" sed -e 's/\($(TEXDIR)\)/$(DESTDIR)\/\1/' \ -e 's/\($(FONTDIR)\)/$(DESTDIR)\/\1/g' \ -e 's/\($(MAPDIR)\)/$(DESTDIR)\/\1/' \ - -i Makefile || die "sed failed" + -i Makefile || die "sed #2 failed" # removing `mktexlsr` from Makefile (leads to access violation) - sed -e 's/-mktexlsr//' -i Makefile || die "sed failed" + sed -e 's/-mktexlsr//' -i Makefile || die "sed #3 failed" + default } src_install() { - make DESTDIR="${D}" install || die "make install failed." - dodoc doc/*.{tex,sty,bib,bbl} || die "dodoc failed." - - elog "A huge documentation can be found in '/usr/share/doc/${P}'." + emake DESTDIR="${D}" install + dodoc doc/*.{tex,sty,bib,bbl} } pkg_postinst() {