9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
34 lines
1,006 B
Makefile
34 lines
1,006 B
Makefile
# $NetBSD: Makefile,v 1.14 2006/03/04 21:29:29 jlam Exp $
|
|
#
|
|
|
|
# pkgsrc/mail/sendmail (as of 8.11.0) specifically wants 1999, not 2000.
|
|
# if you upgrade it, please check if sendmail works right.
|
|
#
|
|
# the original distribution requires us to put name onto web form, however,
|
|
# the license term permits redistribution. a copy of the distribution kit
|
|
# is put into ${MASTER_SITE_LOCAL}.
|
|
#
|
|
DISTNAME= sfio_1999.src.unix
|
|
PKGNAME= sfio-1999
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
EXTRACT_SUFX= .cpio
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://akpublic.research.att.com/sw/tools/sfio/
|
|
COMMENT= Safe and Fast IO library
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
INSTALLATION_DIRS= man/man3
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKDIR}
|
|
cd ${WRKDIR} && ${PAX} -O -rf ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
post-patch:
|
|
${MV} ${WRKSRC}/man/man3/sfio.3 ${WRKSRC}/man/man3/sfio.3.in
|
|
${SED} -e 's|@prefix@|${PREFIX}|g' ${WRKSRC}/man/man3/sfio.3.in \
|
|
> ${WRKSRC}/man/man3/sfio.3
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|