diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2008-10-16 19:46:23 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2008-10-16 19:46:23 +0000 |
commit | 6805ae1f59f955cc94c62919c2d3cb690ea51e26 (patch) | |
tree | 4e1823dd91c7da3634ae7d1cbe515042174f0f2d /mail-client | |
parent | correct Claws mask (diff) | |
download | gentoo-2-6805ae1f59f955cc94c62919c2d3cb690ea51e26.tar.gz gentoo-2-6805ae1f59f955cc94c62919c2d3cb690ea51e26.tar.bz2 gentoo-2-6805ae1f59f955cc94c62919c2d3cb690ea51e26.zip |
version bump for bug 239927
(Portage version: 2.1.4.5)
Diffstat (limited to 'mail-client')
-rw-r--r-- | mail-client/claws-mail-gtkhtml/ChangeLog | 8 | ||||
-rw-r--r-- | mail-client/claws-mail-gtkhtml/claws-mail-gtkhtml-0.21.ebuild | 34 |
2 files changed, 41 insertions, 1 deletions
diff --git a/mail-client/claws-mail-gtkhtml/ChangeLog b/mail-client/claws-mail-gtkhtml/ChangeLog index fcec9a341682..ce49eab293b3 100644 --- a/mail-client/claws-mail-gtkhtml/ChangeLog +++ b/mail-client/claws-mail-gtkhtml/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for mail-client/claws-mail-gtkhtml # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail-gtkhtml/ChangeLog,v 1.40 2008/08/08 19:27:19 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail-gtkhtml/ChangeLog,v 1.41 2008/10/16 19:46:23 opfer Exp $ + +*claws-mail-gtkhtml-0.21 (16 Oct 2008) + + 16 Oct 2008; Christian Faulhammer <opfer@gentoo.org> + +claws-mail-gtkhtml-0.21.ebuild: + version bump for bug 239927 08 Aug 2008; Markus Rothe <corsair@gentoo.org> claws-mail-gtkhtml-0.19.ebuild: diff --git a/mail-client/claws-mail-gtkhtml/claws-mail-gtkhtml-0.21.ebuild b/mail-client/claws-mail-gtkhtml/claws-mail-gtkhtml-0.21.ebuild new file mode 100644 index 000000000000..42e482a67cff --- /dev/null +++ b/mail-client/claws-mail-gtkhtml/claws-mail-gtkhtml-0.21.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail-gtkhtml/claws-mail-gtkhtml-0.21.ebuild,v 1.1 2008/10/16 19:46:23 opfer Exp $ + +inherit eutils + +MY_P="${PN#claws-mail-}2_viewer-${PV}" + +DESCRIPTION="Renders HTML mail using the gtkhtml2 rendering widget." +HOMEPAGE="http://www.claws-mail.org/" +SRC_URI="http://www.claws-mail.org/downloads/plugins/${MY_P}.tar.gz" +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" +RDEPEND=">=mail-client/claws-mail-3.6.1 + net-misc/curl" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +S="${WORKDIR}/${MY_P}" + +src_compile() { + econf --disable-accessibility + emake || die +} + +src_install() { + emake DESTDIR="${D}" install + dodoc AUTHORS ChangeLog NEWS README + + # kill useless files + rm -f "${D}"/usr/lib*/claws-mail/plugins/*.{a,la} +} |