diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2002-10-16 16:42:25 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2002-10-16 16:42:25 +0000 |
commit | 2e6afcd5411e6f71047c61cf5c0f2e9d709b832d (patch) | |
tree | aee27528a8f59693d2a8ec0dd8436648934b8891 /net-mail/gotmail | |
parent | updato (diff) | |
download | gentoo-2-2e6afcd5411e6f71047c61cf5c0f2e9d709b832d.tar.gz gentoo-2-2e6afcd5411e6f71047c61cf5c0f2e9d709b832d.tar.bz2 gentoo-2-2e6afcd5411e6f71047c61cf5c0f2e9d709b832d.zip |
Fixo since hotmail changed their page again.
Diffstat (limited to 'net-mail/gotmail')
-rw-r--r-- | net-mail/gotmail/ChangeLog | 8 | ||||
-rw-r--r-- | net-mail/gotmail/files/digest-gotmail-0.7.3_p1-r1 | 2 | ||||
-rw-r--r-- | net-mail/gotmail/gotmail-0.7.3_p1-r1.ebuild | 34 |
3 files changed, 43 insertions, 1 deletions
diff --git a/net-mail/gotmail/ChangeLog b/net-mail/gotmail/ChangeLog index 752db0a9f51c..95871c761bfa 100644 --- a/net-mail/gotmail/ChangeLog +++ b/net-mail/gotmail/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-mail/gotmail # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-mail/gotmail/ChangeLog,v 1.6 2002/10/16 16:09:28 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/gotmail/ChangeLog,v 1.7 2002/10/16 16:42:25 g2boojum Exp $ + +*gotmail-0.7.3_p1-r1 (16 Oct 2002) + + 16 Oct 2002; Grant Goodyear <g2boojum@gentoo.org> ChangeLog : + + Quick fix 'cause hotmail changed their page again. *gotmail-0.7.3_p1 (16 Oct 2002) diff --git a/net-mail/gotmail/files/digest-gotmail-0.7.3_p1-r1 b/net-mail/gotmail/files/digest-gotmail-0.7.3_p1-r1 new file mode 100644 index 000000000000..c12a0a2e8989 --- /dev/null +++ b/net-mail/gotmail/files/digest-gotmail-0.7.3_p1-r1 @@ -0,0 +1,2 @@ +MD5 f63f57c014ac4601f8cee5e5a5453914 gotmail_0.7.3.orig.tar.gz 20925 +MD5 d2d35b36783a059b77e144502e9e3dcd gotmail_0.7.3-1.diff.gz 4430 diff --git a/net-mail/gotmail/gotmail-0.7.3_p1-r1.ebuild b/net-mail/gotmail/gotmail-0.7.3_p1-r1.ebuild new file mode 100644 index 000000000000..b2e7fbaf89ce --- /dev/null +++ b/net-mail/gotmail/gotmail-0.7.3_p1-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/gotmail/gotmail-0.7.3_p1-r1.ebuild,v 1.1 2002/10/16 16:42:25 g2boojum Exp $ + +PV0=0.7.3 +PDP=1 +S=${WORKDIR}/${PN}-${PV0} +DESCRIPTION="Utility to download mail from a HotMail account" +SRC_URI="http://ftp.debian.org/debian/pool/main/g/${PN}/${PN}_${PV0}.orig.tar.gz + http://ftp.debian.org/debian/pool/main/g/${PN}/${PN}_${PV0}-${PDP}.diff.gz" +HOMEPAGE="http://ssl.usu.edu/paul/gotmail/" + +RDEPEND="virtual/glibc net-ftp/curl dev-perl/URI dev-perl/libnet" +DEPEND=${RDEPEND} + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +src_unpack() { + unpack ${PN}_${PV0}.orig.tar.gz + zcat ${DISTDIR}/${PN}_${PV0}-${PDP}.diff.gz | patch -d ${S} -p1 || die + # one-line fix so that gotmail works again (fix stolen from Debian's bugtracker) + mv ${S}/gotmail ${S}/gotmail.orig || die + sed -e 's/\\r//g' ${S}/gotmail.orig > ${S}/gotmail || die +} + +src_compile() { :; } + +src_install () { + dobin gotmail + dodoc COPYING ChangeLog README sample.gotmailrc + doman gotmail.1 +} |