blob: c925dedc54eb73fe44638855ca001476cf7a3901 (
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
47
48
49
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r8.ebuild,v 1.1 2004/08/18 20:56:46 eradicator Exp $
MY_P="libhttpd-1.3p-h"
S="${WORKDIR}/libhttpd-1.3-persistent-h"
DESCRIPTION="libhttpd-persistent is a modified version of David Hughes' libhttpd."
HOMEPAGE="http://www.deleet.de/projekte/daap/daapd/"
SRC_URI="http://www.deleet.de/projekte/daap/daapd/${MY_P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64 ~sparc"
IUSE=""
DEPEND=""
src_compile() {
econf || die
# Package provided compilation is FUBAR
cd ${S}/src
CFILES="protocol.c api.c version.c ip_acl.c select.c"
OFILES=${CFILES//.c/.o}
for FILE in ${CFILES}; do
echo g++ ${CFLAGS} -D_OS_UNIX -fPIC -c ${FILE}
g++ ${CFLAGS} -D_OS_UNIX -fPIC -c ${FILE} || die
done
echo "linking"
ar rc libhttpd-persistent.a ${OFILES} || die
ranlib libhttpd-persistent.a || die
g++ -shared -Wl,-shared,-soname,libhttpd-persistent.so \
${OFILES} -o libhttpd-persistent.so || die
}
src_install() {
# This pacakge doesn't respect anything autoconf-ish
dolib.a src/libhttpd-persistent.a
dolib.so src/libhttpd-persistent.so
mkdir -p ${D}/usr/include/
cp src/httpd-persistent.h ${D}/usr/include/
chmod 644 ${D}/usr/include/httpd-persistent.h
dodoc HISTORY License README doc/FAQ.txt doc/libhttpd.pdf
}
|