hasufell 14/10/27 20:06:23 Modified: ChangeLog Added: angelscript-2.29.2.ebuild Log: version bump (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
Revision Changes Path 1.21 dev-libs/angelscript/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/angelscript/ChangeLog?rev=1.21&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/angelscript/ChangeLog?rev=1.21&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/angelscript/ChangeLog?r1=1.20&r2=1.21 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/angelscript/ChangeLog,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- ChangeLog 24 Jul 2014 20:12:56 -0000 1.20 +++ ChangeLog 27 Oct 2014 20:06:23 -0000 1.21 @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/angelscript # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/angelscript/ChangeLog,v 1.20 2014/07/24 20:12:56 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/angelscript/ChangeLog,v 1.21 2014/10/27 20:06:23 hasufell Exp $ + +*angelscript-2.29.2 (27 Oct 2014) + + 27 Oct 2014; Julian Ospald <[email protected]> +angelscript-2.29.2.ebuild, + +files/angelscript-2.29.2-execstack.patch: + version bump *angelscript-2.29.1 (24 Jul 2014) 1.1 dev-libs/angelscript/angelscript-2.29.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/angelscript/angelscript-2.29.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/angelscript/angelscript-2.29.2.ebuild?rev=1.1&content-type=text/plain Index: angelscript-2.29.2.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/angelscript/angelscript-2.29.2.ebuild,v 1.1 2014/10/27 20:06:23 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 epatch "${FILESDIR}"/${P}-execstack.patch multilib_copy_sources } multilib_src_compile() { einfo "Shared build" emake -C ${PN}/projects/gnuc SHARED=1 VERSION=${PV} if use static-libs ; then einfo "Static build" emake -C ${PN}/projects/gnuc 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 use static-libs ; then dolib.a ${PN}/lib/libangelscript.a fi } multilib_src_install_all() { use doc && dohtml -r "${WORKDIR}"/sdk/docs/* }
