mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
31 lines
918 B
Bash
31 lines
918 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
BOOST_COMMIT="0c955e2c32804d6140676052a9e684ca84bf086d"
|
|
|
|
DESCRIPTION="Another set of autoconf macros for compiling against boost"
|
|
HOMEPAGE="https://github.com/tsuna/boost.m4"
|
|
SRC_URI="https://github.com/tsuna/boost.m4/archive/${BOOST_COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}"/${PN/-/.}-${BOOST_COMMIT}
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm ~hppa ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos"
|
|
|
|
# boost.m4 has a buildsystem, but the distributer didn't use make dist
|
|
# so we'd have to eautoreconf to use it. Also, its ./configure script
|
|
# DEPENDs on boost. For installing one file, bootstrapping the
|
|
# buildsystem isn't worth it.
|
|
src_configure() { :; }
|
|
|
|
src_compile() { :; }
|
|
|
|
src_install() {
|
|
insinto /usr/share/aclocal
|
|
doins build-aux/boost.m4
|
|
|
|
dodoc AUTHORS NEWS README THANKS
|
|
}
|