summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEray Aslan <eras@gentoo.org>2013-01-04 11:56:59 +0000
committerEray Aslan <eras@gentoo.org>2013-01-04 11:56:59 +0000
commita41e205c751a2016a86257f585f6f820b1fc2fb8 (patch)
tree34ea56a5c1f0c767128e11717bae0f7efcc26381 /app-misc/abook
parentclean up (diff)
downloadgentoo-2-a41e205c751a2016a86257f585f6f820b1fc2fb8.tar.gz
gentoo-2-a41e205c751a2016a86257f585f6f820b1fc2fb8.tar.bz2
gentoo-2-a41e205c751a2016a86257f585f6f820b1fc2fb8.zip
Remove old
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)
Diffstat (limited to 'app-misc/abook')
-rw-r--r--app-misc/abook/ChangeLog8
-rw-r--r--app-misc/abook/abook-0.5.6-r1.ebuild33
-rw-r--r--app-misc/abook/files/0.5.6-01_editor.patch18
3 files changed, 6 insertions, 53 deletions
diff --git a/app-misc/abook/ChangeLog b/app-misc/abook/ChangeLog
index 04eec0bfe1e0..36a4a9dd6f81 100644
--- a/app-misc/abook/ChangeLog
+++ b/app-misc/abook/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-misc/abook
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/abook/ChangeLog,v 1.64 2012/12/30 15:08:48 ago Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/abook/ChangeLog,v 1.65 2013/01/04 11:56:59 eras Exp $
+
+ 04 Jan 2013; Eray Aslan <eras@gentoo.org> -abook-0.5.6-r1.ebuild,
+ -files/0.5.6-01_editor.patch:
+ Remove old
30 Dec 2012; Agostino Sarubbo <ago@gentoo.org> abook-0.6.0_pre2.ebuild:
Stable for alpha, wrt bug #444990
diff --git a/app-misc/abook/abook-0.5.6-r1.ebuild b/app-misc/abook/abook-0.5.6-r1.ebuild
deleted file mode 100644
index 0638a9b6c1e7..000000000000
--- a/app-misc/abook/abook-0.5.6-r1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/abook/abook-0.5.6-r1.ebuild,v 1.7 2010/01/25 02:43:45 tgall Exp $
-
-EAPI=2
-
-inherit eutils
-
-DESCRIPTION="Abook is a text-based addressbook program designed to use with mutt mail client."
-HOMEPAGE="http://abook.sourceforge.net/"
-SRC_URI="mirror://sourceforge/abook/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ppc ppc64 sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
-IUSE="nls"
-
-RDEPEND="nls? ( virtual/libintl )"
-DEPEND="nls? ( sys-devel/gettext )"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PV}-01_editor.patch
-}
-
-src_configure() {
- econf $(use_enable nls) || die "configure failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "install failed"
- dodoc BUGS ChangeLog FAQ README TODO \
- sample.abookrc || die "dodoc failed"
-}
diff --git a/app-misc/abook/files/0.5.6-01_editor.patch b/app-misc/abook/files/0.5.6-01_editor.patch
deleted file mode 100644
index bacfd55a491d..000000000000
--- a/app-misc/abook/files/0.5.6-01_editor.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- ui.c 10 Apr 2006 08:15:46 -0000 1.57
-+++ ui.c 6 Sep 2006 02:24:33 -0000 1.58
-@@ -569,9 +569,13 @@
- } else {
- char *s;
- s = ui_readline("/", findstr, MAX_FIELD_LEN - 1, 0);
-- strncpy(findstr, s, MAX_FIELD_LEN);
-- free(s);
- refresh_screen();
-+ if(s == NULL) {
-+ return; /* user cancelled (ctrl-G) */
-+ } else {
-+ strncpy(findstr, s, MAX_FIELD_LEN);
-+ free(s);
-+ }
- }
-
- if( (item = find_item(findstr, curitem + !!next, search_fields)) < 0 &&