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 91568138334 for ; Fri, 1 Feb 2019 09:37:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A03A1E09BE; Fri, 1 Feb 2019 09:37:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 734B2E09BE for ; Fri, 1 Feb 2019 09:37:48 +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 02FA3335DBF for ; Fri, 1 Feb 2019 09:37:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E577522 for ; Fri, 1 Feb 2019 09:37:45 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1549013860.30e26b979f8c928eee6210c6a637a15b9a5b0b40.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pinfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/pinfo/pinfo-0.6.10-r7.ebuild X-VCS-Directories: app-text/pinfo/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 30e26b979f8c928eee6210c6a637a15b9a5b0b40 X-VCS-Branch: master Date: Fri, 1 Feb 2019 09:37:45 +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: 949f42e2-4af6-49f6-b5e5-549a34be342c X-Archives-Hash: 4717bb1b17cf03ee9aa342a8e81489ef commit: 30e26b979f8c928eee6210c6a637a15b9a5b0b40 Author: Jeroen Roovers gentoo org> AuthorDate: Fri Feb 1 09:36:39 2019 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Fri Feb 1 09:37:40 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30e26b97 app-text/pinfo: Fix installing /etc/pinforc in prefix Patch by Susan Wilson. Thanks! Package-Manager: Portage-2.3.59, Repoman-2.3.12 Fixes: https://bugs.gentoo.org/676992 Signed-off-by: Jeroen Roovers gentoo.org> app-text/pinfo/pinfo-0.6.10-r7.ebuild | 60 +++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/app-text/pinfo/pinfo-0.6.10-r7.ebuild b/app-text/pinfo/pinfo-0.6.10-r7.ebuild new file mode 100644 index 00000000000..dc042896698 --- /dev/null +++ b/app-text/pinfo/pinfo-0.6.10-r7.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools flag-o-matic + +DESCRIPTION="Hypertext info and man viewer based on (n)curses" +HOMEPAGE="http://pinfo.alioth.debian.org/" +SRC_URI="https://alioth.debian.org/frs/download.php/3351/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="nls readline" + +RDEPEND=" + sys-libs/ncurses:0= + sys-libs/readline:0= + nls? ( virtual/libintl ) +" + +DEPEND=" + ${RDEPEND} + sys-apps/texinfo + sys-devel/bison + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" +PATCHES=( + "${FILESDIR}"/${PN}-0.6.9-as-needed.patch + "${FILESDIR}"/${PN}-0.6.9-GROFF_NO_SGR.patch + "${FILESDIR}"/${PN}-0.6.9-lzma-xz.patch + "${FILESDIR}"/${PN}-0.6.10-version.patch + "${FILESDIR}"/${PN}-0.6.10-info-suffix.patch + "${FILESDIR}"/${PN}-0.6.10-dir-file.patch + "${FILESDIR}"/${PN}-0.6.10-tinfo.patch + "${FILESDIR}"/${PN}-0.6.10-gettext-0.19.patch + "${FILESDIR}"/${PN}-0.6.10-ncurses-check.patch + "${FILESDIR}"/${PN}-0.6.10-libc-basename.patch + "${FILESDIR}"/${PN}-0.6.10-clearfilenameprefix.patch + "${FILESDIR}"/${PN}-0.6.10-gcc-7-inline.patch +) + +src_prepare() { + default + + eautoreconf + + append-cflags -D_BSD_SOURCE -D_DEFAULT_SOURCE # sbrk() +} + +src_configure() { + econf \ + $(use_with readline) \ + $(use_enable nls) +} + +src_install() { + emake DESTDIR="${D}" sysconfdir="${EPREFIX}/etc" install +}