mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
079bc6cbf6
support. 2-requests-for-review-or-OK-ignored-by: MAINTAINER
39 lines
1.2 KiB
Bash
39 lines
1.2 KiB
Bash
#! /bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
VERSION="`sed -ne 's/^set vers \(.*\)/\1/p' ${WRKSRC}/exmh.install`"
|
|
|
|
# Rename while installing..
|
|
for i in exmh
|
|
do
|
|
echo "install -c -o bin -g bin -m 444 $i.l ${PREFIX}/man/man1/$i.1"
|
|
install -c -o bin -g bin -m 444 $i.l ${PREFIX}/man/man1/$i.1
|
|
done
|
|
|
|
BINS="exmh-async exmh-bg exmh ftp.expect"
|
|
|
|
echo "install -c -o bin -g bin -m 755 ${BINS} ${PREFIX}/bin"
|
|
install -c -o bin -g bin -m 755 ${BINS} ${PREFIX}/bin
|
|
|
|
if [ ! -d ${PREFIX}/lib/exmh-${VERSION} ]
|
|
then
|
|
echo "mkdir ${PREFIX}/lib/exmh-${VERSION}"
|
|
mkdir ${PREFIX}/lib/exmh-${VERSION}
|
|
fi
|
|
|
|
LIBFILES='lib/*.tcl lib/*.bitmap lib/*.gif lib/*.ppm lib/help.* lib/tclIndex lib/app-defaults lib/app-defaults-* lib/*.mask lib/*.exp lib/mime.types lib/*.au lib/PgpDecryptExpect'
|
|
|
|
echo "install -c -o bin -g bin -m 444 ${LIBFILES} ${PREFIX}/lib/exmh-${VERSION}"
|
|
install -c -o bin -g bin -m 444 ${LIBFILES} ${PREFIX}/lib/exmh-${VERSION}
|
|
|
|
if [ ! -d ${PREFIX}/lib/exmh-${VERSION}/html ]
|
|
then
|
|
echo "mkdir ${PREFIX}/lib/exmh-${VERSION}/html"
|
|
mkdir ${PREFIX}/lib/exmh-${VERSION}/html
|
|
fi
|
|
|
|
echo "install -c -o bin -g bin -m 444 lib/html/* ${PREFIX}/lib/exmh-${VERSION}/html"
|
|
install -c -o bin -g bin -m 444 lib/html/*.html lib/html/*.gif ${PREFIX}/lib/exmh-${VERSION}/html
|