35 lines
1 KiB
Bash
35 lines
1 KiB
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-devel/boost-m4/boost-m4-0.4-r1.ebuild,v 1.1 2015/07/19 09:57:35 rhill Exp $
|
|
|
|
EAPI=4
|
|
|
|
inherit eutils vcs-snapshot
|
|
|
|
DESCRIPTION="Another set of autoconf macros for compiling against boost"
|
|
HOMEPAGE="http://github.com/tsuna/boost.m4"
|
|
SRC_URI="${HOMEPAGE}/tarball/v${PV} -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
|
|
IUSE=""
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-gcc5.patch
|
|
}
|
|
|
|
# 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
|
|
}
|