- New, optional Makefile variable HOMEPAGE, specifies a URL for the home page of the software if it has one. - The value of HOMEPAGE is used to add a link from the README.html files. - pkglint updated to know about it. The "correct" location for HOMEPAGE in the Makefile is after MAINTAINER, in that same section.
44 lines
1.4 KiB
Makefile
44 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.5 1998/08/20 15:16:41 tsarna Exp $
|
|
#
|
|
|
|
DISTNAME= fidogate-4.2.9
|
|
CATEGORIES= comms
|
|
MASTER_SITES= ftp://ftp.fido.de/pub/fidogate/
|
|
|
|
MAINTAINER= tv@netbsd.org # aka "Todd Vierling" @ 1:396/1.5
|
|
HOMEPAGE= http://www.fido.de/fidogate/
|
|
|
|
USE_GMAKE= yes
|
|
USE_PERL5= yes
|
|
USE_LIBTOOL= yes
|
|
WRKSRC= ${WRKDIR}/fidogate
|
|
|
|
NO_CDROM= "extremely limited usefulness to the general public"
|
|
|
|
INFO_FILES= fidogate.info
|
|
|
|
pre-install:
|
|
${INSTALL_DATA_DIR} -m 0755 ${PREFIX}/lib/fidogate
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} \
|
|
${PREFIX}/share/fidogate \
|
|
${PREFIX}/share/fidogate/inn \
|
|
${PREFIX}/share/fidogate/nodelist \
|
|
${PREFIX}/share/fidogate/scripts \
|
|
${PREFIX}/share/fidogate/sendmail
|
|
cd ${WRKSRC}/scripts/inn && \
|
|
${INSTALL_DATA} send-ffx send-fidogate viaffx ${PREFIX}/share/fidogate/inn/
|
|
cd ${WRKSRC}/scripts/nodelist && \
|
|
${INSTALL_DATA} latest nl-2hosts nl-2routing nl-autoupd \
|
|
nl-check nl-del nl-diff nl-html nl-isdn \
|
|
nl-print template.html ${PREFIX}/share/fidogate/nodelist/
|
|
cd ${WRKSRC}/scripts/outbound && \
|
|
${INSTALL_DATA} out-freq out-ls out-manip out-rm0 out-rmbsy ${PREFIX}/share/fidogate/scripts/
|
|
cd ${WRKSRC}/scripts/run && \
|
|
${INSTALL_DATA} run1 run2 runffx runpoll ${PREFIX}/share/fidogate/scripts/
|
|
cd ${WRKSRC}/sendmail/mailer && \
|
|
${INSTALL_DATA} ffx.m4 ftn.m4 ${PREFIX}/share/fidogate/sendmail/
|
|
${INSTALL_DATA} ${WRKSRC}/scripts/maintenance/rc.fidogate ${PREFIX}/etc/rc.d/fidogate.sh
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|