blob: 9d3e7f9c5192fa784fe8ff071f30249c86a7fed0 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit multilib multilib-minimal toolchain-funcs eutils
DESCRIPTION="A set of routines that implement the FTP protocol"
HOMEPAGE="http://nbpfaus.net/~pfau/ftplib/"
SRC_URI="http://nbpfaus.net/~pfau/ftplib/${P}.tar.gz"
LICENSE="Artistic-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
src_prepare() {
sed -i \
-e '/shared/s:$(CC):$(CC) $(LDFLAGS):' \
-e 's:/usr/local:$(DESTDIR)/usr:' \
-e '/^LDFLAGS/s:=:+=:' \
-e "s:/lib:/$(get_libdir):" \
-e '/ar -rcs/s:ar:$(AR):' \
src/Makefile || die
epatch "${FILESDIR}"/${PN}-4.0-crash.patch
multilib_copy_sources
}
multilib_src_compile() {
emake -C src \
DEBUG="${CFLAGS} ${CPPFLAGS}" \
AR="$(tc-getAR)" \
CC="$(tc-getCC)"
}
multilib_src_install() {
dodir /usr/bin /usr/include /usr/$(get_libdir)
emake -C src DESTDIR="${ED}" install
}
multilib_src_install_all() {
dodoc additional_rfcs CHANGES README* RFC959.txt
dohtml html/*
}
|