summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEray Aslan <eras@gentoo.org>2012-01-05 16:09:44 +0000
committerEray Aslan <eras@gentoo.org>2012-01-05 16:09:44 +0000
commit7bbf37dddce1765f442c78564c67991d41f76af7 (patch)
treec9c691f6729dc5276c95549e2d728b59d5f99914 /net-mail
parentremove old (diff)
downloadgentoo-2-7bbf37dddce1765f442c78564c67991d41f76af7.tar.gz
gentoo-2-7bbf37dddce1765f442c78564c67991d41f76af7.tar.bz2
gentoo-2-7bbf37dddce1765f442c78564c67991d41f76af7.zip
remove old
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/mess822/ChangeLog5
-rw-r--r--net-mail/mess822/mess822-0.58-r1.ebuild51
2 files changed, 4 insertions, 52 deletions
diff --git a/net-mail/mess822/ChangeLog b/net-mail/mess822/ChangeLog
index 4296abe1300e..f1dbcb4f39d2 100644
--- a/net-mail/mess822/ChangeLog
+++ b/net-mail/mess822/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/mess822
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mess822/ChangeLog,v 1.15 2012/01/04 22:14:37 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/mess822/ChangeLog,v 1.16 2012/01/05 16:09:43 eras Exp $
+
+ 05 Jan 2012; Eray Aslan <eras@gentoo.org> -mess822-0.58-r1.ebuild:
+ remove old
04 Jan 2012; Brent Baude <ranger@gentoo.org> mess822-0.58-r2.ebuild:
Marking mess822-0.58-r2 ppc for bug 391227
diff --git a/net-mail/mess822/mess822-0.58-r1.ebuild b/net-mail/mess822/mess822-0.58-r1.ebuild
deleted file mode 100644
index 4528aa5956a7..000000000000
--- a/net-mail/mess822/mess822-0.58-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mess822/mess822-0.58-r1.ebuild,v 1.11 2009/09/23 19:08:27 patrick Exp $
-
-inherit multilib
-
-DESCRIPTION="Collection of utilities for parsing Internet mail messages."
-SRC_URI="http://cr.yp.to/software/${P}.tar.gz"
-HOMEPAGE="http://cr.yp.to/mess822.html"
-
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-LICENSE="as-is"
-
-DEPEND=">=sys-apps/sed-4"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- echo "gcc ${CFLAGS}" > conf-cc
- echo "gcc" > conf-ld
- echo "/usr/" > conf-home
-
- # fix errno.h problem; bug #26165
- sed -i 's/^extern int errno;/#include <errno.h>/' error.h
-}
-
-src_compile() {
- emake || die
-}
-
-src_install() {
- dodir /etc
- dodir /usr/share
-
- # Now that the commands are compiled, update the conf-home file to point
- # to the installation image directory.
- echo "${D}/usr/" > conf-home
- sed -i -e "s:\"/etc\":\"${D}/etc\":" hier.c || die "sed hier.c failed"
-
- make setup
-
- # Move the man pages into /usr/share/man
- mv "${D}/usr/man" "${D}/usr/share/"
-
- dodir /usr/$(get_libdir)
- mv "${D}/usr/lib/${PN}.a" "${D}/usr/$(get_libdir)/${PN}.a"
- rmdir "${D}/usr/lib"
- dodoc BLURB CHANGES INSTALL README THANKS TODO VERSION
-}