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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 63E6F158086 for ; Sat, 27 Nov 2021 06:39:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F66F2BC020; Sat, 27 Nov 2021 06:39:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4196E2BC020 for ; Sat, 27 Nov 2021 06:39:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 49BAF343030 for ; Sat, 27 Nov 2021 06:39:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA01E1EA for ; Sat, 27 Nov 2021 06:39:21 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1637995145.62be5bffdc69157a8838a5699b09629fb465703b.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/stklos/, dev-scheme/stklos/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/stklos/files/stklos-1.10-gentoo.patch dev-scheme/stklos/stklos-1.10-r2.ebuild X-VCS-Directories: dev-scheme/stklos/ dev-scheme/stklos/files/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 62be5bffdc69157a8838a5699b09629fb465703b X-VCS-Branch: master Date: Sat, 27 Nov 2021 06:39:21 +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: 4eaca1e2-ce73-4a33-8865-62e8713710f7 X-Archives-Hash: ff5ed9ca6327de1adbdad1d8c6e59a33 commit: 62be5bffdc69157a8838a5699b09629fb465703b Author: Akinori Hattori gentoo org> AuthorDate: Sat Nov 27 06:34:46 2021 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Sat Nov 27 06:39:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62be5bff dev-scheme/stklos: fix installation paths Closes: https://bugs.gentoo.org/803914 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Akinori Hattori gentoo.org> dev-scheme/stklos/files/stklos-1.10-gentoo.patch | 40 ++++++++++++++++++++++++ dev-scheme/stklos/stklos-1.10-r2.ebuild | 4 +++ 2 files changed, 44 insertions(+) diff --git a/dev-scheme/stklos/files/stklos-1.10-gentoo.patch b/dev-scheme/stklos/files/stklos-1.10-gentoo.patch new file mode 100644 index 000000000000..56f5440cf1dc --- /dev/null +++ b/dev-scheme/stklos/files/stklos-1.10-gentoo.patch @@ -0,0 +1,40 @@ +--- a/doc/Makefile.am ++++ b/doc/Makefile.am +@@ -4,7 +4,6 @@ + # Creation date: 11-Apr-2000 10:30 (eg) + # Last file update: 23-Oct-2010 11:52 (eg) + +-mandir = $(prefix)/share/man + man_MANS = stklos.1 stklos-config.1 stklos-compile.1 stklos-genlex.1 \ + stklos-pkg.1 + EXTRA_DIST = $(man_MANS) +@@ -16,15 +16,13 @@ + schemedir = $(prefix)/share/@PACKAGE@/@VERSION@ + scheme_DATA = DOCDB + +-doclocation = $(prefix)/share/doc/@PACKAGE@-@VERSION@ +- +-docpdfdir = $(doclocation)/pdf ++docpdfdir = $(pdfdir) + docpdf_DATA = pdf/stklos-ref.pdf + +-dochtmldir = $(doclocation)/html ++dochtmldir = $(htmldir) + dochtml_DATA= $(wildcard html/stklos-ref*.html) $(wildcard html/*.css) + +-docimgdir = $(doclocation)/html/images ++docimgdir = $(htmldir)/images + docimg_DATA = $(wildcard html/images/*) + + +--- a/pkgman/Makefile.am ++++ b/pkgman/Makefile.am +@@ -4,7 +4,7 @@ + # Last file update: 4-Dec-2011 16:48 (eg) + + +-makefiledir= $(prefix)/etc/stklos ++makefiledir= $(prefix)/share/@PACKAGE@/@VERSION@/etc + makefile_DATA= etc/Makefile-scmpkg.tmpl + + bin_SCRIPTS = stklos-pkg diff --git a/dev-scheme/stklos/stklos-1.10-r2.ebuild b/dev-scheme/stklos/stklos-1.10-r2.ebuild index 6fd3a1acef34..72aa6c496083 100644 --- a/dev-scheme/stklos/stklos-1.10-r2.ebuild +++ b/dev-scheme/stklos/stklos-1.10-r2.ebuild @@ -3,6 +3,8 @@ EAPI="8" +inherit autotools + DESCRIPTION="fast and light Scheme implementation" HOMEPAGE="https://www.stklos.net/" SRC_URI="https://www.${PN}.net/download/${P}.tar.gz" @@ -18,12 +20,14 @@ RDEPEND="dev-libs/boehm-gc[threads?] dev-libs/libpcre" DEPEND="${RDEPEND}" +PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) DOCS=( AUTHORS ChangeLog NEWS PACKAGES-USED PORTING-NOTES README SUPPORTED-SRFIS ) src_prepare() { rm -rf {ffi,gc,gmp,pcre} default + eautoreconf } src_configure() {