summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMats O Jansson <maja@cvs.openbsd.org>1998-03-11 20:06:39 +0000
committerMats O Jansson <maja@cvs.openbsd.org>1998-03-11 20:06:39 +0000
commitbdc9fcee9ad61633afc2449e583f609f0f3c57aa (patch)
treec0e710d4dd0e92bf54f155065c3739fd4eadd4e2 /gnu
parentce48752d66761af46557f8a90077b3b5329dc583 (diff)
make it work in our world... -moj
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/lynx/Makefile.bsd-wrapper65
-rw-r--r--gnu/usr.bin/lynx/configure2
-rw-r--r--gnu/usr.bin/lynx/configure.in2
3 files changed, 67 insertions, 2 deletions
diff --git a/gnu/usr.bin/lynx/Makefile.bsd-wrapper b/gnu/usr.bin/lynx/Makefile.bsd-wrapper
new file mode 100644
index 00000000000..7cffcb53b5e
--- /dev/null
+++ b/gnu/usr.bin/lynx/Makefile.bsd-wrapper
@@ -0,0 +1,65 @@
+# $OpenBSD: Makefile.bsd-wrapper,v 1.1 1998/03/11 20:06:32 maja Exp $
+
+MAN= lynx.1
+CLEANFILES= lynx.1
+LDFLAGS+= -s ${LDSTATIC}
+GNUCFLAGS= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
+
+all: config.status lynx.cat1
+ ${MAKE} ${GNUCFLAGS}
+
+.FORCE: .IGNORE
+
+.include <bsd.own.mk>
+
+.ifdef GLOBAL_AUTOCONF_CACHE
+CF= --cache-file=${GLOBAL_AUTOCONF_CACHE}
+.else
+CF=
+.endif
+
+config: .FORCE
+.ifndef GLOBAL_AUTOCONF_CACHE
+ -rm -f config.cache
+.endif
+ INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
+ sh ${.CURDIR}/configure --prefix=/usr --libdir=/etc ${CF}
+
+config.status:
+ INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
+ sh ${.CURDIR}/configure --prefix=/usr --libdir=/etc ${CF}
+
+lynx.1: ${.CURDIR}/lynx.man
+ -cp -p ${.ALLSRC} ${.TARGET}
+
+.ifdef NOMAN
+maninstall:
+ @echo NOMAN is set
+.endif
+
+install: maninstall
+ ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ lynx ${DESTDIR}/usr/bin/lynx
+
+distribution:
+ ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${NONBINMODE} \
+ ${.CURDIR}/lynx.cfg ${DESTDIR}/etc/lynx.cfg
+
+clean cleandir:
+ -@if [ -e makefile ]; then ${MAKE} distclean; fi
+ rm -f ${CLEANFILES}
+
+depend:
+ # Nothing here so far...
+
+lint:
+ # Nothing here so far...
+
+tags:
+ # Nothing here so far...
+
+.include <bsd.obj.mk>
+.include <bsd.subdir.mk>
+.ifndef NOMAN
+.include <bsd.man.mk>
+.endif
diff --git a/gnu/usr.bin/lynx/configure b/gnu/usr.bin/lynx/configure
index c3bd9b97a2d..cace2a49ba2 100644
--- a/gnu/usr.bin/lynx/configure
+++ b/gnu/usr.bin/lynx/configure
@@ -2527,7 +2527,7 @@ next*)
CFLAGS="$CFLAGS -DNEXT -DXMOSAIC_HACK"
;;
openbsd*)
- LIBS="$LIBS -lcompat"
+ LIBS="$LIBS -lcompat -ltermlib"
;;
os2*)
# We make sure -Zexe is not used -- it would interfere with @PROG_EXT@
diff --git a/gnu/usr.bin/lynx/configure.in b/gnu/usr.bin/lynx/configure.in
index 9a3e37af541..1da828be393 100644
--- a/gnu/usr.bin/lynx/configure.in
+++ b/gnu/usr.bin/lynx/configure.in
@@ -189,7 +189,7 @@ next*)
CFLAGS="$CFLAGS -DNEXT -DXMOSAIC_HACK"
;;
openbsd*)
- LIBS="$LIBS -lcompat"
+ LIBS="$LIBS -lcompat -ltermlib"
;;
os2*)
# We make sure -Zexe is not used -- it would interfere with @PROG_EXT@