freebsd-ports/devel/sfio/Makefile
Alexander Leidinger d16f7bfb92 Reset maintainership to ports@ after ~4 months without any response to any
PR.

Thanks for contributing.

Since the acroread7 port is a somewhat important port for our users, I
will hand it over to emulation@ if no _active_ *committer* takes it
before the ports freeze.

While I'm here:
 - fix a little nit in the csound port (I think the intention was to
   create no backup file instead of creating one with a "-e" extension)
 - set ARCH to i386 in the amd64 case for the acroread7 port. This
   is a work-around to be able to install everything when a dependency
   is not already installed (ARCH is read-only in sub-makes, so the
   dependencies can't change it). This should be removed when the
   dependencies are fixed or converted to use bsd.linux-rpm.mk. [1]

Not objected to by:	portmgr (explicit: krion; silence: rest)
Maintainer timeout:	~4 months
Submitted by:		Sangwoo Shim <sangwoos@gmail.com> [1]
PR:			87985 [1]
2006-02-11 21:03:14 +00:00

52 lines
1.3 KiB
Makefile

# ex:ts=8
# Ports collection makefile for: sfio
# Date created: 8 November 1997
# Whom: jraynard
#
# $FreeBSD$
#
PORTNAME= sfio
PORTVERSION= 1999
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_NETBSD}
DISTNAME= ${PORTNAME}_${PORTVERSION}
EXTRACT_SUFX= .src.unix.cpio
MAINTAINER= ports@FreeBSD.org
COMMENT= The Safe/Fast I/O Library
EXTRACT_CMD= ${CPIO}
EXTRACT_BEFORE_ARGS= -idF
EXTRACT_AFTER_ARGS= # empty
NO_WRKSUBDIR= yes
MAN1= iffe.1
MAN3= sfio.3
PLIST= ${WRKDIR}/pkg-plist
# 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
pre-install:
${RM} -f ${PLIST}
.for ii in ast_common sfio sfio_t stdio
${ECHO_CMD} include/sfio/${ii}.h >> ${PLIST}
.endfor
.for ii in sfio stdio
${ECHO_CMD} lib/lib${ii}.a >> ${PLIST}
.endfor
${ECHO_CMD} @dirrm include/sfio >> ${PLIST}
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>