diff options
Diffstat (limited to 'dev-libs/msgpack/msgpack-0.6.0_pre20150220.ebuild')
-rw-r--r-- | dev-libs/msgpack/msgpack-0.6.0_pre20150220.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-libs/msgpack/msgpack-0.6.0_pre20150220.ebuild b/dev-libs/msgpack/msgpack-0.6.0_pre20150220.ebuild new file mode 100644 index 0000000..3497fef --- /dev/null +++ b/dev-libs/msgpack/msgpack-0.6.0_pre20150220.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +inherit cmake-utils + +DESCRIPTION="MessagePack is a binary-based efficient data interchange format" +HOMEPAGE="http://msgpack.org/ https://github.com/msgpack/msgpack-c/" +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/${PN}/${PN}-c.git" + KEYWORDS="" +else + inherit vcs-snapshot + COMMIT="f6d0cd9a4ba46f4341014a199e3d352fad76b215" + SRC_URI="https://github.com/${PN}/${PN}-c/tarball/${COMMIT} -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="static-libs test" + +DEPEND="test? ( >=dev-cpp/gtest-1.6.0-r2 )" +DOCS=( CHANGELOG.md QUICKSTART-C.md QUICKSTART-CPP.md README.md CROSSLANG.md ) |