mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
e33bc01307
PR: ports/17727 Submitted by: Nadav Eiron <nadav@libagent.cs.technion.ac.il>
80 lines
2.6 KiB
Makefile
80 lines
2.6 KiB
Makefile
# New ports collection makefile for: pine-heb
|
|
# Date created: Apr 01 2000
|
|
# Whom: Nadav Eiron <nadav@cs.technion.ac.il>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pine
|
|
PORTVERSION= 4.21.2.9
|
|
CATEGORIES= hebrew mail news
|
|
MASTER_SITES= ftp://www8.cc.huji.ac.il/pub/pine/
|
|
DISTNAME= pine4.21_heb2.09
|
|
|
|
MAINTAINER?= nadav@cs.technion.ac.il
|
|
|
|
MAN1= pine.1 pico.1 pilot.1
|
|
|
|
post-patch:
|
|
for i in ${WRKSRC}/doc/pine.1 \
|
|
${WRKSRC}/pine/init.c \
|
|
${WRKSRC}/pine/pine.hlp \
|
|
${WRKSRC}/pine/mailcap.c \
|
|
${WRKSRC}/pine/osdep/os-bsf.h ; do \
|
|
${MV} $$i $$i.sed ; \
|
|
${SED} -e "s:@@PREFIX@@:${PREFIX}:g" \
|
|
$$i.sed >$$i ; \
|
|
${RM} $$i.sed ; \
|
|
done
|
|
for i in ${WRKSRC}/doc/tech-notes.txt \
|
|
${WRKSRC}/doc/tech-notes/*.html ; do \
|
|
${MV} $$i $$i.sed ; \
|
|
${SED} -e "s:/usr/local/lib/:${PREFIX}/etc/:g" \
|
|
$$i.sed >$$i ; \
|
|
${RM} $$i.sed ; \
|
|
done
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ./build bsf)
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/pico ${PREFIX}/bin/pico
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/pilot ${PREFIX}/bin/pilot
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/pine ${PREFIX}/bin/pine
|
|
${SED} -e 's,@@PREFIX@@,${PREFIX},g' \
|
|
< ${FILESDIR}/pgpdecode > ${WRKSRC}/bin/pgpdecode
|
|
${SED} -e 's,@@PREFIX@@,${PREFIX},g' \
|
|
< ${FILESDIR}/pgpencrypt > ${WRKSRC}/bin/pgpencrypt
|
|
${SED} -e 's,@@PREFIX@@,${PREFIX},g' \
|
|
< ${FILESDIR}/pgpsign > ${WRKSRC}/bin/pgpsign
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/pgpencrypt ${PREFIX}/bin/pgpencrypt
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/pgpdecode ${PREFIX}/bin/pgpdecode
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/pgpsign ${PREFIX}/bin/pgpsign
|
|
${SED} -e 's,@@PREFIX@@,${PREFIX},g' \
|
|
< ${FILESDIR}/dot.pinerc.pgp.sample \
|
|
> ${WRKSRC}/dot.pinerc.pgp.sample
|
|
${INSTALL_DATA} ${WRKSRC}/dot.pinerc.pgp.sample \
|
|
${PREFIX}/etc/dot.pinerc.pgp.sample
|
|
${INSTALL_MAN} ${WRKSRC}/doc/pico.1 ${PREFIX}/man/man1/pico.1
|
|
${INSTALL_MAN} ${WRKSRC}/doc/pilot.1 ${PREFIX}/man/man1/pilot.1
|
|
${INSTALL_MAN} ${WRKSRC}/doc/pine.1 ${PREFIX}/man/man1/pine.1
|
|
.if !defined(NOPORTDOCS)
|
|
${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} \
|
|
${PREFIX}/share/doc/pine \
|
|
${PREFIX}/share/doc/pine/tech-notes
|
|
${INSTALL_DATA} ${WRKSRC}/doc/brochure.txt ${PREFIX}/share/doc/pine
|
|
${INSTALL_DATA} ${WRKSRC}/doc/tech-notes.txt ${PREFIX}/share/doc/pine
|
|
${INSTALL_DATA} ${WRKSRC}/doc/tech-notes/*.html \
|
|
${PREFIX}/share/doc/pine/tech-notes/
|
|
.endif
|
|
|
|
post-install:
|
|
${PREFIX}/bin/pine -P ${PREFIX}/etc/pine.conf -conf >${WRKSRC}/pine.conf
|
|
${INSTALL_DATA} ${WRKSRC}/pine.conf ${PREFIX}/etc/pine.conf
|
|
|
|
# hack to allow slave ports to include bsd.port.pre.mk and then this file
|
|
.if defined(PRE_MK_INCLUDED)
|
|
.include <bsd.port.post.mk>
|
|
.else
|
|
.include <bsd.port.mk>
|
|
.endif
|