blob: 811d6e28530eb9c5c1c1533f59b0449c738eb6e1 (
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
32
33
34
35
36
37
38
39
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-util/fteqcc/fteqcc-2501.ebuild,v 1.2 2006/03/20 00:08:39 halcy0n Exp $
inherit eutils
DESCRIPTION="QC compiler"
HOMEPAGE="http://fteqw.sourceforge.net/"
SRC_URI="mirror://sourceforge/fteqw/qclibsrc${PV}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND=""
S="${WORKDIR}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-cleanup-source.patch
sed -i \
-e "s: -O3 : :g" \
-e "s: -s : :g" \
Makefile || die "sed failed"
edos2unix readme.txt
}
src_compile() {
emake BASE_CFLAGS="${CFLAGS} -Wall" || die "emake qcc failed"
}
src_install() {
newbin fteqcc.bin fteqcc || die "newbin fteqcc.bin failed"
dodoc readme.txt
}
|