mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
ecb7b08e0d
HTTP/1.1 request. Moved distfile to www.freebsd.org/~fenner/ temporarily. Left original MASTER_SITE commented out - newer fetch fetches the distfile properly, and server administrator is working on the problem, so will probably be able to be moved back soon.
28 lines
756 B
Makefile
28 lines
756 B
Makefile
# New ports collection makefile for: qpage
|
|
# Version required: 3.2
|
|
# Date created: 02 Aug 1997
|
|
# Whom: joes@seaport.net
|
|
#
|
|
# $Id: Makefile,v 1.6 1998/08/31 05:30:20 asami Exp $
|
|
#
|
|
|
|
DISTNAME= qpage-3.2
|
|
CATEGORIES= comms
|
|
#MASTER_SITES= http://www.qpage.org/download/
|
|
MASTER_SITES= http://www.freebsd.org/~fenner/
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= joes@seaport.net
|
|
|
|
MAN1= qpage.1
|
|
|
|
post-install:
|
|
@if [ ! -f ${PREFIX}/etc/rc.d/qpage.sh ]; then \
|
|
${ECHO} "Install ${PREFIX}/etc/rc.d/qpage.sh startup file."; \
|
|
${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/qpage.sh; \
|
|
${ECHO} "[ -x ${PREFIX}/bin/qpage ] && ${PREFIX}/bin/qpage -q10 && echo -n ' qpage'" >> ${PREFIX}/etc/rc.d/qpage.sh; \
|
|
chmod 751 ${PREFIX}/etc/rc.d/qpage.sh; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|