summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2008-09-15 18:44:21 +0000
committerHans de Graaff <graaff@gentoo.org>2008-09-15 18:44:21 +0000
commit0776dbcc58db28ba5d726a9ee64eb16eab9aaef3 (patch)
tree0eb8b2ee028eb937c5f7f8e5c8f0a09d6b829c87
parentSparc stable --- Bug #237770 --- been around for over 6 weeks now. (diff)
downloadgentoo-2-0776dbcc58db28ba5d726a9ee64eb16eab9aaef3.tar.gz
gentoo-2-0776dbcc58db28ba5d726a9ee64eb16eab9aaef3.tar.bz2
gentoo-2-0776dbcc58db28ba5d726a9ee64eb16eab9aaef3.zip
Remove old versions
(Portage version: 2.1.4.4)
-rw-r--r--mail-client/mail-notification/ChangeLog7
-rw-r--r--mail-client/mail-notification/mail-notification-5.2-r1.ebuild92
-rw-r--r--mail-client/mail-notification/mail-notification-5.2.ebuild93
-rw-r--r--mail-client/mail-notification/mail-notification-5.3.ebuild89
4 files changed, 6 insertions, 275 deletions
diff --git a/mail-client/mail-notification/ChangeLog b/mail-client/mail-notification/ChangeLog
index 5518c4606204..c2b8a93499f6 100644
--- a/mail-client/mail-notification/ChangeLog
+++ b/mail-client/mail-notification/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for mail-client/mail-notification
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/ChangeLog,v 1.75 2008/08/23 01:35:30 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/mail-notification/ChangeLog,v 1.76 2008/09/15 18:44:21 graaff Exp $
+
+ 15 Sep 2008; Hans de Graaff <graaff@gentoo.org>
+ -mail-notification-5.2.ebuild, -mail-notification-5.2-r1.ebuild,
+ -mail-notification-5.3.ebuild:
+ Remove old versions
23 Aug 2008; Doug Goldstein <cardoe@gentoo.org> metadata.xml:
add GLEP 56 USE flag desc from use.local.desc
diff --git a/mail-client/mail-notification/mail-notification-5.2-r1.ebuild b/mail-client/mail-notification/mail-notification-5.2-r1.ebuild
deleted file mode 100644
index a940e23f213c..000000000000
--- a/mail-client/mail-notification/mail-notification-5.2-r1.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2008 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.2-r1.ebuild,v 1.1 2008/04/12 06:03:27 graaff Exp $
-
-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 ~hppa ~ppc ~sparc ~x86"
-SLOT="0"
-LICENSE="GPL-3"
-
-IUSE="evo gmail imap ipv6 maildir mbox mh mozilla pop sasl ssl sylpheed yahoo"
-
-# 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/eel-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
- >=x11-libs/libnotify-0.4.1
- pop? ( gnome-base/gnome-keyring )
- imap? ( gnome-base/gnome-keyring )
- gmail? ( gnome-base/gnome-keyring )
- yahoo? ( gnome-base/gnome-keyring net-mail/fetchyahoo )
- ssl? ( >=dev-libs/openssl-0.9.6 )
- sasl? ( >=dev-libs/cyrus-sasl-2 )
- evo? ( >=mail-client/evolution-2.12 )
- sylpheed? ( virtual/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"
-
- # Fix crash in evolution, bug #215154
- use evo && epatch "${FILESDIR}"/${P}-evo-crash-fix.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) \
- $(use_var yahoo)
-
- ./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.2.ebuild b/mail-client/mail-notification/mail-notification-5.2.ebuild
deleted file mode 100644
index 69772ec97796..000000000000
--- a/mail-client/mail-notification/mail-notification-5.2.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2008 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.2.ebuild,v 1.2 2008/04/10 05:24:43 graaff Exp $
-
-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 ~hppa ~ppc ~sparc ~x86"
-SLOT="0"
-LICENSE="GPL-3"
-
-IUSE="evo gmail imap ipv6 maildir mbox mh mozilla pop sasl ssl sylpheed yahoo"
-
-# tests are currently broken and officially not supported upstream:
-# https://bugs.launchpad.net/mail-notification/+bug/182234
-RESTRICT="test"
-
-# 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/eel-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
- >=x11-libs/libnotify-0.4.1
- pop? ( gnome-base/gnome-keyring )
- imap? ( gnome-base/gnome-keyring )
- gmail? ( gnome-base/gnome-keyring )
- yahoo? ( gnome-base/gnome-keyring net-mail/fetchyahoo )
- ssl? ( >=dev-libs/openssl-0.9.6 )
- sasl? ( >=dev-libs/cyrus-sasl-2 )
- evo? ( >=mail-client/evolution-2.12 )
- sylpheed? ( virtual/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}/mail-notification-${PV}-dont-update-cache.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) \
- $(use_var yahoo)
-
- ./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.3.ebuild b/mail-client/mail-notification/mail-notification-5.3.ebuild
deleted file mode 100644
index ace54152856a..000000000000
--- a/mail-client/mail-notification/mail-notification-5.3.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2008 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.3.ebuild,v 1.1 2008/04/29 16:32:47 graaff Exp $
-
-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 ~hppa ~ppc ~sparc ~x86"
-SLOT="0"
-LICENSE="GPL-3"
-
-IUSE="evo gmail imap ipv6 maildir mbox mh mozilla pop sasl ssl sylpheed yahoo"
-
-# 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/eel-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
- >=x11-libs/libnotify-0.4.1
- pop? ( gnome-base/gnome-keyring )
- imap? ( gnome-base/gnome-keyring )
- gmail? ( gnome-base/gnome-keyring )
- yahoo? ( gnome-base/gnome-keyring net-mail/fetchyahoo )
- ssl? ( >=dev-libs/openssl-0.9.6 )
- sasl? ( >=dev-libs/cyrus-sasl-2 )
- evo? ( >=mail-client/evolution-2.12 )
- sylpheed? ( virtual/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"
-}
-
-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) \
- $(use_var yahoo)
-
- ./jb build
-}
-
-src_install() {
- GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" ./jb install
-
- dodoc NEWS README AUTHORS TODO TRANSLATING
-
- rm -rf "${D}/var/lib/scrollkeeper"
-}