You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/angelscript/angelscript-2.26.2-r1.ebuild

61 lines
1.4 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/angelscript/angelscript-2.26.2-r1.ebuild,v 1.1 2013/05/04 22:05:59 hasufell Exp $
EAPI=5
inherit toolchain-funcs multilib-minimal
DESCRIPTION="A flexible, cross-platform scripting library"
HOMEPAGE="http://www.angelcode.com/angelscript/"
SRC_URI="http://www.angelcode.com/angelscript/sdk/files/angelscript_${PV}.zip"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc static-libs"
DEPEND="app-arch/unzip"
S=${WORKDIR}/sdk
S2=${WORKDIR}/sdk_static
pkg_setup() {
tc-export CXX AR RANLIB
}
src_prepare() {
if use static-libs ; then
cp -pR "${WORKDIR}"/sdk "${S2}"/ || die
fi
multilib_copy_sources
}
multilib_src_compile() {
einfo "Shared build"
emake -C ${PN}/projects/gnuc SHARED=1 VERSION=${PV}
if [[ ${ABI} == ${DEFAULT_ABI} ]] ; then
if use static-libs ; then
einfo "Static build"
emake -C "${S2}"/${PN}/projects/gnuc
fi
fi
}
multilib_src_install() {
doheader ${PN}/include/angelscript.h
dolib.so ${PN}/lib/libangelscript-${PV}.so
dosym libangelscript-${PV}.so /usr/$(get_libdir)/libangelscript.so
if [[ ${ABI} == ${DEFAULT_ABI} ]] ; then
if use static-libs ; then
dolib.a "${S2}"/${PN}/lib/libangelscript.a
fi
fi
}
multilib_src_install_all() {
use doc && dohtml -r "${WORKDIR}"/sdk/docs/*
}