diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-08-25 15:45:52 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-08-25 15:45:52 +0000 |
commit | 0cf525dc1737715ca361397dec571d11f2f39b8b (patch) | |
tree | f7361fd59f24acbf44748f3d4692a6eddaf5f79d /xfce-extra/xfce4-mailwatch-plugin | |
parent | remove old patch too (diff) | |
download | gentoo-2-0cf525dc1737715ca361397dec571d11f2f39b8b.tar.gz gentoo-2-0cf525dc1737715ca361397dec571d11f2f39b8b.tar.bz2 gentoo-2-0cf525dc1737715ca361397dec571d11f2f39b8b.zip |
Rename xfce4-mailwatch to xfce4-mailwatch-plugin.
(Portage version: 2.2_rc40/cvs/Linux x86_64, RepoMan options: --force)
Diffstat (limited to 'xfce-extra/xfce4-mailwatch-plugin')
4 files changed, 83 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-mailwatch-plugin/ChangeLog b/xfce-extra/xfce4-mailwatch-plugin/ChangeLog new file mode 100644 index 000000000000..29084ae3f117 --- /dev/null +++ b/xfce-extra/xfce4-mailwatch-plugin/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for xfce-extra/xfce4-mailwatch-plugin +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-mailwatch-plugin/ChangeLog,v 1.1 2009/08/25 15:45:51 ssuominen Exp $ + +*xfce4-mailwatch-plugin-1.1.0 (25 Aug 2009) + + 25 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> + +xfce4-mailwatch-plugin-1.1.0.ebuild, + +files/xfce4-mailwatch-plugin-1.1.0-no-ssl.patch: + Rename xfce4-mailwatch to xfce4-mailwatch-plugin. + diff --git a/xfce-extra/xfce4-mailwatch-plugin/files/xfce4-mailwatch-plugin-1.1.0-no-ssl.patch b/xfce-extra/xfce4-mailwatch-plugin/files/xfce4-mailwatch-plugin-1.1.0-no-ssl.patch new file mode 100644 index 000000000000..47b9d040927d --- /dev/null +++ b/xfce-extra/xfce4-mailwatch-plugin/files/xfce4-mailwatch-plugin-1.1.0-no-ssl.patch @@ -0,0 +1,35 @@ +http://bugzilla.xfce.org/show_bug.cgi?id=4608 + +=== modified file 'libmailwatch-core/mailwatch-net-conn.c' +--- libmailwatch-core/mailwatch-net-conn.c 2008-11-13 11:42:40 +0000 ++++ libmailwatch-core/mailwatch-net-conn.c 2008-11-13 11:42:48 +0000 +@@ -195,7 +195,6 @@ + return 0; + } + +-#endif /* defined(HAVE_SSL_SUPPORT) */ + + + +@@ -234,6 +233,7 @@ + + return TRUE; + } ++#endif /* defined(HAVE_SSL_SUPPORT) */ + + static XfceMailwatchNetConnStatus + xfce_mailwatch_net_conn_do_connect(XfceMailwatchNetConn *net_conn, + +=== modified file 'libmailwatch-core/mailwatch-utils.c' +--- libmailwatch-core/mailwatch-utils.c 2008-11-13 11:41:27 +0000 ++++ libmailwatch-core/mailwatch-utils.c 2008-11-13 11:43:36 +0000 +@@ -186,7 +186,7 @@ + return response_base64; + #else + g_warning("CRAM-MD5 computation unavailable: libmailwatch was not compiled with gnutls support."); +- return NULL ++ return NULL; + #endif + } + + diff --git a/xfce-extra/xfce4-mailwatch-plugin/metadata.xml b/xfce-extra/xfce4-mailwatch-plugin/metadata.xml new file mode 100644 index 000000000000..d56729e92f8e --- /dev/null +++ b/xfce-extra/xfce4-mailwatch-plugin/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>xfce</herd> +</pkgmetadata> diff --git a/xfce-extra/xfce4-mailwatch-plugin/xfce4-mailwatch-plugin-1.1.0.ebuild b/xfce-extra/xfce4-mailwatch-plugin/xfce4-mailwatch-plugin-1.1.0.ebuild new file mode 100644 index 000000000000..d4ea3070c101 --- /dev/null +++ b/xfce-extra/xfce4-mailwatch-plugin/xfce4-mailwatch-plugin-1.1.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-mailwatch-plugin/xfce4-mailwatch-plugin-1.1.0.ebuild,v 1.1 2009/08/25 15:45:51 ssuominen Exp $ + +EAPI=2 +inherit xfconf + +DESCRIPTION="Mail notification panel plugin" +HOMEPAGE="http://spuriousinterrupt.org/projects/mailwatch" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" +IUSE="debug ipv6 ssl" + +RDEPEND=">=xfce-base/libxfce4util-4.2 + >=xfce-base/libxfcegui4-4.2 + >=xfce-base/xfce4-panel-4.3.20 + ssl? ( >=net-libs/gnutls-1.2 )" +DEPEND="${RDEPEND} + dev-util/intltool + dev-util/pkgconfig" + +pkg_setup() { + DOCS="AUTHORS ChangeLog NEWS README TODO" + XFCONF="--disable-dependency-tracking + $(use_enable ssl) + $(use_enable ipv6) + $(use_enable debug)" + PATCHES=( "${FILESDIR}/${P}-no-ssl.patch" ) +} |