diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-12-01 08:38:55 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-12-01 08:38:55 +0000 |
commit | 1e1c1d26601e45dd8ba74326d319ba3b30e8ed73 (patch) | |
tree | 57286e1cc10500b4ea856265287810df33abd551 /www/mhonarc/Makefile | |
parent | Need to create etc/rc.d by myself if I'm not going to run mtree. (diff) |
System perl installs this in /usr/local/local/lib.
Notes
Notes:
svn path=/head/; revision=14987
Diffstat (limited to 'www/mhonarc/Makefile')
-rw-r--r-- | www/mhonarc/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/www/mhonarc/Makefile b/www/mhonarc/Makefile index 99afe0190489..c5697563399a 100644 --- a/www/mhonarc/Makefile +++ b/www/mhonarc/Makefile @@ -3,7 +3,7 @@ # Date created: 18 June 1997 # Whom: koshy@india.hp.com # -# $Id: Makefile,v 1.6 1998/11/26 05:45:51 asami Exp $ +# $Id: Makefile,v 1.7 1998/11/28 23:10:26 asami Exp $ # DISTNAME= MHonArc2.3.3 @@ -18,10 +18,15 @@ MASTER_SITES= http://www.oac.uci.edu/indiv/ehood/tar/ \ MAINTAINER= jkoshy@freebsd.org USE_PERL5= Yes - NO_BUILD= Yes +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 300003 +BROKEN= installs in /usr/local/local/lib/perl5 +.endif + do-install: cd ${WRKSRC} && ${PERL5} install.me -prefix ${PREFIX} -batch -.include <bsd.port.mk> +.include <bsd.port.post.mk> |