blob: aa8bd558db61c13f0df31ac07eef55f344acf413 (
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
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-mailutils/uw-mailutils-2004g.ebuild,v 1.11 2007/04/02 13:36:45 armin76 Exp $
inherit eutils flag-o-matic
MY_P="imap-${PV}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="Mail utilities from the UW"
HOMEPAGE="http://www.washington.edu/imap/"
SRC_URI="ftp://ftp.cac.washington.edu/imap/${MY_P}.tar.Z"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 hppa ~ia64 ppc ppc64 sparc x86"
IUSE=""
DEPEND="virtual/libc
!<net-mail/uw-imap-2004g-r1
!<mail-client/pine-4.64-r1"
src_unpack() {
unpack ${A}
chmod -R ug+w ${S}
cd ${S}
epatch ${FILESDIR}/${P}.patch || die "epatch failed"
sed -i -e "s|\`cat \$C/CFLAGS\`|${CFLAGS}|g" \
src/mailutil/Makefile \
src/mtest/Makefile || die "sed failed patching Makefile CFLAGS."
append-flags -fPIC
}
src_compile() {
yes | make slx EXTRACFLAGS="${CFLAGS}" SSLTYPE=none || die
}
src_install() {
into /usr
dobin mailutil/mailutil mtest/mtest
doman src/mailutil/mailutil.1
}
|