94930e2200
gcc -O -pipe -DUSE_SYSCONF -I. -I/usr/local/include -DMODIFY -DWEB500GW_DEBUG -DSUPPORT_OLD_URLS -DWEB500GWDIR=\"/usr/local/etc/web500gw\" -DLDAPVERSION=33 -DLDAP_DEBUG -fpcc-struct-return -fwritable-strings -c gwversion.c gcc -o web500gw web500gw.o read.o search.o modify.o add.o navigation.o util.o web_util.o dir_util.o ldap2html.o messages.o init.o config.o detach.o setproctitle.o gwversion.o -L/usr/local/lib -lldap -llber util.o: In function `find_access': util.o(.text+0x91a): undefined reference to `re_comp' util.o(.text+0x927): undefined reference to `re_exec' util.o: In function `find_language': util.o(.text+0x96a): undefined reference to `re_comp' util.o(.text+0x977): undefined reference to `re_exec' util.o: In function `find_browser': util.o(.text+0xd2e): undefined reference to `re_comp' util.o(.text+0xd3b): undefined reference to `re_exec' *** Error code 1
39 lines
947 B
Makefile
39 lines
947 B
Makefile
# New ports collection makefile for: web500gw
|
|
# Version required: 2.1b2
|
|
# Date created: 30 July 1998
|
|
# Whom: Brent J. Nordquist <bjn@visi.com>
|
|
#
|
|
# $Id: Makefile,v 1.3 1998/08/24 01:26:30 steve Exp $
|
|
#
|
|
|
|
DISTNAME= web500gw-2.1b2
|
|
CATEGORIES= www net
|
|
MASTER_SITES= ftp://ftp.tu-chemnitz.de/pub/Local/urz/web500gw/ \
|
|
http://www.tu-chemnitz.de/ftp-home/pub/Local/urz/web500gw/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= bjn@visi.com
|
|
|
|
BROKEN_ELF= yes
|
|
|
|
BUILD_DEPENDS= ${PREFIX}/lib/libldap.a:${PORTSDIR}/net/ldap
|
|
|
|
INSTDIR= ${PREFIX}/bin
|
|
|
|
MAKE_ENV= PLATFORMCFLAGS="${CFLAGS} -DUSE_SYSCONF" \
|
|
INSTDIR=${INSTDIR} \
|
|
WEB500GWDIR=${WEB500GWDIR} \
|
|
MANDIR=${MANPREFIX}/man/man8 \
|
|
INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
|
|
INSTALL_DATA="${INSTALL_DATA}" \
|
|
INSTALL_MAN="${INSTALL_MAN}"
|
|
MAN8= web500gw.8
|
|
|
|
WEB500GWDIR= ${PREFIX}/etc/web500gw
|
|
|
|
post-install:
|
|
strip ${INSTDIR}/web500gw
|
|
@${CAT} ${PKGDIR}/MESSAGE
|
|
|
|
.include <bsd.port.mk>
|