35717bde57
Changes from [*]: - Update Ice to 3.5.1. - Stageify all three ports. - Convert py-ice and php5-ice to slave ports. - Use ICONV_LIB, so it builds ok with native iconv [1]. - Workaround for FreeBSD 10's static destructor order disaster [2]. - Install man pages. - Allow package build for non-root users. [1] http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/using-iconv.html [2] http://lists.freebsd.org/pipermail/freebsd-ports/2013-June/084580.html Changes from [3]: - Convert LIB_DEPENDS to new syntax. - USE_GMAKE -> USES - list Berkeley DB 6 invalid, requires upstream changes, but upstream is loathe to make those due to licensing change in BDB - remove BDB 2 and 3 from invalid listing, we no longer have these ports PR: ports/184453 [*] PR: ports/185569 [3] Submitted by: Michael Gmelin (maintainer) [*] Submitted by: mandree [3] Approved by: Michael Gmelin (maintainer) [3]
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# Created by: Boris B. Samorodov <bsam@ipt.ru>
|
|
# $FreeBSD$
|
|
|
|
CATEGORIES= devel python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= freebsd@grem.de
|
|
COMMENT= Ice (Internet Communications Engine) language mapping for Python
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= mcpp:${PORTSDIR}/devel/mcpp \
|
|
slice2py:${PORTSDIR}/devel/ice
|
|
LIB_DEPENDS= Ice.${LIB_VRS}:${PORTSDIR}/devel/ice
|
|
|
|
USE_PYTHON= yes
|
|
SLAVE_PORT= yes
|
|
MASTERDIR= ${.CURDIR}/../ice
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
|
|
BUILD_WRKSRC= ${WRKSRC}/py
|
|
INSTALL_WRKSRC= ${WRKSRC}/py
|
|
|
|
LIB_VRS= ${PORTVERSION:S|.||g:C|[0-9]$||}
|
|
PLIST_SUB= LIB_VERSION="${PORTVERSION}" LIB_VRS="${LIB_VRS}"
|
|
|
|
# bypass infrastructure bug (taken from www/py-django)
|
|
OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options
|
|
OPTIONS_DEFINE= DEBUG DOCS TESTS
|
|
OPTIONS_DEFAULT=TESTS
|
|
TESTS_DESC= Run tests
|
|
|
|
post-install:
|
|
${ECHO} "Ice" > ${STAGEDIR}${PYSITEDIR}/Ice.pth
|
|
@${FIND} ${STAGEDIR}${PYSITEDIR}/Ice \( -name "*.pyc" -or -name "*.pyo" \) \
|
|
-exec ${CHMOD} u+w {} \;
|
|
@${PYTHON_CMD} -m compileall ${STAGEDIR}${PYSITEDIR}/Ice
|
|
@${PYTHON_CMD} -O -m compileall ${STAGEDIR}${PYSITEDIR}/Ice
|
|
|
|
.include "${MASTERDIR}/Makefile"
|