f70e0f2d29
- Better *DEPENDS - Bump PKGNAME ok naddy@
106 lines
2.6 KiB
Makefile
106 lines
2.6 KiB
Makefile
# $OpenBSD: Makefile,v 1.3 2005/03/13 22:46:18 alek Exp $
|
|
|
|
COMMENT= "subversion revision control system"
|
|
COMMENT-perl= "perl interface to subversion"
|
|
COMMENT-python= "python interface to subversion"
|
|
|
|
VERSION= 1.1.3
|
|
DISTNAME= subversion-${VERSION}
|
|
PKGNAME= ${DISTNAME}p0
|
|
PKGNAME-perl= p5-SVN-${VERSION}p0
|
|
PKGNAME-python= py-subversion-${VERSION}p0
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://subversion.tigris.org/
|
|
|
|
MAINTAINER= Aleksander Piotrowski <alek@openbsd.org>
|
|
|
|
# BSD alike + Apache License 2.0
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= apr-1 db z
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/tarballs/
|
|
|
|
PSEUDO_FLAVORS= no_bindings
|
|
FLAVOR?=
|
|
|
|
PYTHON_VER= 2.3
|
|
SUBST_VARS= PYTHON_VER
|
|
|
|
MODULES= devel/gettext
|
|
|
|
LIB_DEPENDS= neon.24:neon->=0.24.7:net/neon \
|
|
aprutil-1.0::devel/apr-util \
|
|
expat.4::textproc/expat
|
|
|
|
.if !${FLAVOR:L:Mno_bindings}
|
|
MULTI_PACKAGES= -perl -python
|
|
SUBPACKAGE?=
|
|
|
|
. if defined(PACKAGING) && !empty(SUBPACKAGE)
|
|
SHARED_ONLY= Yes
|
|
LIB_DEPENDS= svn_diff-1,svn_ra-1,svn_delta-1,svn_subr-1,svn_fs-1,svn_repos-1,svn_wc-1,svn_client-1::devel/subversion \
|
|
expat.4::textproc/expat
|
|
WANTLIB+= aprutil-1
|
|
|
|
. if ${SUBPACKAGE} == "-python"
|
|
RUN_DEPENDS+= :python-${PYTHON_VER}*:lang/python/${PYTHON_VER}
|
|
LIB_DEPENDS+= swigpy.0::devel/swig
|
|
. else
|
|
LIB_DEPENDS+= swigpl.0::devel/swig
|
|
. endif
|
|
. endif
|
|
|
|
. if !defined(PACKAGING)
|
|
LIB_DEPENDS+= swigpy.0,swigpl.0::devel/swig
|
|
BUILD_DEPENDS= ::lang/python/${PYTHON_VER}
|
|
. endif
|
|
.endif
|
|
|
|
.if defined(PACKAGING) && empty(SUBPACKAGE)
|
|
WANTLIB+= crypto m ssl xml2 c
|
|
.endif
|
|
|
|
SEPARATE_BUILD= simple
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV= PYTHON2=${LOCALBASE}/bin/python${PYTHON_VER}
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
|
--with-neon=${LOCALBASE} \
|
|
--with-apr=${LOCALBASE} \
|
|
--with-apr-util=${LOCALBASE} \
|
|
--with-zlib \
|
|
--without-apache \
|
|
--without-apxs \
|
|
--without-jdk
|
|
.if !${FLAVOR:L:Mno_bindings}
|
|
CONFIGURE_ARGS+=--enable-swig-bindings=perl,python \
|
|
--with-swig=${LOCALBASE}
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-swig-bindings \
|
|
--without-swig
|
|
.endif
|
|
|
|
REGRESS_DEPENDS=::lang/python/${PYTHON_VER}
|
|
REGRESS_FLAGS= LD_LIBRARY_PATH=`find ${WRKBUILD} -name .libs | tr '\012' :`
|
|
|
|
pre-build:
|
|
@perl -pi -e "s,!!PYTHON_VER!!,${PYTHON_VER}," ${WRKBUILD}/Makefile
|
|
|
|
.if !${FLAVOR:L:Mno_bindings}
|
|
post-build:
|
|
@cd ${WRKBUILD} && ${MAKE_PROGRAM} swig-py
|
|
@cd ${WRKBUILD} && ${MAKE_PROGRAM} swig-pl
|
|
|
|
post-install:
|
|
@cd ${WRKBUILD} && ${MAKE_PROGRAM} install-swig-py
|
|
@cd ${WRKBUILD} && ${MAKE_PROGRAM} install-swig-pl
|
|
|
|
post-regress:
|
|
@cd ${WRKBUILD} && ${MAKE_PROGRAM} ${REGRESS_FLAGS} check-swig-pl
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|