diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2012-01-04 14:53:02 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2012-01-04 14:53:02 +0000 |
commit | 4d935e3736697007763f9be80c1e0ee815326f4f (patch) | |
tree | e9e0ba698ba29de2925a150ad36dfac04fc1824f /dev-libs/libical | |
parent | Version bump, remove old. (diff) | |
download | gentoo-2-4d935e3736697007763f9be80c1e0ee815326f4f.tar.gz gentoo-2-4d935e3736697007763f9be80c1e0ee815326f4f.tar.bz2 gentoo-2-4d935e3736697007763f9be80c1e0ee815326f4f.zip |
Version bump. Closes bug #347883.
(Portage version: 2.1.10.41/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libical')
-rw-r--r-- | dev-libs/libical/ChangeLog | 10 | ||||
-rw-r--r-- | dev-libs/libical/libical-0.48.ebuild | 50 |
2 files changed, 56 insertions, 4 deletions
diff --git a/dev-libs/libical/ChangeLog b/dev-libs/libical/ChangeLog index 6c3bf6e32af4..7985057e9a73 100644 --- a/dev-libs/libical/ChangeLog +++ b/dev-libs/libical/ChangeLog @@ -1,9 +1,11 @@ # ChangeLog for dev-libs/libical -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libical/ChangeLog,v 1.56 2011/10/01 09:50:53 ssuominen Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libical/ChangeLog,v 1.57 2012/01/04 14:53:02 s4t4n Exp $ - 01 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> libical-0.44-r1.ebuild: - Remove libtool files. +*libical-0.48 (04 Jan 2012) + + 04 Jan 2012; Michele Noberasco <s4t4n@gentoo.org> +libical-0.48.ebuild: + Version bump. Closes bug #347883. *libical-0.44-r1 (19 Aug 2010) diff --git a/dev-libs/libical/libical-0.48.ebuild b/dev-libs/libical/libical-0.48.ebuild new file mode 100644 index 000000000000..b00e5e53402d --- /dev/null +++ b/dev-libs/libical/libical-0.48.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2012 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.1 2012/01/04 14:53:02 s4t4n 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" + +LICENSE="|| ( MPL-1.1 LGPL-2 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +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" + +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 +} |