34 lines
773 B
Bash
34 lines
773 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-games/ois/ois-1.3.ebuild,v 1.4 2012/07/17 06:59:31 tupone Exp $
|
|
|
|
EAPI=4
|
|
inherit autotools autotools-utils
|
|
|
|
MY_P=${PN}-v${PV/./-}
|
|
DESCRIPTION="Object-oriented Input System - A cross-platform C++ input handling library"
|
|
HOMEPAGE="http://www.wreckedgames.com/"
|
|
SRC_URI="mirror://sourceforge/wgois/${MY_P/-/_}.tar.gz"
|
|
|
|
LICENSE="ZLIB"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE="static-libs"
|
|
|
|
DEPEND="x11-libs/libXaw
|
|
x11-libs/libX11"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-gcc47.patch
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
local myeconfargs=(
|
|
$(use_enable static-libs static)
|
|
)
|
|
autotools-utils_src_configure
|
|
|
|
}
|