diff options
author | Anton Berezin <tobez@FreeBSD.org> | 2001-09-06 22:36:38 +0000 |
---|---|---|
committer | Anton Berezin <tobez@FreeBSD.org> | 2001-09-06 22:36:38 +0000 |
commit | 8091bed6f378c25518a3dd846b1d647960911390 (patch) | |
tree | 73ecec47fae3bf99d6c5676a9caf18e21afe6ef3 /biology/rasmol | |
parent | People, if you want X11 bits with the releases, you need to leave the (diff) |
Fix a buglet with the use of XFREE86_VERSION without including
bsd.port.pre.mk first.
Spotted by: Dan Langille <dan@langille.org>
Notes
Notes:
svn path=/head/; revision=47482
Diffstat (limited to 'biology/rasmol')
-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 32f73ae06619..b0d57c252f9c 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> |