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/net-libs/libgcal/libgcal-0.9.6.ebuild

55 lines
1.1 KiB

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libgcal/libgcal-0.9.6.ebuild,v 1.1 2011/01/12 14:47:59 tampakrap Exp $
EAPI="3"
inherit cmake-utils
DESCRIPTION="C/C++ interface to the Google Data API"
HOMEPAGE="http://code.google.com/p/libgcal/"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2"
LICENSE="BSD"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="debug doc test"
# Some tests fail
RESTRICT="test"
RDEPEND="
dev-libs/libxml2:2
>=net-misc/curl-7.18.2
"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
test? ( dev-libs/check )
"
DOCS=(README)
src_configure() {
mycmakeargs=(
-DENABLE_TESTS=OFF
$(cmake-utils_use debug CURL_DEBUG)
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
use doc && cmake-utils_src_compile docs
}
src_install() {
use doc && HTML_DOCS=("${CMAKE_BUILD_DIR}/docs/doxygen/html/")
cmake-utils_src_install
}
src_test() {
mycmakeargs+=(-DENABLE_TESTS=ON)
cmake-utils_src_configure
cmake-utils_src_make test
}