diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-25 02:57:53 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-25 02:57:53 +0000 |
commit | 7f126f76f2f38475535b219f79ac4f55c9ddbc17 (patch) | |
tree | 15e89d177cb82657bbc7ad22990082379701139c /kde-base/kaddressbook | |
parent | Bump to 3.5.4 (pre-release). (diff) | |
download | gentoo-2-7f126f76f2f38475535b219f79ac4f55c9ddbc17.tar.gz gentoo-2-7f126f76f2f38475535b219f79ac4f55c9ddbc17.tar.bz2 gentoo-2-7f126f76f2f38475535b219f79ac4f55c9ddbc17.zip |
Bump to 3.5.4 (pre-release).
(Portage version: 2.1.1_pre3-r3)
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.4 | 3 | ||||
-rw-r--r-- | kde-base/kaddressbook/kaddressbook-3.5.4.ebuild | 53 |
3 files changed, 63 insertions, 1 deletions
diff --git a/kde-base/kaddressbook/ChangeLog b/kde-base/kaddressbook/ChangeLog index 55cd4280ded8..a4e306c4c88a 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.52 2006/06/22 12:57:23 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kaddressbook/ChangeLog,v 1.53 2006/07/25 02:57:53 flameeyes Exp $ + +*kaddressbook-3.5.4 (25 Jul 2006) + + 25 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> + +kaddressbook-3.5.4.ebuild: + Bump to 3.5.4 (pre-release). 22 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> kaddressbook-3.4.3.ebuild, kaddressbook-3.5.2-r1.ebuild, diff --git a/kde-base/kaddressbook/files/digest-kaddressbook-3.5.4 b/kde-base/kaddressbook/files/digest-kaddressbook-3.5.4 new file mode 100644 index 000000000000..1b21946a4916 --- /dev/null +++ b/kde-base/kaddressbook/files/digest-kaddressbook-3.5.4 @@ -0,0 +1,3 @@ +MD5 4a01ceaeb6067d03003edb77b104f559 kdepim-3.5.4.tar.bz2 12925075 +RMD160 d3ecf9353dc578c392e1b82c72c7b8a2a88fdcdc kdepim-3.5.4.tar.bz2 12925075 +SHA256 b31dee9c2d7ebdeb1841c22dbdeaf1c88ee1f0d3b11897592305ec076d02edfa kdepim-3.5.4.tar.bz2 12925075 diff --git a/kde-base/kaddressbook/kaddressbook-3.5.4.ebuild b/kde-base/kaddressbook/kaddressbook-3.5.4.ebuild new file mode 100644 index 000000000000..2cd2fe2cb7d3 --- /dev/null +++ b/kde-base/kaddressbook/kaddressbook-3.5.4.ebuild @@ -0,0 +1,53 @@ +# 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.4.ebuild,v 1.1 2006/07/25 02:57:53 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" +IUSE="gnokii" +DEPEND="$(deprange $PV $MAXKDEVER kde-base/libkdepim) +$(deprange $PV $MAXKDEVER kde-base/libkcal) +$(deprange $PV $MAXKDEVER kde-base/certmanager) +$(deprange $PV $MAXKDEVER kde-base/libkdenetwork) +$(deprange $PV $MAXKDEVER kde-base/kontact) +gnokii? ( app-mobilephone/gnokii )" + +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" +} |