From a71e676a77e4a38054c8a2a677b9d9cdea9b30f1 Mon Sep 17 00:00:00 2001 From: "James E. Housley" Date: Fri, 23 Mar 2001 00:27:40 +0000 Subject: more flexible build options: .enables apache module to embeded more python features. (crypt, cmath, strop.. and so many;same to lang/python port) but useless features (openpty, gnu readline) are disabled by default. .strip object at post-build phase by default. Assorted cleanup for portlint PR: 25839 Submitted by: Chang, Hye-Shik MAINTAINER --- www/mod_python/Makefile | 65 ++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 61 insertions(+), 4 deletions(-) (limited to 'www/mod_python') diff --git a/www/mod_python/Makefile b/www/mod_python/Makefile index 9d2e1093e7df..1b3d91336e2e 100644 --- a/www/mod_python/Makefile +++ b/www/mod_python/Makefile @@ -7,6 +7,7 @@ PORTNAME= mod_python PORTVERSION= 2.7.2 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= http://www.modpython.org/dist/ \ http://www.python.org/ftp/python/2.0/ \ @@ -19,23 +20,79 @@ MAINTAINER= perky@python.or.kr BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 RUN_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 +USE_PYTHON= yes +INSTALLS_SHLIB= yes + +.include + PYTHON_WRKSRC= ${WRKSRC}/../Python-${PYTHON_VERSION:S/python//g} APXS= ${PREFIX}/sbin/apxs GNU_CONFIGURE= yes -USE_PYTHON= yes -CONFIGURE_ARGS= --with-apxs=${LOCALBASE}/sbin/apxs \ +CONFIGURE_ARGS+= --with-apxs=${LOCALBASE}/sbin/apxs \ --with-python=${PYTHON_WRKSRC} CONFIGURE_ENV= PYTHON_BIN=${LOCALBASE}/bin/python PLIST_SUB+= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S/^${LOCALBASE}\///g} +.if defined(WITH_OPENPTY) +OPTIONAL_LIBS+= -lutil +.endif + +.if defined(WITH_GNUREADLINE) +OPTIONAL_LIBS+= -lreadline +.endif + +PYTHON_CONFIGURE_ARGS+= --without-threads +PYTHON_SETUP_FILE?= ${PORTSDIR}/lang/python/files/Setup +STRIP_BIN?= /usr/bin/strip + +pre-fetch: + @${ECHO} "" + @${ECHO} "You may use the following build option:" + @${ECHO} "" + @${ECHO} " PYTHON_SETUP_FILE=path specify python modules setup file" + @${ECHO} " WITH_OPENPTY=yes enables openpty function in posixmodule" + @${ECHO} " WITH_GNUREADLINE=yes enables gnu readline library" + @${ECHO} " DONT_STRIP=yes don't strip shared object" + @${ECHO} "" + +pre-patch: +.if !defined(${WITH_OPENPTY}) + ${PATCH} -s ${PYTHON_WRKSRC}/Modules/Setup +.else + ${CP} ${PYTHON_SETUP_FILE} ${PYTHON_WRKSRC}/Modules/Setup +.endif + +post-configure: +.if defined(OPTIONAL_LIBS) + ${SED} 's/^\(LIBS=.*\)/\1 ${OPTIONAL_LIBS}/' ${WRKSRC}/src/Makefile \ + > ${WRKSRC}/src/Makefile.tmp && \ + ${MV} -f ${WRKSRC}/src/Makefile.tmp ${WRKSRC}/src/Makefile +.endif pre-build: cd ${PYTHON_WRKSRC} && ${MAKE} +post-build: +.if !defined(DONT_STRIP) && exists(${STRIP_BIN}) + ${STRIP_BIN} ${WRKSRC}/src/mod_python.so +.endif + post-install: @${CAT} ${PKGMESSAGE} -.include +.include -- cgit v1.2.3