diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-05-29 13:48:06 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-05-29 14:31:08 +0200 |
commit | 83356ac5464317edf0b0d21b2b301658e6f0b4d8 (patch) | |
tree | 09398ff95f4f02e3febf43d5f6f78c85354d9595 /dev-libs/libical | |
parent | net-firewall/firewalld: Drop 0.4.3.3 (Qt4-based) (diff) | |
download | gentoo-83356ac5464317edf0b0d21b2b301658e6f0b4d8.tar.gz gentoo-83356ac5464317edf0b0d21b2b301658e6f0b4d8.tar.bz2 gentoo-83356ac5464317edf0b0d21b2b301658e6f0b4d8.zip |
dev-libs/libical: Drop 2.0.0-r2
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'dev-libs/libical')
-rw-r--r-- | dev-libs/libical/libical-2.0.0-r2.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/dev-libs/libical/libical-2.0.0-r2.ebuild b/dev-libs/libical/libical-2.0.0-r2.ebuild deleted file mode 100644 index c0e34d96a4ea..000000000000 --- a/dev-libs/libical/libical-2.0.0-r2.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit cmake-utils - -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/2" -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="doc examples static-libs" - -# The GOBJECT_INTROSPECTION build is broken, and upstream has given up -# on it at the moment (it's disabled in Travis). It will probably come -# back in v2.0.1 or later. -# This snippet belongs to RDEPEND: -# introspection? ( dev-libs/gobject-introspection )" -RDEPEND="dev-libs/icu:=" -DEPEND="${RDEPEND} - dev-lang/perl" - -DOCS=( - AUTHORS ReadMe.txt ReleaseNotes.txt TEST THANKS TODO - doc/{AddingOrModifyingComponents,UsingLibical}.txt -) - -PATCHES=( - "${FILESDIR}/fix-libdir-location.patch" - "${FILESDIR}/${P}-tests.patch" #bug 532296 -) - -src_configure() { - # See above, introspection is disabled for v2.0.0 at least. - #local mycmakeargs=( - # -DGOBJECT_INTROSPECTION=$(usex introspection true false) - #) - use static-libs || mycmakeargs+=( -DSHARED_ONLY=ON ) - cmake-utils_src_configure -} - -src_test() { - local myctestargs=( -j1 ) - cmake-utils_src_test -} - -src_install() { - cmake-utils_src_install - - if use examples; then - rm examples/CMakeLists.txt || die - dodoc -r examples - fi -} |