mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Seems like the from savanna file changes, contents are the same, tar is different though. Use copy I pulled. Closes: https://bugs.gentoo.org/962135 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
50 lines
1.3 KiB
Bash
50 lines
1.3 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
GIT_TAG="8b7815c867312d4eb51fe6c57dc912a4419f1dd7"
|
|
|
|
DESCRIPTION="Library of common routines intended to be shared"
|
|
HOMEPAGE="https://www.gnu.org/software/gnulib"
|
|
# https://bugs.gentoo.org/962135
|
|
# retrieving this on different days, produces different files :(
|
|
#SRC_URI="https://gitweb.git.savannah.gnu.org/gitweb/?p=${PN}.git;a=snapshot;h=${GIT_TAG};sf=tgz -> ${PN}-${GIT_TAG}.tar.gz"
|
|
SRC_URI="https://dev.gentoo.org/~grobian/distfiles/${PN}-${GIT_TAG}.tar.gz"
|
|
S="${WORKDIR}/${PN}-${GIT_TAG:0:7}"
|
|
|
|
LICENSE="GPL-3+ LGPL-2.1+ FDL-1.3+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64-macos ~x64-macos ~x64-solaris"
|
|
IUSE="doc"
|
|
|
|
src_compile() {
|
|
if use doc; then
|
|
emake -C doc info html
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
dodoc README ChangeLog
|
|
|
|
insinto /usr/share/${PN}
|
|
doins -r build-aux
|
|
doins -r doc
|
|
doins -r lib
|
|
doins -r m4
|
|
doins -r modules
|
|
doins -r tests
|
|
doins -r top
|
|
|
|
# install the real script
|
|
exeinto /usr/share/${PN}
|
|
doexe gnulib-tool.sh
|
|
|
|
# we cannot use the .py impl because it python-exec badly interacts,
|
|
# so we drop it, and force the .sh version; it's not that it matters
|
|
# a whole lot, since this is supposed to be run occasionally
|
|
|
|
# create and install the wrapper
|
|
dosym ../share/${PN}/gnulib-tool.sh /usr/bin/gnulib-tool
|
|
}
|