summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny van Dyk <kugelfang@gentoo.org>2004-07-04 22:24:14 +0000
committerDanny van Dyk <kugelfang@gentoo.org>2004-07-04 22:24:14 +0000
commit391e159e456f21bb65250ac4ec1fcc7f9c92a98d (patch)
tree608ae9e01e72f6ee98f711c18f746fbbac51bf28 /net-libs
parentAdded a minor fix before going on vacation (nothing serious). I also added a ... (diff)
downloadgentoo-2-391e159e456f21bb65250ac4ec1fcc7f9c92a98d.tar.gz
gentoo-2-391e159e456f21bb65250ac4ec1fcc7f9c92a98d.tar.bz2
gentoo-2-391e159e456f21bb65250ac4ec1fcc7f9c92a98d.zip
Fixed BUG #56029.
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/libhttpd-persistent/ChangeLog6
-rw-r--r--net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r6.ebuild11
2 files changed, 12 insertions, 5 deletions
diff --git a/net-libs/libhttpd-persistent/ChangeLog b/net-libs/libhttpd-persistent/ChangeLog
index 6b5161ec2ab4..5159281e0063 100644
--- a/net-libs/libhttpd-persistent/ChangeLog
+++ b/net-libs/libhttpd-persistent/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-libs/libhttpd-persistent
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libhttpd-persistent/ChangeLog,v 1.5 2004/07/04 10:08:04 eradicator Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libhttpd-persistent/ChangeLog,v 1.6 2004/07/04 22:24:14 kugelfang Exp $
+
+ 05 Jul 2004; Danny van Dyk <kugelfang@gentoo.org>
+ libhttpd-persistent-1.3p-r6.ebuild:
+ Tidied up the build process for the shared object. Works now on amd64.
04 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org>
libhttpd-persistent-1.3p-r6.ebuild:
diff --git a/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r6.ebuild b/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r6.ebuild
index 20170631fe5e..e566e02bfbf3 100644
--- a/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r6.ebuild
+++ b/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r6.ebuild
@@ -1,6 +1,6 @@
# 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-r6.ebuild,v 1.5 2004/07/04 10:08:04 eradicator Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r6.ebuild,v 1.6 2004/07/04 22:24:14 kugelfang Exp $
MY_P="libhttpd-1.3p-f"
@@ -9,7 +9,7 @@ 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 ~sparc"
+KEYWORDS="x86 ~ppc ~amd64"
IUSE=""
DEPEND=""
@@ -27,8 +27,11 @@ src_compile() {
cd ${S}/src
ranlib libhttpd-persistent.a || die
- echo g++ ${CFLAGS} -D_OS_UNIX -fPIC protocol.c api.c version.c ip_acl.c select.c -o libhttpd-persistent.so -Wl,-shared,-soname,libhttpd-persistent.so
- g++ ${CFLAGS} -D_OS_UNIX -fPIC protocol.c api.c version.c ip_acl.c select.c -o libhttpd-persistent.so -Wl,-shared,-soname,libhttpd-persistent.so || die
+
+ for FILE in "protocol.c api.c version.c ip_acl.c select.c"; do
+ g++ ${CFLAGS} -D_OS_UNIX -fPIC -c ${FILE}
+ done
+ g++ -shared -Wl,-shared,-soname,libhttpd-persistent.so -o libhttpd-persistent.so || die
}
src_install() {