diff options
author | asami <asami@FreeBSD.org> | 1998-11-11 05:37:39 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-11-11 05:37:39 +0000 |
commit | 559e1bc28bd975c38b561de15be3918ba1f71b5e (patch) | |
tree | cda169bf1e41b7166c2d2febd3d858c1411d0e64 /net/queso/Makefile | |
parent | 7aed28166a84f266be861367fc9a1add43f9219a (diff) | |
download | FreeBSD-ports-559e1bc28bd975c38b561de15be3918ba1f71b5e.zip FreeBSD-ports-559e1bc28bd975c38b561de15be3918ba1f71b5e.tar.gz |
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.)
Diffstat (limited to 'net/queso/Makefile')
-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 93fce75..bd5d594 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> |