mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
146867e802
to separate ports. These ports are: www/mod_dav_svn instead of option MOD_DAV_SVN. security/subversion-gnome-keyring instead of option GNOME_KEYRING. security/subversion-kwallet instead of option KDE_KWALLET. If you used devel/subversion with one (or more) of these non-standard options, you should install appropriate port after subversion upgrade. "mod_dontdothat" is installed unconditionally by www/mod_dav_svn port (it has been depended on TOOLS option), but is not activated by default, you may need to edit apache's configuration file. devel/subversion port now installs svndiff, svndiff3 and svndiff4 commands if TOOLS option is enabled. They was skipped before. Official names "diff", "diff3" and "diff4" are prefixed with "svn" to avoid conflicts with base and other diff versions. All libraries and binaries are now stripped if MAINTAINER_DEBUG option is not selected (including all sub-ports, like bindings and mod_dav_svn).
35 lines
816 B
Makefile
35 lines
816 B
Makefile
# Created by: Autrijus Tang <autrijus@autrijus.org>
|
|
# $FreeBSD$
|
|
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= lev@FreeBSD.org
|
|
COMMENT= Perl bindings for Version control system
|
|
|
|
.if defined(WITH_SUBVERSION_VER) && ${WITH_SUBVERSION_VER} == 16
|
|
MASTERDIR= ${.CURDIR}/../../devel/subversion16
|
|
.elif defined(WITH_SUBVERSION_VER) && ${WITH_SUBVERSION_VER} == 17
|
|
MASTERDIR= ${.CURDIR}/../../devel/subversion17
|
|
.else
|
|
MASTERDIR= ${.CURDIR}/../../devel/subversion
|
|
.endif
|
|
PKGDIR= ${.CURDIR}
|
|
|
|
USES= perl5
|
|
USE_PERL5= build run fixpacklist
|
|
|
|
SVN_BUILD_BINDINGS= yes
|
|
SVN_BUILD_ADDONS= yes
|
|
|
|
.include "${MASTERDIR}/Makefile.common"
|
|
|
|
CATEGORIES+= perl5
|
|
|
|
ALL_TARGET= swig-pl-lib swig-pl
|
|
INSTALL_TARGET= install-swig-pl
|
|
|
|
pre-install:
|
|
${REINPLACE_CMD} '/SWIG_PL_DIR/s, install$$, all pure_install,g' ${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.post.mk>
|