diff options
author | Carsten Lohrke <carlo@gentoo.org> | 2007-05-22 21:58:22 +0000 |
---|---|---|
committer | Carsten Lohrke <carlo@gentoo.org> | 2007-05-22 21:58:22 +0000 |
commit | bef5bccf9dbc6e45c474055ed3f7e8b5fba1c739 (patch) | |
tree | 7d8570e14fe7d6ffeec11b99db96d4a7dd12d8c3 /kde-base/kaddressbook | |
parent | hard-enable USE=nls to avoid compile problems thanks Neil Bothwick <neil@digi... (diff) | |
download | historical-bef5bccf9dbc6e45c474055ed3f7e8b5fba1c739.tar.gz historical-bef5bccf9dbc6e45c474055ed3f7e8b5fba1c739.tar.bz2 historical-bef5bccf9dbc6e45c474055ed3f7e8b5fba1c739.zip |
Version bump.
Package-Manager: portage-2.1.2.7
Diffstat (limited to 'kde-base/kaddressbook')
-rw-r--r-- | kde-base/kaddressbook/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/kaddressbook/files/digest-kaddressbook-3.5.7 | 3 | ||||
-rw-r--r-- | kde-base/kaddressbook/kaddressbook-3.5.7.ebuild | 55 |
3 files changed, 64 insertions, 1 deletions
diff --git a/kde-base/kaddressbook/ChangeLog b/kde-base/kaddressbook/ChangeLog index 58c0ff8aaa4d..ca15361dc399 100644 --- a/kde-base/kaddressbook/ChangeLog +++ b/kde-base/kaddressbook/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/kaddressbook # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kaddressbook/ChangeLog,v 1.72 2007/04/11 20:45:18 carlo Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kaddressbook/ChangeLog,v 1.73 2007/05/22 21:05:04 carlo Exp $ + +*kaddressbook-3.5.7 (22 May 2007) + + 22 May 2007; Carsten Lohrke <carlo@gentoo.org> +kaddressbook-3.5.7.ebuild: + Version bump. *kaddressbook-3.5.6-r1 (11 Apr 2007) diff --git a/kde-base/kaddressbook/files/digest-kaddressbook-3.5.7 b/kde-base/kaddressbook/files/digest-kaddressbook-3.5.7 new file mode 100644 index 000000000000..01737c61da89 --- /dev/null +++ b/kde-base/kaddressbook/files/digest-kaddressbook-3.5.7 @@ -0,0 +1,3 @@ +MD5 8571db6dcf4168614c96bb72c493f931 kdepim-3.5.7.tar.bz2 14166061 +RMD160 14c05d4620abf1eb5421ad434dc63f037069e930 kdepim-3.5.7.tar.bz2 14166061 +SHA256 9d981d372f1822662e102b6f84f046e4df771641fc4d041aae81b8fafd47b32e kdepim-3.5.7.tar.bz2 14166061 diff --git a/kde-base/kaddressbook/kaddressbook-3.5.7.ebuild b/kde-base/kaddressbook/kaddressbook-3.5.7.ebuild new file mode 100644 index 000000000000..b5d7a366a0bb --- /dev/null +++ b/kde-base/kaddressbook/kaddressbook-3.5.7.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kaddressbook/kaddressbook-3.5.7.ebuild,v 1.1 2007/05/22 21:05:04 carlo 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 $PV $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" +} |