blob: 2e95864e31aa87619b88d91cde482a0f66924df7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Grant Goodyear <g2boojum@gentoo.org>
# Maintainer: Grant Goodyear <g2boojum@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/net-mail/gotmail/gotmail-0.6.6.7.ebuild,v 1.2 2002/05/12 18:31:02 g2boojum Exp $
SLOT=0
LICENSE="GPL-2"
S=${WORKDIR}/${PN}
PV0=0.6.6
PVP=${PV0}-7
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}_${PVP}.diff.gz"
HOMEPAGE="http://www.preikschat.com/gotmail.html"
DEPEND="net-ftp/curl
dev-perl/URI"
RDEPEND=
src_unpack() {
unpack ${PN}_${PV0}.orig.tar.gz
zcat ${DISTDIR}/${PN}_${PVP}.diff.gz | patch -d ${S} -p1
}
src_compile() {
echo "Nothing to compile"
}
src_install () {
dobin gotmail.pl
dodoc COPYING ChangeLog README TODO sample.gotmailrc debian.changelog
doman debian/gotmail.1
}
|