mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
6b33c7e57c
PREFIX/include/stdio.h is just too dangerous as one can too easily get it when they don't want it. Also Sendmail 8.11 (building with STARTTLS) expects to find the header "sfio/sfio.h". Submitted by: Lyndon Nerenberg <lyndon@orthanc.ab.ca>
73 lines
2.2 KiB
Makefile
73 lines
2.2 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: sfio
|
|
# Date created: 8 November 1997
|
|
# Whom: jraynard
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sfio
|
|
PORTVERSION= 1999
|
|
CATEGORIES= devel
|
|
#real master site is http://www.research.att.com/sw/tools/sfio/
|
|
MASTER_SITES= \
|
|
ftp://ftp.netbsd.org/pub${SUB} \
|
|
ftp://ftp.netbsd.org/pub${SUB2} \
|
|
ftp://gatekeeper.dec.com/pub/BSD${SUB} \
|
|
ftp://gatekeeper.dec.com/pub/BSD${SUB2} \
|
|
ftp://ftp.planix.com/pub${SUB} \
|
|
ftp://ftp.planix.com/pub${SUB2} \
|
|
ftp://ftp.plig.net/pub${SUB} \
|
|
ftp://ftp.plig.net/pub${SUB2} \
|
|
ftp://ftp.csua.berkeley.edu/pub/.1/ports/distfiles/ \
|
|
ftp://ftp.iastate.edu/pub/netbsd/packages/distfiles/ \
|
|
ftp://ftp.iastate.edu/pub/netbsd/packages/distfiles/LOCAL_PORTS/ \
|
|
ftp://ftp.tuwien.ac.at/zaux024/opsys${SUB} \
|
|
ftp://ftp.tuwien.ac.at/zaux024/opsys${SUB2} \
|
|
ftp://sunsite.cnlab-switch.ch/mirror${SUB} \
|
|
ftp://ftp.unina.it/pub/Unix${SUB} \
|
|
ftp://ftp.unina.it/pub/Unix${SUB2} \
|
|
ftp://ftp.sunsite.org.uk/Mirrors/ftp.netbsd.org/pub${SUB} \
|
|
ftp://ftp.sunsite.org.uk/Mirrors/ftp.netbsd.org/pub${SUB2} \
|
|
ftp://ftp.dti.ad.jp/pub${SUB} \
|
|
ftp://ftp.dti.ad.jp/pub${SUB2} \
|
|
ftp://ftp.jaist.ac.jp/.arc07${SUB} \
|
|
ftp://ftp.jaist.ac.jp/.arc07${SUB2} \
|
|
ftp://ftp.tokyonet.ad.jp${SUB} \
|
|
ftp://ftp.sra.co.jp/pub/os${SUB} \
|
|
ftp://ftp.sra.co.jp/pub/os${SUB2} \
|
|
ftp://ftp.u-aizu.ac.jp/pub/os${SUB} \
|
|
ftp://ftp.u-aizu.ac.jp/pub/os${SUB2} \
|
|
ftp://ftp.nectec.or.th/pub/bsd-distributions${SUB}
|
|
SUB= /NetBSD/packages/distfiles/
|
|
SUB2= ${SUB}LOCAL_PORTS/
|
|
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
EXTRACT_SUFX= .src.unix.cpio
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
|
|
EXTRACT_CMD= cpio
|
|
EXTRACT_BEFORE_ARGS= -idF
|
|
EXTRACT_AFTER_ARGS= # empty
|
|
NO_WRKSUBDIR= yes
|
|
MAN1= iffe.1
|
|
MAN3= sfio.3
|
|
|
|
# Remove a test that's too clever for its own good
|
|
post-extract:
|
|
@${MV} ${WRKDIR}/src/lib/sfio/Sfio_t/tmmap2read.c \
|
|
${WRKDIR}/src/lib/sfio/Sfio_t/.tmmap2read.c
|
|
|
|
do-build:
|
|
@cd ${WRKDIR}/src/lib/sfio && ${MAKE} all -f makefile
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/include/sfio
|
|
${INSTALL_DATA} ${WRKDIR}/include/* ${PREFIX}/include/sfio
|
|
cd ${WRKDIR}/lib ; ${INSTALL_DATA} libsfio.a libstdio.a ${PREFIX}/lib
|
|
${INSTALL_MAN} ${WRKDIR}/man/man1/iffe.1 ${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKDIR}/man/man3/sfio.3 ${PREFIX}/man/man3
|
|
|
|
.include <bsd.port.mk>
|