diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-10-03 13:23:06 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-10-03 13:23:06 +0000 |
commit | fb6446ec2ae71d8604a2605b5e0a7741800234b9 (patch) | |
tree | f541678afd1386deac67794ab2dccf4e07d2e82c /kde-base/kaddressbook | |
parent | Version bump to 009, imported from breakmygentoo.net (Thanks Peter Hyman!). ... (diff) | |
download | historical-fb6446ec2ae71d8604a2605b5e0a7741800234b9.tar.gz historical-fb6446ec2ae71d8604a2605b5e0a7741800234b9.tar.bz2 historical-fb6446ec2ae71d8604a2605b5e0a7741800234b9.zip |
Bump to 3.5.5 (pre-release).
Package-Manager: portage-2.1.2_pre2-r1
Diffstat (limited to 'kde-base/kaddressbook')
-rw-r--r-- | kde-base/kaddressbook/ChangeLog | 8 | ||||
-rw-r--r-- | kde-base/kaddressbook/files/digest-kaddressbook-3.5.5 | 3 | ||||
-rw-r--r-- | kde-base/kaddressbook/kaddressbook-3.5.5.ebuild | 55 |
3 files changed, 65 insertions, 1 deletions
diff --git a/kde-base/kaddressbook/ChangeLog b/kde-base/kaddressbook/ChangeLog index 2f54c9bdf6d7..2c36c59fe3b4 100644 --- a/kde-base/kaddressbook/ChangeLog +++ b/kde-base/kaddressbook/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for kde-base/kaddressbook # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kaddressbook/ChangeLog,v 1.57 2006/09/25 23:10:12 deathwing00 Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kaddressbook/ChangeLog,v 1.58 2006/10/03 09:05:17 flameeyes Exp $ + +*kaddressbook-3.5.5 (03 Oct 2006) + + 03 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> + +kaddressbook-3.5.5.ebuild: + Bump to 3.5.5 (pre-release). 25 Sep 2006; Ioannis Aslanidis <deathwing00@gentoo.org> kaddressbook-3.5.2-r1.ebuild, kaddressbook-3.5.3.ebuild, diff --git a/kde-base/kaddressbook/files/digest-kaddressbook-3.5.5 b/kde-base/kaddressbook/files/digest-kaddressbook-3.5.5 new file mode 100644 index 000000000000..a119724eb257 --- /dev/null +++ b/kde-base/kaddressbook/files/digest-kaddressbook-3.5.5 @@ -0,0 +1,3 @@ +MD5 3f2127f74cb496899bb3f1f6f702353b kdepim-3.5.5.tar.bz2 12908968 +RMD160 5bdcf98909f450ce3839fa72a404571f6cde22f6 kdepim-3.5.5.tar.bz2 12908968 +SHA256 82887df2c2ff00cb60dcfb8aa04527988123b9a4ed70f4c9082a7a0eb9f1f047 kdepim-3.5.5.tar.bz2 12908968 diff --git a/kde-base/kaddressbook/kaddressbook-3.5.5.ebuild b/kde-base/kaddressbook/kaddressbook-3.5.5.ebuild new file mode 100644 index 000000000000..939191bec136 --- /dev/null +++ b/kde-base/kaddressbook/kaddressbook-3.5.5.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kaddressbook/kaddressbook-3.5.5.ebuild,v 1.1 2006/10/03 09:05:18 flameeyes Exp $ + +KMNAME=kdepim +MAXKDEVER=$PV +KM_DEPRANGE="$PV $MAXKDEVER" +inherit kde-meta eutils + +DESCRIPTION="The KDE Address Book" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="gnokii" +DEPEND="$(deprange $PV $MAXKDEVER kde-base/libkdepim) +$(deprange $PV $MAXKDEVER kde-base/libkcal) +$(deprange $PV $MAXKDEVER kde-base/certmanager) +$(deprange 3.5.4 $MAXKDEVER kde-base/libkdenetwork) +$(deprange $PV $MAXKDEVER kde-base/kontact) +gnokii? ( app-mobilephone/gnokii )" + +RDEPEND="${DEPEND}" + +KMCOPYLIB=" + libkdepim libkdepim + libkcal libkcal + libkleopatra certmanager/lib/ + libqgpgme libkdenetwork/qgpgme/ + libkpinterfaces kontact/interfaces/" +KMEXTRACTONLY=" + libkdepim/ + libkdenetwork/ + libkcal/ + certmanager/ + kontact/interfaces/ + akregator + kmail/kmailIface.h" +KMCOMPILEONLY=" + libkcal/libical/src/libical/ + libkcal/libical/src/libicalss/ + akregator/src/librss" + # We add them here because they are standard plugins and programs related to kaddressbook but not a dep of any other kdepim program, so they will be lost if noone install them +KMEXTRA=" + kabc/ + kfile-plugins/vcf + kontact/plugins/kaddressbook" + +src_compile() { + myconf="$myconf $(use_with gnokii)" + export DO_NOT_COMPILE="libical" && kde-meta_src_compile myconf configure + # generate "ical.h" + cd ${S}/libkcal/libical/src/libical && make ical.h + # generate "icalss.h" + cd ${S}/libkcal/libical/src/libicalss && make icalss.h + + kde-meta_src_compile "make" +} |