diff options
author | jlam <jlam> | 2002-06-20 19:28:14 +0000 |
---|---|---|
committer | jlam <jlam> | 2002-06-20 19:28:14 +0000 |
commit | 243f000f385b48a7c9108442527864609b660e75 (patch) | |
tree | ffc4435cf19e8754d92f4ab1556aa0780d864b74 /devel/rvm/Makefile | |
parent | 88ac2e8787fe7c923fcaa20f97724f880cfbc5dc (diff) | |
download | pkgsrc-243f000f385b48a7c9108442527864609b660e75.tar.gz |
Update devel/rvm to version 1.6. Changes from version 1.3 include:
* Fixed stray fsync calls when using partitions on BSD platforms.
* Fixed <sys/time.h> vs. <time.h> confusion.
* Fixed off by one bug in the RVM error table.
Diffstat (limited to 'devel/rvm/Makefile')
-rw-r--r-- | devel/rvm/Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/devel/rvm/Makefile b/devel/rvm/Makefile index 6377e70e282..01b7ada8e05 100644 --- a/devel/rvm/Makefile +++ b/devel/rvm/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2001/06/19 03:32:40 jlam Exp $ +# $NetBSD: Makefile,v 1.8 2002/06/20 19:28:14 jlam Exp $ # -DISTNAME= rvm-1.3 +DISTNAME= rvm-1.6 CATEGORIES= devel MASTER_SITES= ftp://ftp.coda.cs.cmu.edu/pub/rvm/src/ \ ftp://ftp.wu-wien.ac.at/pub/systems/coda/src/ @@ -10,15 +10,19 @@ MAINTAINER= phil@cs.wwu.edu HOMEPAGE= http://www.coda.cs.cmu.edu/ COMMENT= Recoverable Virtual Memory -#LICENSE= GPL - GNU_CONFIGURE= YES USE_LIBTOOL= YES USE_GMAKE= YES USE_BUILDLINK_ONLY= YES CONFIGURE_ARGS+= --with-lwp-includes=${BUILDLINK_DIR}/include -LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig +LIBTOOL_OVERRIDE= ${WRKSRC}/libtool + +pre-build: + cd ${WRKSRC}/rvm; \ + for file in *.c; do \ + ${LN} -sf $${file} `${BASENAME} $${file} .c`_lwp.c; \ + done .include "../../devel/lwp/buildlink.mk" .include "../../mk/bsd.pkg.mk" |