aballier 14/10/23 16:03:46
Added: metadata.xml ChangeLog libccd-2.0.ebuild
libccd-9999.ebuild
Log:
initial import, ebuild by me
Signed-off-by: [email protected]
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key
160F534A)
Revision Changes Path
1.1 sci-libs/libccd/metadata.xml
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libccd/metadata.xml?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libccd/metadata.xml?rev=1.1&content-type=text/plain
Index: metadata.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>[email protected]</email>
<name>Alexis Ballier</name>
</maintainer>
<use>
<flag name="double">Use double precision floats.</flag>
</use>
</pkgmetadata>
1.1 sci-libs/libccd/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libccd/ChangeLog?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libccd/ChangeLog?rev=1.1&content-type=text/plain
Index: ChangeLog
===================================================================
# ChangeLog for sci-libs/libccd
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/libccd/ChangeLog,v 1.1 2014/10/23
16:03:46 aballier Exp $
*libccd-9999 (23 Oct 2014)
*libccd-2.0 (23 Oct 2014)
23 Oct 2014; Alexis Ballier <[email protected]> +libccd-2.0.ebuild,
+libccd-9999.ebuild, +metadata.xml:
initial import, ebuild by me
1.1 sci-libs/libccd/libccd-2.0.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libccd/libccd-2.0.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libccd/libccd-2.0.ebuild?rev=1.1&content-type=text/plain
Index: libccd-2.0.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/libccd/libccd-2.0.ebuild,v 1.1
2014/10/23 16:03:46 aballier Exp $
EAPI=5
SCM=""
if [ "${PV#9999}" != "${PV}" ] ; then
SCM="git-r3"
EGIT_REPO_URI="http://github.com/danfis/libccd"
fi
inherit ${SCM} cmake-utils toolchain-funcs
if [ "${PV#9999}" != "${PV}" ] ; then
KEYWORDS=""
SRC_URI=""
else
KEYWORDS="~amd64"
SRC_URI="http://libccd.danfis.cz/files/${P}.tar.gz"
fi
DESCRIPTION="Library for collision detection between two convex shapes"
HOMEPAGE="http://libccd.danfis.cz/"
LICENSE="BSD"
SLOT="0"
IUSE="double doc"
RDEPEND=""
DEPEND="${RDEPEND}
doc? ( dev-python/sphinx )"
DOCS=( README )
src_configure() {
local mycmakeargs=(
"-DCCD_DOUBLE=$(usex double TRUE FALSE)"
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
if use doc ; then
cd "${S}/doc"
emake SPHINXBUILD=sphinx-build html
fi
}
src_test() {
cd src/testsuites
tc-export CC
LDFLAGS="-L${BUILD_DIR} ${LDFLAGS}" \
LD_LIBRARY_PATH="${BUILD_DIR}:${LD_LIBRARY_PATH}" \
emake check
}
src_install() {
cmake-utils_src_install
use doc && dohtml -r "${S}/doc/_build/html/"*
}
1.1 sci-libs/libccd/libccd-9999.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libccd/libccd-9999.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libccd/libccd-9999.ebuild?rev=1.1&content-type=text/plain
Index: libccd-9999.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/libccd/libccd-9999.ebuild,v 1.1
2014/10/23 16:03:46 aballier Exp $
EAPI=5
SCM=""
if [ "${PV#9999}" != "${PV}" ] ; then
SCM="git-r3"
EGIT_REPO_URI="http://github.com/danfis/libccd"
fi
inherit ${SCM} cmake-utils toolchain-funcs
if [ "${PV#9999}" != "${PV}" ] ; then
KEYWORDS=""
SRC_URI=""
else
KEYWORDS="~amd64"
SRC_URI="http://libccd.danfis.cz/files/${P}.tar.gz"
fi
DESCRIPTION="Library for collision detection between two convex shapes"
HOMEPAGE="http://libccd.danfis.cz/"
LICENSE="BSD"
SLOT="0"
IUSE="double doc"
RDEPEND=""
DEPEND="${RDEPEND}
doc? ( dev-python/sphinx )"
DOCS=( README )
src_configure() {
local mycmakeargs=(
"-DCCD_DOUBLE=$(usex double TRUE FALSE)"
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
if use doc ; then
cd "${S}/doc"
emake SPHINXBUILD=sphinx-build html
fi
}
src_test() {
cd src/testsuites
tc-export CC
LDFLAGS="-L${BUILD_DIR} ${LDFLAGS}" \
LD_LIBRARY_PATH="${BUILD_DIR}:${LD_LIBRARY_PATH}" \
emake check
}
src_install() {
cmake-utils_src_install
use doc && dohtml -r "${S}/doc/_build/html/"*
}