mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
aa3e8bc6df
- Add LICENSE - Use USES=gmake - Respect PORTEXAMPLES - Support STAGEDIR - Pass maintainership to submitter Changes: http://sourceforge.net/p/omniorb/svn/HEAD/tree/tags/4_1_7/omniORBpy/ReleaseNotes.txt PR: ports/188345 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com>
62 lines
2.2 KiB
Makefile
62 lines
2.2 KiB
Makefile
# Created by: Johann Visagie <johann@egenetics.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= omniorb
|
|
PORTVERSION= 3.7
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= SF/${PORTNAME}/omniORBpy/omniORBpy-${PORTVERSION}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= omniORBpy-${PORTVERSION}
|
|
|
|
MAINTAINER= 5u623l20@gmail.com
|
|
COMMENT= Python bindings for omniORB4, a CORBA 2.6 ORB
|
|
|
|
LICENSE= LGPL21
|
|
|
|
LIB_DEPENDS= libomniORB4.so:${PORTSDIR}/devel/omniORB
|
|
RUN_DEPENDS= omniidl:${PORTSDIR}/devel/omniORB
|
|
# parts of omniORB4 source tree is required to build omniORBpy;
|
|
# see also the "post-extract" target below.
|
|
BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/devel/omniORB:patch
|
|
|
|
CONFLICTS= py*-orbit-2*
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
PLIST_SUB= SONUM=${PORTVERSION:C/.*\.//}
|
|
|
|
CONFIGURE_WRKSRC= ${WRKSRC}/build
|
|
BUILD_WRKSRC= ${CONFIGURE_WRKSRC}
|
|
INSTALL_WRKSRC= ${CONFIGURE_WRKSRC}
|
|
OMNIORB_WRKSRC!= cd ${.CURDIR}/../omniORB && ${MAKE} -V WRKSRC
|
|
|
|
USE_PYTHON= yes
|
|
USE_OPENSSL= yes
|
|
GNU_CONFIGURE= yes
|
|
MAKEFILE= GNUmakefile
|
|
USE_LDCONFIG= yes
|
|
USES= gmake tar:bzip2
|
|
|
|
CONFIGURE_SCRIPT= ../configure
|
|
CONFIGURE_ENV+= PYTHON=${PYTHON_CMD}
|
|
CONFIGURE_ARGS= --with-openssl=${OPENSSLBASE} --with-omniorb=${LOCALBASE}
|
|
|
|
pre-configure:
|
|
@${MKDIR} ${CONFIGURE_WRKSRC}
|
|
@cd ${OMNIORB_WRKSRC} && ${FIND} idl | ${CPIO} --quiet -pdum ${WRKSRC}
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}/html
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}/tex
|
|
${INSTALL_DATA} ${WRKSRC}/doc/omniORBpy.* ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/omniORBpy/* ${STAGEDIR}${DOCSDIR}/html
|
|
${INSTALL_DATA} ${WRKSRC}/doc/tex/* ${STAGEDIR}${DOCSDIR}/tex
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
cd ${WRKSRC}/examples && ${FIND} . \
|
|
| ${CPIO} --quiet -pdum -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${EXAMPLESDIR}
|
|
cd ${STAGEDIR}${PYTHON_SITELIBDIR} && ${PYTHON_CMD} -c "import py_compile;py_compile.compile('CosNaming/__init__.py',None,'CosNaming/__init__.pyc',True)"
|
|
cd ${STAGEDIR}${PYTHON_SITELIBDIR} && ${PYTHON_CMD} -c "import py_compile;py_compile.compile('CosNaming__POA/__init__.py',None,'CosNaming__POA/__init__.pyc',True)"
|
|
cd ${STAGEDIR}${PYTHON_SITELIBDIR} && ${PYTHON_CMD} -c "import py_compile;py_compile.compile('omniidl_be/python.py',None,'omniidl_be/python.pyc',True)"
|
|
|
|
.include <bsd.port.mk>
|