diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2008-10-16 18:52:56 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2008-10-16 18:52:56 +0000 |
commit | 2072d074242ee19c339457bc9855dd618549588c (patch) | |
tree | ac0931a268ba964d59429a37a1239164e8272661 /mail-client/claws-mail-att-remover | |
parent | Fix to work with libtool-2.2. Thanks to loki_val in bug #230271. (diff) | |
download | gentoo-2-2072d074242ee19c339457bc9855dd618549588c.tar.gz gentoo-2-2072d074242ee19c339457bc9855dd618549588c.tar.bz2 gentoo-2-2072d074242ee19c339457bc9855dd618549588c.zip |
version bump for bug 239927
(Portage version: 2.1.4.5)
Diffstat (limited to 'mail-client/claws-mail-att-remover')
-rw-r--r-- | mail-client/claws-mail-att-remover/ChangeLog | 8 | ||||
-rw-r--r-- | mail-client/claws-mail-att-remover/claws-mail-att-remover-1.0.9.ebuild | 29 |
2 files changed, 36 insertions, 1 deletions
diff --git a/mail-client/claws-mail-att-remover/ChangeLog b/mail-client/claws-mail-att-remover/ChangeLog index e9d166068a1f..b9f8f37db429 100644 --- a/mail-client/claws-mail-att-remover/ChangeLog +++ b/mail-client/claws-mail-att-remover/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for mail-client/claws-mail-att-remover # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail-att-remover/ChangeLog,v 1.19 2008/06/23 06:45:34 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/claws-mail-att-remover/ChangeLog,v 1.20 2008/10/16 18:52:56 opfer Exp $ + +*claws-mail-att-remover-1.0.9 (16 Oct 2008) + + 16 Oct 2008; Christian Faulhammer <opfer@gentoo.org> + +claws-mail-att-remover-1.0.9.ebuild: + version bump for bug 239927 23 Jun 2008; Christian Faulhammer <opfer@gentoo.org> -claws-mail-att-remover-1.0.4.ebuild, diff --git a/mail-client/claws-mail-att-remover/claws-mail-att-remover-1.0.9.ebuild b/mail-client/claws-mail-att-remover/claws-mail-att-remover-1.0.9.ebuild new file mode 100644 index 000000000000..5ae3e7fb4e0b --- /dev/null +++ b/mail-client/claws-mail-att-remover/claws-mail-att-remover-1.0.9.ebuild @@ -0,0 +1,29 @@ +# 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-att-remover/claws-mail-att-remover-1.0.9.ebuild,v 1.1 2008/10/16 18:52:56 opfer Exp $ + +inherit eutils + +MY_P="${P#claws-mail-}" +MY_P="${MY_P/-/_}" + +DESCRIPTION="This plugin lets you remove attachments from mails." +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.0" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +S="${WORKDIR}/${MY_P}" + +src_install() { + emake DESTDIR="${D}" install + dodoc AUTHORS ChangeLog NEWS README + + # kill useless files + rm -f "${D}"usr/lib*/claws-mail/plugins/*.{a,la} +} |