summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2011-02-27 09:18:17 +0000
committerHans de Graaff <graaff@gentoo.org>2011-02-27 09:18:17 +0000
commiteddb3fe1d2bb8d3de1d78f7f034418f07639dbde (patch)
tree9696d6ffebe934ad7ec6abfe87d9588f32848de2 /mail-client/mail-notification
parentold (diff)
downloadgentoo-2-eddb3fe1d2bb8d3de1d78f7f034418f07639dbde.tar.gz
gentoo-2-eddb3fe1d2bb8d3de1d78f7f034418f07639dbde.tar.bz2
gentoo-2-eddb3fe1d2bb8d3de1d78f7f034418f07639dbde.zip
Remove old versions.
(Portage version: 2.1.9.25/cvs/Linux x86_64)
Diffstat (limited to 'mail-client/mail-notification')
-rw-r--r--mail-client/mail-notification/ChangeLog8
-rw-r--r--mail-client/mail-notification/mail-notification-5.4-r1.ebuild95
-rw-r--r--mail-client/mail-notification/mail-notification-5.4-r3.ebuild107
3 files changed, 6 insertions, 204 deletions
diff --git a/mail-client/mail-notification/ChangeLog b/mail-client/mail-notification/ChangeLog
index a122bcb7c6ca..f23754167250 100644
--- a/mail-client/mail-notification/ChangeLog
+++ b/mail-client/mail-notification/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for mail-client/mail-notification
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/ChangeLog,v 1.104 2010/10/10 18:08:12 armin76 Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/ChangeLog,v 1.105 2011/02/27 09:18:17 graaff Exp $
+
+ 27 Feb 2011; Hans de Graaff <graaff@gentoo.org>
+ -mail-notification-5.4-r1.ebuild, -mail-notification-5.4-r3.ebuild:
+ Remove old versions.
10 Oct 2010; Raúl Porcel <armin76@gentoo.org>
mail-notification-5.4-r4.ebuild:
diff --git a/mail-client/mail-notification/mail-notification-5.4-r1.ebuild b/mail-client/mail-notification/mail-notification-5.4-r1.ebuild
deleted file mode 100644
index 594981c0dba2..000000000000
--- a/mail-client/mail-notification/mail-notification-5.4-r1.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/mail-notification-5.4-r1.ebuild,v 1.10 2010/07/19 15:48:38 jer Exp $
-
-EAPI=1
-
-inherit gnome2 multilib flag-o-matic toolchain-funcs
-
-DESCRIPTION="A GNOME trayicon which checks for email, with support for many online and offline mailbox formats."
-HOMEPAGE="http://www.nongnu.org/mailnotify/"
-SRC_URI="http://savannah.nongnu.org/download/mailnotify/${P}.tar.bz2"
-
-KEYWORDS="amd64 ppc sparc x86"
-SLOT="0"
-LICENSE="GPL-3"
-
-IUSE="evo gmail imap ipv6 maildir mbox mh mozilla pop sasl ssl sylpheed"
-
-# gmime is actually optional, but it's used by so much of the package
-# it's pointless making it optional. gnome-keyring is required for
-# several specific access methods, and thus linked to those USE flags
-# instead of adding a keyring USE flag.
-RDEPEND=">=x11-libs/gtk+-2.12
- >=dev-libs/glib-2.14
- >=gnome-base/gconf-2.4.0
- >=gnome-base/gnome-panel-2.6
- >=gnome-base/gconf-2.6
- >=gnome-base/libgnomeui-2.14
- >=gnome-base/libglade-2.0
- dev-libs/dbus-glib
- >=dev-libs/gmime-2.2.7:0
- >=x11-libs/libnotify-0.4.1
- pop? ( gnome-base/gnome-keyring )
- imap? ( gnome-base/gnome-keyring )
- gmail? ( gnome-base/gnome-keyring )
- ssl? ( >=dev-libs/openssl-0.9.6 )
- sasl? ( >=dev-libs/cyrus-sasl-2 )
- evo? ( >=mail-client/evolution-2.24 )
- sylpheed? ( mail-client/sylpheed )"
-
-DEPEND="${RDEPEND}
- app-text/scrollkeeper
- dev-util/pkgconfig
- >=dev-util/intltool-0.35.0"
-
-# this now uses JB (the Jean-Yves Lefort's Build System) as a build system
-# instead of autotools, this is a little helper function that basically does
-# the same thing as use_enable
-use_var() {
- echo -n "${2:-$1}="
- use "${1}" && echo "yes" || echo "no"
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}/${P}-dont-update-cache.patch"
-
- # We are not Ubuntu, and I suspect that this is the cause of #215281
- epatch "${FILESDIR}/${P}-remove-ubuntu-special-case.patch"
-
- # Make sure we don't crash with newer versions of
- # evolution-data-server.
- epatch "${FILESDIR}/${P}-e-d-s-2.24.patch"
-}
-
-src_compile() {
- ./jb configure destdir="${D}" prefix="/usr" libdir=/usr/$(get_libdir) \
- sysconfdir="/etc" localstatedir="/var" cc="$(tc-getCC)" \
- cflags="${CFLAGS}" cppflags="${CXXFLAGS}" ldflags="${LDFLAGS}" \
- scrollkeeper-dir="/var/lib/scrollkeeper" \
- $(use_var evo evolution) \
- $(use_var gmail) \
- $(use_var imap) \
- $(use_var ipv6) \
- $(use_var maildir) \
- $(use_var mbox) \
- $(use_var mh) \
- $(use_var mozilla) \
- $(use_var pop pop3) \
- $(use_var sasl) \
- $(use_var ssl) \
- $(use_var sylpheed)
-
- ./jb build
-}
-
-src_install() {
- GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" ./jb install
-
- dodoc NEWS README AUTHORS TODO TRANSLATING
-
- rm -rf "${D}/var/lib/scrollkeeper"
-}
diff --git a/mail-client/mail-notification/mail-notification-5.4-r3.ebuild b/mail-client/mail-notification/mail-notification-5.4-r3.ebuild
deleted file mode 100644
index 5c09ee3a45eb..000000000000
--- a/mail-client/mail-notification/mail-notification-5.4-r3.ebuild
+++ /dev/null
@@ -1,107 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/mail-notification-5.4-r3.ebuild,v 1.8 2010/07/19 15:48:38 jer Exp $
-
-EAPI=1
-
-inherit gnome2 multilib flag-o-matic toolchain-funcs
-
-DESCRIPTION="A GNOME trayicon which checks for email, with support for many online and offline mailbox formats."
-HOMEPAGE="http://www.nongnu.org/mailnotify/"
-SRC_URI="http://savannah.nongnu.org/download/mailnotify/${P}.tar.bz2"
-
-KEYWORDS="amd64 ppc sparc x86"
-SLOT="0"
-LICENSE="GPL-3"
-
-IUSE="evo gmail imap ipv6 maildir mbox mh mozilla pop sasl ssl sylpheed"
-
-# gmime is actually optional, but it's used by so much of the package
-# it's pointless making it optional. gnome-keyring is required for
-# several specific access methods, and thus linked to those USE flags
-# instead of adding a keyring USE flag.
-RDEPEND=">=x11-libs/gtk+-2.12
- >=dev-libs/glib-2.14
- >=gnome-base/gconf-2.4.0
- >=gnome-base/gnome-panel-2.6
- >=gnome-base/gconf-2.6
- >=gnome-base/libgnomeui-2.14
- >=gnome-base/libglade-2.0
- dev-libs/dbus-glib
- dev-libs/gmime:2.4
- >=x11-libs/libnotify-0.4.1
- pop? ( gnome-base/gnome-keyring )
- imap? ( gnome-base/gnome-keyring )
- gmail? ( gnome-base/gnome-keyring )
- ssl? ( >=dev-libs/openssl-0.9.6 )
- sasl? ( >=dev-libs/cyrus-sasl-2 )
- evo? ( >=mail-client/evolution-2.24 )
- sylpheed? ( mail-client/sylpheed )"
-
-DEPEND="${RDEPEND}
- app-text/scrollkeeper
- dev-util/pkgconfig
- >=dev-util/intltool-0.35.0"
-
-# this now uses JB (the Jean-Yves Lefort's Build System) as a build system
-# instead of autotools, this is a little helper function that basically does
-# the same thing as use_enable
-use_var() {
- echo -n "${2:-$1}="
- use "${1}" && echo "yes" || echo "no"
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}/${P}-dont-update-cache.patch"
-
- # We are not Ubuntu, and I suspect that this is the cause of #215281
- epatch "${FILESDIR}/${P}-remove-ubuntu-special-case.patch"
-
- # Make it work ok with eds-2.24 and 2.29
- epatch "${FILESDIR}/${P}-e-d-s.patch"
-
- # Fix gtkhtml depend to solve building against evo-2.28, see bug #293374
- epatch "${FILESDIR}/${P}-evolution-gtkhtml.patch"
-
- # Add patch for new cyrus-sasl's ABI, see:
- # https://bugzilla.redhat.com/501456
- epatch "${FILESDIR}/${P}-sasl_encode64.patch"
-
- # Fedora patch to build against dev-libs/gmime:2.4
- epatch "${FILESDIR}/${P}-gmime.patch"
-
- # Fix forced --as-needed, bug 317905
- epatch "${FILESDIR}/${P}-asneeded.patch"
-}
-
-src_compile() {
- ./jb configure destdir="${D}" prefix="/usr" libdir=/usr/$(get_libdir) \
- sysconfdir="/etc" localstatedir="/var" cc="$(tc-getCC)" \
- cflags="${CFLAGS}" cppflags="${CXXFLAGS}" ldflags="${LDFLAGS}" \
- scrollkeeper-dir="/var/lib/scrollkeeper" \
- $(use_var evo evolution) \
- $(use_var gmail) \
- $(use_var imap) \
- $(use_var ipv6) \
- $(use_var maildir) \
- $(use_var mbox) \
- $(use_var mh) \
- $(use_var mozilla) \
- $(use_var pop pop3) \
- $(use_var sasl) \
- $(use_var ssl) \
- $(use_var sylpheed) || die
-
- ./jb build || die
-}
-
-src_install() {
- GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" ./jb install || die
-
- dodoc NEWS README AUTHORS TODO TRANSLATING
-
- rm -rf "${D}/var/lib/scrollkeeper"
-}