blob: 8df239541b802629bf4bb4369bbdefa58e0d872c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libical/libical-1.0-r1.ebuild,v 1.1 2014/04/14 15:17:42 johu Exp $
EAPI=5
inherit cmake-utils
DESCRIPTION="An implementation of basic iCAL protocols from citadel, previously known as aurore"
HOMEPAGE="http://freeassociation.sourceforge.net"
SRC_URI="mirror://sourceforge/freeassociation/${PN}/${P}/${P}.tar.gz"
LICENSE="|| ( MPL-1.1 LGPL-2 )"
SLOT="0/1"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE="doc examples introspection static-libs"
RDEPEND="introspection? ( dev-libs/gobject-introspection )"
DEPEND="${RDEPEND}
dev-lang/perl"
src_configure() {
local mycmakeargs=" $( cmake-utils_use static-libs STATIC_LIBRARY ) \
$( cmake-utils_use introspection GOBJECT_INTROSPECTION )"
cmake-utils_src_configure
}
DOCS=(
AUTHORS ChangeLog NEWS README TEST THANKS TODO
doc/{AddingOrModifyingComponents,UsingLibical}.txt
)
src_install() {
cmake-utils_src_install
if use examples; then
rm examples/Makefile* examples/CMakeLists.txt
insinto /usr/share/doc/${PF}/examples
doins examples/*
fi
}
|