diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2010-06-12 08:07:00 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2010-06-12 08:07:00 +0000 |
commit | 129268dff7987bb8ea5792b03de60d24d6e7f19b (patch) | |
tree | 2667863a2ba9c05cb9b11eaf804b2a09fb4e296f /mail-client | |
parent | version bump, bug 319161 (diff) | |
download | gentoo-2-129268dff7987bb8ea5792b03de60d24d6e7f19b.tar.gz gentoo-2-129268dff7987bb8ea5792b03de60d24d6e7f19b.tar.bz2 gentoo-2-129268dff7987bb8ea5792b03de60d24d6e7f19b.zip |
version bump, bug 319161
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'mail-client')
-rw-r--r-- | mail-client/claws-mail-gtkhtml/ChangeLog | 7 | ||||
-rw-r--r-- | mail-client/claws-mail-gtkhtml/claws-mail-gtkhtml-0.27.ebuild | 34 |
2 files changed, 40 insertions, 1 deletions
diff --git a/mail-client/claws-mail-gtkhtml/ChangeLog b/mail-client/claws-mail-gtkhtml/ChangeLog index 43f1ecda2787..0f4be3981c20 100644 --- a/mail-client/claws-mail-gtkhtml/ChangeLog +++ b/mail-client/claws-mail-gtkhtml/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for mail-client/claws-mail-gtkhtml # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail-gtkhtml/ChangeLog,v 1.70 2010/05/11 17:50:56 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail-gtkhtml/ChangeLog,v 1.71 2010/06/12 08:07:00 fauli Exp $ + +*claws-mail-gtkhtml-0.27 (12 Jun 2010) + + 12 Jun 2010; <fauli@gentoo.org> +claws-mail-gtkhtml-0.27.ebuild: + version bump, bug 319161 11 May 2010; Brent Baude <ranger@gentoo.org> claws-mail-gtkhtml-0.26.ebuild: diff --git a/mail-client/claws-mail-gtkhtml/claws-mail-gtkhtml-0.27.ebuild b/mail-client/claws-mail-gtkhtml/claws-mail-gtkhtml-0.27.ebuild new file mode 100644 index 000000000000..1c499eb6184b --- /dev/null +++ b/mail-client/claws-mail-gtkhtml/claws-mail-gtkhtml-0.27.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2010 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.27.ebuild,v 1.1 2010/06/12 08:07:00 fauli 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="~alpha ~amd64 ~ppc ~ppc64 ~x86" +IUSE="" +RDEPEND=">=mail-client/claws-mail-3.7.6 + 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} +} |