diff options
author | 2012-01-08 04:27:20 +0000 | |
---|---|---|
committer | 2012-01-08 04:27:20 +0000 | |
commit | 5cec346a8653b86184d48f80872539473aee3db0 (patch) | |
tree | 7c371a99fca925f5b2c66c7ab855a5f4bbaa7039 /net-mail | |
parent | Version bump. (diff) | |
download | gentoo-2-5cec346a8653b86184d48f80872539473aee3db0.tar.gz gentoo-2-5cec346a8653b86184d48f80872539473aee3db0.tar.bz2 gentoo-2-5cec346a8653b86184d48f80872539473aee3db0.zip |
Version bump.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/mpop/ChangeLog | 9 | ||||
-rw-r--r-- | net-mail/mpop/mpop-1.0.26.ebuild | 77 |
2 files changed, 84 insertions, 2 deletions
diff --git a/net-mail/mpop/ChangeLog b/net-mail/mpop/ChangeLog index 0f44b945858b..81b0e30f8a7f 100644 --- a/net-mail/mpop/ChangeLog +++ b/net-mail/mpop/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-mail/mpop -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mpop/ChangeLog,v 1.1 2011/10/17 18:12:36 radhermit Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mpop/ChangeLog,v 1.2 2012/01/08 04:27:20 radhermit Exp $ + +*mpop-1.0.26 (08 Jan 2012) + + 08 Jan 2012; Tim Harder <radhermit@gentoo.org> +mpop-1.0.26.ebuild: + Version bump. *mpop-1.0.25 (17 Oct 2011) diff --git a/net-mail/mpop/mpop-1.0.26.ebuild b/net-mail/mpop/mpop-1.0.26.ebuild new file mode 100644 index 000000000000..e535fd809373 --- /dev/null +++ b/net-mail/mpop/mpop-1.0.26.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mpop/mpop-1.0.26.ebuild,v 1.1 2012/01/08 04:27:20 radhermit Exp $ + +EAPI="4" + +inherit python + +DESCRIPTION="A small, fast, and portable POP3 client" +HOMEPAGE="http://mpop.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gnome-keyring gnutls idn nls sasl ssl vim-syntax" + +RDEPEND=" + gnome-keyring? ( + dev-python/gnome-keyring-python + gnome-base/libgnome-keyring + ) + idn? ( net-dns/libidn ) + nls? ( virtual/libintl ) + sasl? ( virtual/gsasl ) + ssl? ( + gnutls? ( net-libs/gnutls ) + !gnutls? ( dev-libs/openssl ) + )" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) + dev-util/pkgconfig" + +REQUIRED_USE="gnutls? ( ssl )" + +DOCS="AUTHORS ChangeLog NEWS NOTES README THANKS" + +src_prepare() { + python_convert_shebangs 2 scripts/mpop-gnome-tool/mpop-gnome-tool.py +} + +src_configure() { + econf \ + $(use_with gnome-keyring ) \ + $(use_with idn libidn) \ + $(use_enable nls) \ + $(use_with sasl libgsasl) \ + $(use_with ssl ssl $(use gnutls && echo "gnutls" || echo "openssl")) +} + +src_install() { + default + + if use gnome-keyring ; then + src_install_contrib mpop-gnome-tool mpop-gnome-tool.py README + fi + + if use vim-syntax ; then + insinto /usr/share/vim/vimfiles/syntax + doins scripts/vim/mpop.vim + fi +} + +src_install_contrib() { + subdir="$1" + bins="$2" + docs="$3" + local dir=/usr/share/${PN}/$subdir + insinto ${dir} + exeinto ${dir} + for i in $bins ; do + doexe scripts/$subdir/$i + done + for i in $docs ; do + newdoc scripts/$subdir/$i $subdir.$i + done +} |