Files
gentoo/dev-cpp/gccxml/gccxml-0.9.0_pre20131217.ebuild
Robin H. Johnson 61b861acd7 Drop $Id$ per council decision in bug #611234.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2017-02-28 11:50:50 -08:00

34 lines
770 B
Bash

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils flag-o-matic
DESCRIPTION="XML output extension to GCC"
HOMEPAGE="http://www.gccxml.org/"
SRC_URI="https://dev.gentoo.org/~pinkbyte/distfiles/snapshots/${P}.tar.xz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~arm ~mips ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
src_prepare() {
# fix bug 549300 by restoring pre-GCC5 inline semantics
append-cflags -std=gnu89
# patch below taken from Debian
sed -i \
-e 's/xatexit.c//' \
GCC/libiberty/CMakeLists.txt || die "sed failed"
cmake-utils_src_prepare
}
src_configure() {
local mycmakeargs=(
-DGCCXML_DOC_DIR:STRING="share/doc/${PF}"
)
cmake-utils_src_configure
}