summaryrefslogtreecommitdiff
blob: ba1f889ce99c7f01e558d03fae3f515880e8ef3c (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
50
# 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-r7.ebuild,v 1.3 2004/09/01 08:44:45 eradicator Exp $

MY_P="libhttpd-1.3p-g"

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=""

S="${WORKDIR}/libhttpd-1.3-persistent-g"

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
}