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 /converters | |
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 'converters')
-rw-r--r-- | converters/p5-Convert-UU/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/converters/p5-Convert-UU/Makefile b/converters/p5-Convert-UU/Makefile index f48a8a6d0e0e..0e4a768e503b 100644 --- a/converters/p5-Convert-UU/Makefile +++ b/converters/p5-Convert-UU/Makefile @@ -3,7 +3,7 @@ # Date created: October 20th 1996 # Whom: James FitzGibbon <jfitz@FreeBSD.org> # -# $Id: Makefile,v 1.15 1998/09/15 21:31:30 asami Exp $ +# $Id: Makefile,v 1.16 1998/10/12 02:59:12 jseger Exp $ # DISTNAME= Convert-UU-0.20 @@ -16,7 +16,8 @@ MAINTAINER= jfitz@FreeBSD.ORG USE_PERL5= YES -OSVERSION!= sysctl -n kern.osreldate +.include <bsd.port.pre.mk> + .if ${OSVERSION} >= 300000 BROKEN= perl paths .endif @@ -28,4 +29,4 @@ MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} do-configure: @ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL -.include <bsd.port.mk> +.include <bsd.port.post.mk> |