blob: 43321e88eefbaf219b0249dcd6ebc637485c46b3 (
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
40
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-games/neotools/neotools-0.8.2.ebuild,v 1.2 2006/04/15 11:19:05 tupone Exp $
inherit eutils autotools
DESCRIPTION="Various development tools for NeoEngine"
HOMEPAGE="http://www.neoengine.org/"
SRC_URI="mirror://sourceforge/neoengine/neotools-${PV}.tar.bz2"
LICENSE="MPL-1.1"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE=""
DEPEND=">=dev-games/neoengine-${PV}"
S="${WORKDIR}/neotools"
src_unpack() {
unpack "${A}"
cd "${S}"
sed -i \
-e 's/BUILD_STATIC/BUILD_DYNAMIC/g' \
-e 's/_static//g' \
nscemake/Makefile.am || die "makefile sed failed"
sed -i \
-e 's/ -Werror//' \
configure.in
epatch ${FILESDIR}/${P}-errno.patch
eautoreconf || die "eautoreconf failed"
}
src_install() {
einstall || die "Installation failed"
dodoc AUTHORS ChangeLog*
}
|