diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-11-11 05:37:39 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-11-11 05:37:39 +0000 |
commit | dbc8aa6cc1cb1abadce30cfe133c7a5c2ed2f34b (patch) | |
tree | deebef625a152490a0bbcb7e5602d05a59b1c010 /net/queso | |
parent | c2e32ac36f406a78d4fb097baacb7fd65c4817d8 (diff) | |
download | ports-dbc8aa6cc1cb1abadce30cfe133c7a5c2ed2f34b.tar.gz ports-dbc8aa6cc1cb1abadce30cfe133c7a5c2ed2f34b.zip |
Use bsd.port.{pre,post}.mk. Either use them to avoid having to define
something already there (PORTOBJFORMAT, OSVERSION) or move stuff from after
.include <bsd.port.mk> to before.
(This is not by any means the complete list but just the ones I've noticed
recently.)
Notes
Notes:
svn path=/head/; revision=14465
Diffstat (limited to 'net/queso')
-rw-r--r-- | net/queso/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/queso/Makefile b/net/queso/Makefile index 93fce753d6a2..bd5d5947bd7a 100644 --- a/net/queso/Makefile +++ b/net/queso/Makefile @@ -5,7 +5,7 @@ # Whom: Wu Ching-hong <woju@freebsd.ee.ntu.edu.tw> # and David O'Brien (obrien@NUXI.com) # -# $Id: Makefile,v 1.2 1997/01/25 18:08:40 obrien Exp $ +# $Id: Makefile,v 1.1.1.1 1998/10/24 23:31:27 obrien Exp $ # DISTNAME= queso-980922 @@ -17,9 +17,10 @@ DISTFILES= queso-980922.tar.gz MAINTAINER= woju@freebsd.ee.ntu.edu.tw -OSVERSION!= sysctl -n kern.osreldate GNU_CONFIGURE= yes +.include <bsd.port.pre.mk> + .if ${OSVERSION} < 300004 DISTFILES+= libpcap-0.4.tar.Z post-patch: @@ -34,4 +35,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/Documentation.txt ${PREFIX}/share/doc/queso .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |