diff options
author | tobez <tobez@FreeBSD.org> | 2001-09-06 22:36:38 +0000 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2001-09-06 22:36:38 +0000 |
commit | 6bf54bf7d9c7221287aa748349c026670f39330b (patch) | |
tree | b4107870fdb07573a9926d1d9ccd56c5404b1202 | |
parent | 2c99307c4eb05c24c02799849d42f03257028b15 (diff) | |
download | FreeBSD-ports-6bf54bf7d9c7221287aa748349c026670f39330b.zip FreeBSD-ports-6bf54bf7d9c7221287aa748349c026670f39330b.tar.gz |
Fix a buglet with the use of XFREE86_VERSION without including
bsd.port.pre.mk first.
Spotted by: Dan Langille <dan@langille.org>
-rw-r--r-- | biology/rasmol/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/biology/rasmol/Makefile b/biology/rasmol/Makefile index 32f73ae0..b0d57c2 100644 --- a/biology/rasmol/Makefile +++ b/biology/rasmol/Makefile @@ -18,6 +18,8 @@ WRKSRC= ${WRKDIR}/RasMol_2.7.2/src USE_X_PREFIX= yes +.include <bsd.port.pre.mk> + .if ${XFREE86_VERSION} == 3 BUILD_DEPENDS+= imake:${PORTSDIR}/devel/imake .elif ${XFREE86_VERSION} == 4 @@ -38,4 +40,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/../data/1crn.pdb ${PREFIX}/lib/X11/rasmol ${INSTALL_DATA} ${WRKSRC}/../data/3cro.pdb ${PREFIX}/lib/X11/rasmol -.include <bsd.port.mk> +.include <bsd.port.post.mk> |