summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2014-05-19 12:55:58 +0000
committerJohannes Huber <johu@gentoo.org>2014-05-19 12:55:58 +0000
commit86ebd90b14260ade4e876773768ede7225c03b73 (patch)
tree66ab6d1c855ec8b4e4028aee53738d6fd1ecdd1e /dev-libs
parentNew ebuild for dev-java/netty-buffer, async event-driven framework for rapid ... (diff)
downloadgentoo-2-86ebd90b14260ade4e876773768ede7225c03b73.tar.gz
gentoo-2-86ebd90b14260ade4e876773768ede7225c03b73.tar.bz2
gentoo-2-86ebd90b14260ade4e876773768ede7225c03b73.zip
Remove old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/libical/ChangeLog5
-rw-r--r--dev-libs/libical/libical-0.48.ebuild53
2 files changed, 4 insertions, 54 deletions
diff --git a/dev-libs/libical/ChangeLog b/dev-libs/libical/ChangeLog
index 85c36e9f0029..f5dac628674e 100644
--- a/dev-libs/libical/ChangeLog
+++ b/dev-libs/libical/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libical
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libical/ChangeLog,v 1.85 2014/05/17 13:56:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libical/ChangeLog,v 1.86 2014/05/19 12:55:58 johu Exp $
+
+ 19 May 2014; Johannes Huber <johu@gentoo.org> -libical-0.48.ebuild:
+ Remove old.
17 May 2014; Agostino Sarubbo <ago@gentoo.org> libical-0.48-r2.ebuild:
Stable for alpha, wrt bug #509684
diff --git a/dev-libs/libical/libical-0.48.ebuild b/dev-libs/libical/libical-0.48.ebuild
deleted file mode 100644
index ddf9214042e9..000000000000
--- a/dev-libs/libical/libical-0.48.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libical/libical-0.48.ebuild,v 1.10 2013/02/04 06:00:32 patrick Exp $
-
-EAPI=4
-
-DESCRIPTION="An implementation of basic iCAL protocols from citadel, previously known as aurore"
-HOMEPAGE="http://freeassociation.sourceforge.net"
-#SRC_URI="mirror://sourceforge/freeassociation/files/${PN}/${P}/${P}.tar.gz"
-SRC_URI="mirror://sourceforge/freeassociation/${PN}/${P}/${P}.tar.gz"
-
-LICENSE="|| ( MPL-1.1 LGPL-2 )"
-SLOT="0"
-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="examples"
-
-# https://sourceforge.net/tracker2/index.php?func=detail&aid=2196790&group_id=16077&atid=116077
-# Upstream states that tests are supposed to fail (I hope sf updates archives
-# and answer became visible):
-# http://sourceforge.net/mailarchive/forum.php?thread_name=1257441040.20584.3431.camel%40tablet&forum_name=freeassociation-devel
-RESTRICT="test"
-
-DEPEND="dev-lang/perl"
-
-src_prepare() {
- # Do not waste time building examples
- sed -i -e 's/^\(SUBDIRS =.*\)examples\(.*\)$/\1\2/' Makefile.{am,in} || die
- # If errors are fatal, some software can segfault
- sed -i \
- -e 's/^#define ICAL_ERRORS_ARE_FATAL 0/#undef ICAL_ERRORS_ARE_FATAL/' \
- configure || die
-}
-
-src_configure() {
- econf \
- --disable-static \
- --disable-icalerrors-are-fatal
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- rm -f "${ED}"usr/lib*/${PN}*.la
-
- dodoc AUTHORS ChangeLog NEWS README TEST THANKS TODO \
- doc/{AddingOrModifyingComponents,UsingLibical}.txt
-
- if use examples; then
- rm examples/Makefile* examples/CMakeLists.txt
- insinto /usr/share/doc/${PF}/examples
- doins examples/*
- fi
-}