mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
69 lines
1.8 KiB
Makefile
69 lines
1.8 KiB
Makefile
# New ports collection makefile for: io
|
|
# Date created: 4 Nov 2005
|
|
# Whom: Hye-Shik Chang
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= io
|
|
PORTVERSION= 0.0.2008.01.20
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://io.urbanape.com/release/ \
|
|
http://www.sigusr1.org/~steve/
|
|
DISTNAME= Io-${PORTVERSION:S/0.0.//:S/./-/g}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Small prototype-based programming language
|
|
|
|
USE_GMAKE= yes
|
|
CFLAGS+= -fPIC
|
|
USE_LDCONFIG= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
MAKE_ENV= INSTALL_PREFIX="${PREFIX}"
|
|
|
|
# All addons that do not require extra dependencies
|
|
# Additional addons may be added as separate ports with some
|
|
# makefile hacking in a manner similar to Qt4 ports
|
|
DEFAULT_ADDONS= AsyncRequest Blowfish Box CGI ContinuedFraction Curses \
|
|
EditLine Flux Fnmatch LZO Loki MD5 NetworkAdapter \
|
|
NotificationCenter Random Range Rational ReadLine SHA1 \
|
|
SqlDatabase Syslog SystemCall Thread User Zlib
|
|
|
|
PORTDOCS= *
|
|
PORTEXAMPLES= *
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 600000
|
|
LIB_DEPENDS+= edit.6:${PORTSDIR}/devel/libedit
|
|
.endif
|
|
|
|
post-patch:
|
|
@cd ${WRKSRC}/addons && for addon in *; do \
|
|
if ! ${ECHO_CMD} ${DEFAULT_ADDONS} | ${GREP} $$addon > /dev/null; then \
|
|
${RM} -fr $$addon; \
|
|
fi; \
|
|
done
|
|
|
|
@${REINPLACE_CMD} -e 's|CFLAGS = $$(OPTIMIZE)|CFLAGS +=|' \
|
|
${WRKSRC}/Makefile.lib
|
|
@${REINPLACE_CMD} -e '/CC = gcc/ d' \
|
|
${WRKSRC}/libs/basekit/source/simd_cph/test/Makefile
|
|
@${REINPLACE_CMD} -e '/cp _build\/dll\/.*\/bin/ d' ${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/include/io
|
|
${INSTALL_DATA} ${WRKSRC}/_build/headers/* ${PREFIX}/include/io
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
@cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${DOCSDIR}
|
|
.endif
|
|
.if !defined(NOPORTEXAMPLES)
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
@cd ${WRKSRC}/samples && ${COPYTREE_SHARE} . ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|