84 lines
1.8 KiB
Bash
84 lines
1.8 KiB
Bash
|
# Copyright 1999-2017 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=6
|
||
|
|
||
|
PYTHON_COMPAT=( python3_{4,5,6} )
|
||
|
inherit cmake-utils python-any-r1
|
||
|
|
||
|
DESCRIPTION="An implementation of basic iCAL protocols"
|
||
|
HOMEPAGE="https://github.com/libical/libical"
|
||
|
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
|
||
|
LICENSE="|| ( MPL-1.0 LGPL-2.1 )"
|
||
|
SLOT="0/3"
|
||
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
|
||
|
IUSE="berkdb doc examples glib introspection static-libs test"
|
||
|
|
||
|
COMMON_DEPEND="
|
||
|
dev-libs/icu:=
|
||
|
berkdb? ( sys-libs/db:= )
|
||
|
glib? (
|
||
|
dev-libs/glib:2
|
||
|
dev-libs/libxml2:2
|
||
|
)
|
||
|
introspection? ( dev-libs/gobject-introspection:= )
|
||
|
"
|
||
|
DEPEND="${COMMON_DEPEND}
|
||
|
dev-lang/perl
|
||
|
doc? ( app-doc/doxygen )
|
||
|
test? ( ${PYTHON_DEPS} )
|
||
|
"
|
||
|
RDEPEND="${COMMON_DEPEND}
|
||
|
sys-libs/timezone-data
|
||
|
"
|
||
|
|
||
|
DOCS=(
|
||
|
AUTHORS ReadMe.txt ReleaseNotes.txt TEST THANKS TODO
|
||
|
doc/{AddingOrModifyingComponents,UsingLibical}.txt
|
||
|
)
|
||
|
|
||
|
PATCHES=( "${FILESDIR}/${P}-pkgconfig-libdir.patch" )
|
||
|
|
||
|
pkg_setup() {
|
||
|
use test && python-any-r1_pkg_setup
|
||
|
}
|
||
|
|
||
|
src_prepare() {
|
||
|
cmake-utils_src_prepare
|
||
|
|
||
|
use doc || cmake_comment_add_subdirectory doc
|
||
|
use examples || cmake_comment_add_subdirectory examples
|
||
|
}
|
||
|
|
||
|
src_configure() {
|
||
|
local mycmakeargs=(
|
||
|
$(cmake-utils_use_find_package berkdb BDB)
|
||
|
-DICAL_GLIB=$(usex glib)
|
||
|
-DGOBJECT_INTROSPECTION=$(usex introspection)
|
||
|
-DSHARED_ONLY=$(usex !static-libs)
|
||
|
)
|
||
|
cmake-utils_src_configure
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
cmake-utils_src_compile
|
||
|
use doc && cmake-utils_src_compile docs
|
||
|
}
|
||
|
|
||
|
src_test() {
|
||
|
local myctestargs=( -j1 )
|
||
|
cmake-utils_src_test
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
use doc && HTML_DOCS=( "${BUILD_DIR}"/apidocs/html/. )
|
||
|
|
||
|
cmake-utils_src_install
|
||
|
|
||
|
if use examples; then
|
||
|
rm examples/CMakeLists.txt || die
|
||
|
dodoc -r examples
|
||
|
fi
|
||
|
}
|