- bump version to 6.5.9 from 6.5.1

- fix pkg/*INSTALL (dont hardcode /etc, use ${SYSCONFDIR}) (prompted by nikolay)
- misc tweaks noticed while I was here
- remove upstream accepted patch
This commit is contained in:
todd 2003-04-24 23:48:48 +00:00
parent f36a41eb5b
commit f2545dd6f5
6 changed files with 38 additions and 76 deletions

View File

@ -1,7 +1,7 @@
# $OpenBSD: Makefile,v 1.12 2003/04/10 18:08:56 jsyn Exp $
# $OpenBSD: Makefile,v 1.13 2003/04/24 23:48:48 todd Exp $
# Original from: Yannick Cote
DISTNAME= lam-6.5.1
DISTNAME= lam-6.5.9
CATEGORIES= devel math net comms
COMMENT= "great implementation of the message passing interface"

View File

@ -1,3 +1,3 @@
MD5 (lam-6.5.1.tar.gz) = 51ba23989621d67dd84bd9600e7cb770
RMD160 (lam-6.5.1.tar.gz) = 55ec127be9bbeaeef923234e71a2bd8bced64912
SHA1 (lam-6.5.1.tar.gz) = 3ad3299cca60fb039ed7aa5ea664a4a628ca66a0
MD5 (lam-6.5.9.tar.gz) = e5e14c360984be2133c8066aaa4641c9
RMD160 (lam-6.5.9.tar.gz) = 78563c7fb7fbe42d9f4d7168d4fd6096b873a915
SHA1 (lam-6.5.9.tar.gz) = c4457c267cc0d1958ae6681c272da2fd1fb54873

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-mpi2c++_src_mpi2c++_Makefile_in,v 1.2 2001/04/13 22:16:09 todd Exp $
--- mpi2c++/src/mpi2c++/Makefile.in.orig Wed Apr 4 12:15:24 2001
+++ mpi2c++/src/mpi2c++/Makefile.in Fri Apr 13 16:19:47 2001
@@ -300,7 +300,7 @@ maintainer-clean-generic clean mostlycle
install-exec-hook:
(rm -f $(DESTDIR)$(includedir)/mpi++.h ; \
if test ! -d $(DESTDIR)$(pkgincludedir); then mkdir -p $(DESTDIR)$(pkgincludedir); fi ; \
- $(LN_S) $(DESTDIR)$(pkgincludedir)/mpi++.h $(DESTDIR)$(includedir)/mpi++.h)
+ $(LN_S) $(pkgincludedir)/mpi++.h $(DESTDIR)$(includedir)/mpi++.h)
uninstall-local:
(rm -f $(DESTDIR)$(includedir)/mpi++.h)

View File

@ -1,4 +1,4 @@
# $OpenBSD: DEINSTALL,v 1.1 2001/04/13 20:29:16 todd Exp $
# $OpenBSD: DEINSTALL,v 1.2 2003/04/24 23:48:48 todd Exp $
#
# LAM de-installation
@ -11,8 +11,7 @@ echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform"
echo "| these steps as root:"
echo "|"
echo "| cd /etc"
echo "| rm -f lam-*"
echo "| rm -f ${SYSCONFDIR}/lam-*"
echo "|"
echo "| Do not do this if you plan on re-installing $1"
echo "| at some future time."

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $OpenBSD: INSTALL,v 1.2 2001/04/13 22:16:10 todd Exp $
# $OpenBSD: INSTALL,v 1.3 2003/04/24 23:48:48 todd Exp $
#
# Pre/post-installation setup of LAM
@ -10,7 +10,7 @@ DB_DIR=${DB_DIR}
do_post_install()
{
for f in bhost.def bhost.lam conf.lam conf.otb helpfile; do
file=/etc/lam-$f
file=${SYSCONFDIR}/lam-$f
if [ -f $file ]; then
existing="$existing lam-$f"
else
@ -23,13 +23,14 @@ do_post_install()
echo "+---------------"
if ! [ X"${install}" = X"" ]; then
echo "| The following files have been copied from the"
echo "| ${PREFIX}/share/examples/lam directory to /etc/"
echo "| ${PREFIX}/share/examples/lam directory to ${SYSCONFDIR}"
echo "| $install"
fi
if ! [ X"${existing}" = X"" ]; then
echo "| The following files were already present. Current"
echo "| examples for this package are found in:"
echo "| Current examples for this package are found in:"
echo "| ${PREFIX}/share/examples/lam"
echo "| The following files were already present:"
echo "| $existing"
fi
echo "+---------------"
echo

View File

@ -1,5 +1,4 @@
@comment $OpenBSD: PLIST,v 1.2 2001/04/13 20:29:16 todd Exp $
COPYRIGHT
@comment $OpenBSD: PLIST,v 1.3 2003/04/24 23:48:48 todd Exp $
bin/balky
bin/hboot
bin/hcc
@ -15,6 +14,7 @@ bin/lamnodes
bin/lamshrink
bin/lamtrace
bin/mpiCC
bin/mpic++
bin/mpicc
bin/mpif77
bin/mpimsg
@ -24,8 +24,6 @@ bin/recon
bin/tkill
bin/tping
bin/wipe
doc/README
doc/users-guide.ps.gz
include/lam_config.h
include/mpi++.h
include/mpi.h
@ -77,11 +75,13 @@ man/man1/hf77.1
man/man1/introu.1
man/man1/lamboot.1
man/man1/lamclean.1
man/man1/lamd.1
man/man1/lamexec.1
man/man1/lamgrow.1
man/man1/lamshrink.1
man/man1/lamtrace.1
man/man1/mpiCC.1
man/man1/mpic++.1
man/man1/mpicc.1
man/man1/mpif77.1
man/man1/mpimsg.1
@ -91,6 +91,15 @@ man/man1/recon.1
man/man1/tkill.1
man/man1/tping.1
man/man1/wipe.1
man/man3/MPIL_Comm_gps.3
man/man3/MPIL_Comm_id.3
man/man3/MPIL_Comm_parent.3
man/man3/MPIL_Signal.3
man/man3/MPIL_Spawn.3
man/man3/MPIL_Trace_off.3
man/man3/MPIL_Trace_on.3
man/man3/MPIL_Type_id.3
man/man3/MPIL_Universe_size.3
man/man3/MPIO_Request_c2f.3
man/man3/MPIO_Request_f2c.3
man/man3/MPIO_Test.3
@ -392,52 +401,17 @@ man/man7/MPI.7
man/man7/lam.7
man/man7/mpi.7
man/mans/mpi.share
test/Makefile
test/README
test/async.c
test/atomicity.c
test/coll_perf.c
test/coll_test.c
test/error.c
test/excl.c
test/fcoll_test.f
test/file_info.c
test/fmisc.f
test/fperf.f
test/i_noncontig.c
test/large_array.c
test/large_file.c
test/misc.c
test/noncontig.c
test/noncontig_coll.c
test/perf.c
test/pfcoll_test.f
test/psimple.c
test/runtests
test/shared_fp.c
test/simple.c
test/split_coll.c
test/status.c
test/std/async.std
test/std/atomicity.std
test/std/coll_test.std
test/std/error.std
test/std/excl.std
test/std/fcoll_test.std
test/std/file_info.std
test/std/fmisc.std
test/std/i_noncontig.std
test/std/misc.std
test/std/noncontig.std
test/std/noncontig_coll.std
test/std/pfcoll_test.std
test/std/psimple.std
test/std/shared_fp.std
test/std/simple.std
test/std/split_coll.std
test/std/status.std
@dirrm test/std
@dirrm test
share/examples/lam/lam-bhost.def
share/examples/lam/lam-bhost.lam
share/examples/lam/lam-conf.lam
share/examples/lam/lam-conf.otb
share/examples/lam/lam-helpfile
share/lam/doc/ROMIO-COPYRIGHT
share/lam/doc/ROMIO-README
share/lam/doc/ROMIO-README_LAM
share/lam/doc/romio-users-guide.ps.gz
@dirrm share/lam/doc
@dirrm share/lam
@dirrm share/examples/lam
@dirrm man/mans
@dirrm include/mpi2c++
@dirrm doc