diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2008-10-01 15:11:33 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2008-10-01 15:11:33 +0000 |
commit | 498913b350da6008d66a52ae4a65d309ccd685b4 (patch) | |
tree | e22f4a4dbbe36adf59cad9eee7985ac55d003998 /dev-libs/libical | |
parent | stable ppc64, bug 170220 (diff) | |
download | gentoo-2-498913b350da6008d66a52ae4a65d309ccd685b4.tar.gz gentoo-2-498913b350da6008d66a52ae4a65d309ccd685b4.tar.bz2 gentoo-2-498913b350da6008d66a52ae4a65d309ccd685b4.zip |
Revision bump, hopefully fixing (again) bug #66377.
(Portage version: 2.1.4.4)
Diffstat (limited to 'dev-libs/libical')
-rw-r--r-- | dev-libs/libical/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libical/libical-0.33-r1.ebuild | 23 |
2 files changed, 29 insertions, 1 deletions
diff --git a/dev-libs/libical/ChangeLog b/dev-libs/libical/ChangeLog index 09c4d7e72c04..ab8adcdf661b 100644 --- a/dev-libs/libical/ChangeLog +++ b/dev-libs/libical/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libical # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libical/ChangeLog,v 1.42 2008/09/24 08:59:56 s4t4n Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libical/ChangeLog,v 1.43 2008/10/01 15:11:33 s4t4n Exp $ + +*libical-0.33-r1 (01 Oct 2008) + + 01 Oct 2008; Michele Noberasco <s4t4n@gentoo.org> +libical-0.33-r1.ebuild: + Revision bump, hopefully fixing (again) bug #66377. *libical-0.33 (24 Sep 2008) diff --git a/dev-libs/libical/libical-0.33-r1.ebuild b/dev-libs/libical/libical-0.33-r1.ebuild new file mode 100644 index 000000000000..05494f60dc12 --- /dev/null +++ b/dev-libs/libical/libical-0.33-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libical/libical-0.33-r1.ebuild,v 1.1 2008/10/01 15:11:33 s4t4n Exp $ + +DESCRIPTION="a implementation of basic iCAL protocols from citadel, previously known as aurore." +HOMEPAGE="http://www.citadel.org" +SRC_URI="http://easyinstall.citadel.org/${P}.tar.gz" + +LICENSE="|| ( MPL-1.1 LGPL-2 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +src_compile() { + # Fix 66377 + LDFLAGS="${LDFLAGS} -lpthread" econf || die "Configuration failed" + emake || die "Compilation failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog NEWS README TEST THANKS TODO doc/*.txt +} |