From: Akinori Hattori Date: Wed, 29 Mar 2006 12:35:46 +0000 (+0000) Subject: new upstream release. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0611ef2c47b8a04f60bf89511c8fff289267ae2f;p=gentoo.git new upstream release. Package-Manager: portage-2.0.54 --- diff --git a/mail-client/sylpheed/ChangeLog b/mail-client/sylpheed/ChangeLog index ee83978cae2e..0aae4311c09a 100644 --- a/mail-client/sylpheed/ChangeLog +++ b/mail-client/sylpheed/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for mail-client/sylpheed # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/ChangeLog,v 1.173 2006/03/20 14:43:18 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/ChangeLog,v 1.174 2006/03/29 12:35:45 hattya Exp $ + +*sylpheed-2.2.4 (29 Mar 2006) + + 29 Mar 2006; Akinori Hattori +sylpheed-2.2.4.ebuild: + new upstream release. *sylpheed-2.2.3 (20 Mar 2006) diff --git a/mail-client/sylpheed/Manifest b/mail-client/sylpheed/Manifest index f267c650167d..0788f42686ff 100644 --- a/mail-client/sylpheed/Manifest +++ b/mail-client/sylpheed/Manifest @@ -1,8 +1,9 @@ -MD5 d82c9121ab7a4dd9adb1a5e4426a1467 ChangeLog 31531 +MD5 9c67ce681a0ba74756ced55b106b412b ChangeLog 31662 MD5 4d08519a369aeb7229167e0d1d7e75a8 files/digest-sylpheed-2.0.4 68 MD5 6b71dbeb45c82f1bb30f96347c10921f files/digest-sylpheed-2.2.0 68 MD5 2d69ae356e44c47051006a2d343cd72c files/digest-sylpheed-2.2.2 68 MD5 3513c49003007da25a9e00056ac7f26e files/digest-sylpheed-2.2.3 68 +MD5 6adbaa69975bd746c2499e5cf5220c93 files/digest-sylpheed-2.2.4 68 MD5 01498a2c484618f1d4c663eac986c55e files/sylpheed-2.1-shared-mime-info.diff 1637 MD5 0f4074345f62ede519f0b65730e4b762 files/sylpheed-2.2-replace-aspell-with-enchant.diff 3197 MD5 4cbec71671b7349c904f860a12fee5d9 files/sylpheed-namespace.diff 550 @@ -12,3 +13,4 @@ MD5 38118ad46ff05a99e88f44780bf8ff9c sylpheed-2.0.4.ebuild 1445 MD5 31d893361b0a7d3083d24648192c1e3e sylpheed-2.2.0.ebuild 1469 MD5 cce1cb0f25349e8422041e2669d97bcd sylpheed-2.2.2.ebuild 1473 MD5 20443d8cd3fc5e915921ebd1f8433ec6 sylpheed-2.2.3.ebuild 1473 +MD5 202fe318ef40fedf7e904f2c7c89c952 sylpheed-2.2.4.ebuild 1473 diff --git a/mail-client/sylpheed/files/digest-sylpheed-2.2.4 b/mail-client/sylpheed/files/digest-sylpheed-2.2.4 new file mode 100644 index 000000000000..d1ddcbbda45b --- /dev/null +++ b/mail-client/sylpheed/files/digest-sylpheed-2.2.4 @@ -0,0 +1 @@ +MD5 4e5608e63d4ea413bf4a0fa3abb4223f sylpheed-2.2.4.tar.bz2 2530208 diff --git a/mail-client/sylpheed/sylpheed-2.2.4.ebuild b/mail-client/sylpheed/sylpheed-2.2.4.ebuild new file mode 100644 index 000000000000..86cc0044d7cd --- /dev/null +++ b/mail-client/sylpheed/sylpheed-2.2.4.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed/sylpheed-2.2.4.ebuild,v 1.1 2006/03/29 12:35:46 hattya Exp $ + +inherit eutils + +IUSE="crypt gnome ipv6 ldap nls pda spell ssl xface" + +DESCRIPTION="A lightweight email client and newsreader" +HOMEPAGE="http://sylpheed.good-day.net/" +SRC_URI="http://sylpheed.good-day.net/${PN}/v${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +SLOT="0" + +PROVIDE="virtual/sylpheed" + +DEPEND=">=x11-libs/gtk+-2.4 + nls? ( >=sys-devel/gettext-0.12.1 ) + crypt? ( >=app-crypt/gpgme-0.4.5 ) + ldap? ( >=net-nds/openldap-2.0.11 ) + pda? ( app-pda/jpilot ) + spell? ( app-text/gtkspell ) + ssl? ( dev-libs/openssl ) + xface? ( >=media-libs/compface-1.4 )" +RDEPEND="${DEPEND} + app-misc/mime-types + x11-misc/shared-mime-info" + +src_unpack() { + + unpack ${A} + + cd ${S} + epatch ${FILESDIR}/${PN}-2.*.diff + automake + +} + +src_compile() { + + econf \ + `use_enable crypt gpgme` \ + `use_enable ipv6` \ + `use_enable ldap` \ + `use_enable nls` \ + `use_enable pda jpilot` \ + `use_enable spell gtkspell` \ + `use_enable ssl` \ + `use_enable xface compface` \ + || die + + emake || die + +} + +src_install() { + + einstall + + dodir /usr/share/pixmaps + insinto /usr/share/pixmaps + doins *.png + + insinto /usr/share/applications + doins sylpheed.desktop + + dodoc AUTHORS COPYING ChangeLog* INSTALL* NEWS* README* TODO* + +}