diff options
author | asami <asami@FreeBSD.org> | 1998-09-17 18:53:31 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-09-17 18:53:31 +0800 |
commit | 3b0c0a6128e81ee28deca1e42e1c86217690f1b8 (patch) | |
tree | ab7b39fbe4394f80297dc2ae37164c0dfb267067 /mail/smail | |
parent | 58aceafc21f98603ef313962cf5c591059c12321 (diff) | |
download | freebsd-ports-gnome-3b0c0a6128e81ee28deca1e42e1c86217690f1b8.tar.gz freebsd-ports-gnome-3b0c0a6128e81ee28deca1e42e1c86217690f1b8.tar.zst freebsd-ports-gnome-3b0c0a6128e81ee28deca1e42e1c86217690f1b8.zip |
tcp_wrapper is now converted to ELF. While I'm here, fix smail Makefile:
libwrap is a shared library so it should be LIB_DEPENDS, and delete
some spaces and tab-only lines.
Diffstat (limited to 'mail/smail')
-rw-r--r-- | mail/smail/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/mail/smail/Makefile b/mail/smail/Makefile index c3703e24f9c1..f0222325f0c7 100644 --- a/mail/smail/Makefile +++ b/mail/smail/Makefile @@ -3,7 +3,7 @@ # Date created: 16 Oct 1994 # Whom: torstenb # -# $Id: Makefile,v 1.19 1997/10/15 09:38:57 torstenb Exp $ +# $Id: Makefile,v 1.20 1998/01/25 20:45:14 torstenb Exp $ # DISTNAME= smail-3.2.0.101 @@ -14,7 +14,8 @@ MASTER_SITES= ftp://ftp.uu.net/networking/mail/smail/ \ MAINTAINER= torstenb@FreeBSD.ORG -BUILD_DEPENDS= ${PREFIX}/lib/libident.a:${PORTSDIR}/security/libident \ ${PREFIX}/lib/libwrap.a:${PORTSDIR}/security/tcp_wrapper +BUILD_DEPENDS= ${PREFIX}/lib/libident.a:${PORTSDIR}/security/libident +LIB_DEPENDS= wrap.7:${PORTSDIR}/security/tcp_wrapper INSTALL_TARGET= install installman @@ -52,7 +53,7 @@ replace: fi;\ fi if [ -e /usr/local/bin/newaliases ]; then \ - cp -fp /usr/local/bin/newaliases /usr/bin/newaliases; \ + cp -fp /usr/local/bin/newaliases /usr/bin/newaliases; \ fi if [ -e /usr/bin/mailq ]; then \ mv -f /usr/bin/mailq /usr/bin/mailq.BAK; \ @@ -63,5 +64,5 @@ replace: if [ -e /usr/local/bin/mailq ]; then \ cp -fp /usr/local/bin/mailq /usr/bin/mailq; \ fi - + .include <bsd.port.mk> |