46 lines
1,022 B
Bash
46 lines
1,022 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-libs/rabbitmq-c/rabbitmq-c-0.3.0.ebuild,v 1.1 2013/03/14 18:50:36 olemarkus Exp $
|
|
|
|
EAPI="5"
|
|
|
|
inherit cmake-utils eutils multilib
|
|
|
|
DESCRIPTION="RabbitMQ C client"
|
|
HOMEPAGE="https://github.com/alanxz/rabbitmq-c"
|
|
|
|
if [[ ${PV} == *9999* ]]; then
|
|
inherit git-2
|
|
EGIT_REPO_URI="git://github.com/alanxz/rabbitmq-c.git"
|
|
KEYWORDS="-*"
|
|
else
|
|
SRC_URI="https://github.com/alanxz/rabbitmq-c/archive/${PN}-v${PV}.zip"
|
|
KEYWORDS="~amd64 ~x86"
|
|
fi
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
IUSE="tools"
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
DOCS=( "AUTHORS" "README.md" "THANKS" "TODO" )
|
|
PATCHES=( "${FILESDIR}/xmlto.patch" )
|
|
|
|
src_unpack() {
|
|
if [[ ${PV} == *9999* ]]; then
|
|
git-2_src_unpack
|
|
else
|
|
unpack ${A}
|
|
mv ${PN}* ${P} || die
|
|
fi
|
|
}
|
|
|
|
src_configure() {
|
|
mycmakeargs=(
|
|
-DCMAKE_SKIP_RPATH=ON
|
|
$(cmake-utils_use tools BUILD_TOOLS)
|
|
$(cmake-utils_use tools BUILD_TOOLS_DOCS)
|
|
)
|
|
cmake-utils_src_configure
|
|
}
|