diff options
author | bmah <bmah@FreeBSD.org> | 2001-01-23 04:06:10 +0800 |
---|---|---|
committer | bmah <bmah@FreeBSD.org> | 2001-01-23 04:06:10 +0800 |
commit | 38e5d27048fc7ac63d3fb597e790424f0a68b628 (patch) | |
tree | 479705c7fa1214e317e45bb4bf3de16ccb69cff2 /mail/exmh2/scripts | |
parent | 2f2e939028695a112013552d2ccd7be6d9737c6b (diff) | |
download | freebsd-ports-gnome-38e5d27048fc7ac63d3fb597e790424f0a68b628.tar.gz freebsd-ports-gnome-38e5d27048fc7ac63d3fb597e790424f0a68b628.tar.zst freebsd-ports-gnome-38e5d27048fc7ac63d3fb597e790424f0a68b628.zip |
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).
Diffstat (limited to 'mail/exmh2/scripts')
-rw-r--r-- | mail/exmh2/scripts/build | 2 | ||||
-rw-r--r-- | mail/exmh2/scripts/install | 15 |
2 files changed, 14 insertions, 3 deletions
diff --git a/mail/exmh2/scripts/build b/mail/exmh2/scripts/build index 272083613718..7596a8eca8f9 100644 --- a/mail/exmh2/scripts/build +++ b/mail/exmh2/scripts/build @@ -87,7 +87,7 @@ sed <${FILESDIR}/${CONFIGFILE} \ -e "s+!!DATE!!+${DATE}+g" \ | sed -e 's/$/\\/' -e '$ s/.$//' >> ${SEDFILE} -for i in exmh-async exmh-bg exmh ftp.expect +for i in exmh-async exmh-bg exmh ftp.expect inc.expect do echo "sed -f ${SEDFILE} < $i.MASTER > $i" sed -f ${SEDFILE} < $i.MASTER > $i 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 + + |