blob: 3ce50fc81fad190b65b6f0fff610ce5b8d62f750 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
EGIT_REPO_URI="git://github.com/graphitemaster/gmqcc.git"
inherit toolchain-funcs git-2
DESCRIPTION="An Improved Quake C Compiler"
HOMEPAGE="http://graphitemaster.github.com/gmqcc/"
SRC_URI=""
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE=""
src_configure() {
tc-export CC
}
src_install() {
mkdir -p "${D}/usr/bin"
cp "${S}/gmqcc" "${D}/usr/bin/"
# mkdir -p "${D}/usr/include/"
# cp "${S}/guid.h" "${D}/usr/include/"
# emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
# dodoc README AUTHORS TODO CHANGES
}
|