36 lines
991 B
Makefile
36 lines
991 B
Makefile
# $NetBSD: Makefile,v 1.15 2004/01/20 12:22:21 agc Exp $
|
|
#
|
|
|
|
DISTNAME= sendfile-20010216
|
|
PKGNAME= sendfile-2.1.0.2
|
|
PKGREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.belwue.de/pub/unix/sendfile/current/
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://www.belwue.de/aktivitaeten/projekte/saft/
|
|
COMMENT= Implementation of the Simple asynchronous file transfer protocol
|
|
|
|
WRKSRC= ${WRKDIR}/sendfile-2.1a
|
|
USE_BUILDLINK2= yes
|
|
USE_PKGINSTALL= yes
|
|
|
|
DEINSTALL_EXTRA_TMPL+= ${.CURDIR}/DEINSTALL
|
|
|
|
PKG_SYSCONFSUBDIR= sendfile
|
|
EGDIR= ${PREFIX}/share/examples/sendfile
|
|
CONF_FILES= ${EGDIR}/sendfile.cf ${PKG_SYSCONFDIR}/sendfile.cf
|
|
CONF_FILES+= ${EGDIR}/sendfile.deny ${PKG_SYSCONFDIR}/sendfile.deny
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && \
|
|
${SED} -e 's,@PREFIX@,${PREFIX},g' \
|
|
-e 's,@PKG_SYSCONFDIR@,${PKG_SYSCONFDIR},g' \
|
|
< makeconfig > makeconfig.new; \
|
|
${MV} makeconfig.new makeconfig; \
|
|
${CHMOD} +x makeconfig
|
|
|
|
post-configure:
|
|
cd ${WRKSRC} && ${MAKE} config
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|