diff options
author | Bruce A. Mah <bmah@FreeBSD.org> | 2001-01-22 20:06:10 +0000 |
---|---|---|
committer | Bruce A. Mah <bmah@FreeBSD.org> | 2001-01-22 20:06:10 +0000 |
commit | d1f12ac02d402447867dc6dd265c64285b5793b4 (patch) | |
tree | 722874cfd6165162855518294e87cd8eddbfe4ae /mail/exmh2/scripts/install | |
parent | Release a few ports back into the wild that I don't have (diff) |
Update exmh to 2.3.1. This release was made primarily to fix a symlink
vulnerability reported to bugtraq. Mostly a bugfix release although a few
new features (filtering in sedit, optional expect-based inc wrapper,
optional bitmap buttons) have been added.
FreeBSD-specific parts to this commit: Removed patchfiles that were
imported from the exmh CVS repository as they are now a part of the
exmh-2.3.1 release. Fixed pkg-descr to quiet a few portlint warnings.
Changed port to use wish-8.3 rather than wish-8.2 (suggested by markm).
Notes
Notes:
svn path=/head/; revision=37457
Diffstat (limited to 'mail/exmh2/scripts/install')
-rw-r--r-- | mail/exmh2/scripts/install | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/mail/exmh2/scripts/install b/mail/exmh2/scripts/install index 3c91c06a1c29..a34869ac8a25 100644 --- a/mail/exmh2/scripts/install +++ b/mail/exmh2/scripts/install @@ -12,7 +12,7 @@ do install -c -o bin -g bin -m 444 $i.l ${PREFIX}/man/man1/$i.1 done -BINS="exmh-async exmh-bg exmh ftp.expect" +BINS="exmh-async exmh-bg exmh ftp.expect inc.expect" echo "install -c -o bin -g bin -m 755 ${BINS} ${PREFIX}/bin" install -c -o bin -g bin -m 755 ${BINS} ${PREFIX}/bin @@ -34,5 +34,16 @@ then mkdir ${PREFIX}/lib/exmh-${VERSION}/html fi -echo "install -c -o bin -g bin -m 444 lib/html/* ${PREFIX}/lib/exmh-${VERSION}/html" +echo "install -c -o bin -g bin -m 444 lib/html/* lib/html/*.gif ${PREFIX}/lib/exmh-${VERSION}/html" install -c -o bin -g bin -m 444 lib/html/*.html lib/html/*.gif ${PREFIX}/lib/exmh-${VERSION}/html + +if [ ! -d ${PREFIX}/lib/exmh-${VERSION}/bitmaps ] +then + echo "mkdir ${PREFIX}/lib/exmh-${VERSION}/bitmaps" + mkdir ${PREFIX}/lib/exmh-${VERSION}/bitmaps +fi + +echo "install -c -o bin -g bin -m 444 lib/bitmaps/bitmaps.defaults lib/bitmaps/*.xbm ${PREFIX}/lib/exmh-${VERSION}/bitmaps" +install -c -o bin -g bin -m 444 lib/bitmaps/bitmaps.defaults lib/bitmaps/*.xbm ${PREFIX}/lib/exmh-${VERSION}/bitmaps + + |