(subversion/svnversion/svnversion . 2> /dev/null || svnversion . 2> /dev/null || echo "unknown"; ) > /usr/ports/devel/subversion/work/stage/usr/local/include/subversion-1/svn-revision.txt (cd /usr/ports/devel/subversion/work/subversion-1.8.5/tools.examples && /usr/bin/tar --exclude '*.in' -cf - * | /usr/bin/tar -C /usr/ports/devel/subversion/work/stage/usr/local/share/subversion -xof - ) install -o root -g wheel -m 444 /usr/ports/devel/subversion/work/subversion-1.8.5/BUGS /usr/ports/devel/subversion/work/subversion-1.8.5/CHANGES /usr/ports/devel/subversion/work/subversion-1.8.5/COMMITTERS /usr/ports/devel/subversion/work/subversion-1.8.5/INSTALL /usr/ports/devel/subversion/work/subversion-1.8.5/README /usr/ports/devel/subversion/work/stage/usr/local/share/doc/subversion ====> Compressing man pages (compress-man) ===> Staging rc.d startup script(s) ===> Installing for subversion-1.8.5_1 ===> Checking if devel/subversion already installed ===> Registering installation for subversion-1.8.5_1 pkg-static: lstat(/usr/ports/devel/subversion/work/stage/usr/local/lib/libsvn_fs_base-1.a): No such file or directory pkg-static: lstat(/usr/ports/devel/subversion/work/stage/usr/local/lib/libsvn_fs_base-1.la): No such file or directory pkg-static: lstat(/usr/ports/devel/subversion/work/stage/usr/local/lib/libsvn_fs_base-1.so): No such file or directory pkg-static: lstat(/usr/ports/devel/subversion/work/stage/usr/local/lib/libsvn_fs_base-1.so.0): No such file or directory *** Error code 74 Stop. make[1]: stopped in /usr/ports/devel/subversion *** Error code 1 Stop. make: stopped in /usr/ports/devel/subversion ===>>> Installation of subversion-1.8.5_1 (devel/subversion) failed ===>>> Aborting update ===>>> Killing background jobs Terminated ===>>> You can restart from the point of failure with this command line: portmaster <flags> devel/subversion ===>>> Exiting --- root@fbsd10x64 [/var/db/ports] (18:13) cat /var/db/ports/devel_subversion/options # This file is auto-generated by 'make config'. # Options for subversion-1.8.5_1 _OPTIONS_READ=subversion-1.8.5_1 _FILE_COMPLETE_OPTIONS_LIST=BDB DOCS FREEBSD_TEMPLATE GNOME_KEYRING KDE_KWALLET MAINTAINER_DEBUG MOD_DAV_SVN NLS P4_STYLE_MARKERS SASL SERF STATIC SVNSERVE_WRAPPER TEST TOOLS OPTIONS_FILE_SET+=BDB OPTIONS_FILE_SET+=DOCS OPTIONS_FILE_SET+=FREEBSD_TEMPLATE OPTIONS_FILE_UNSET+=GNOME_KEYRING OPTIONS_FILE_UNSET+=KDE_KWALLET OPTIONS_FILE_UNSET+=MAINTAINER_DEBUG OPTIONS_FILE_UNSET+=MOD_DAV_SVN OPTIONS_FILE_SET+=NLS OPTIONS_FILE_SET+=P4_STYLE_MARKERS OPTIONS_FILE_UNSET+=SASL OPTIONS_FILE_SET+=SERF OPTIONS_FILE_UNSET+=STATIC OPTIONS_FILE_UNSET+=SVNSERVE_WRAPPER OPTIONS_FILE_UNSET+=TEST OPTIONS_FILE_UNSET+=TOOLS
Responsible Changed From-To: freebsd-ports-bugs->lev Over to maintainer (via the GNATS Auto Assign Tool)
I had this same problem. I had installed databases/db6 Subversion failed with the same errors as the original poster. After 'make clean' and 'make install' I observed that subversion configure was complaining that it had found db6 but wouldn't use it until --enable-bdb6 was provided. I added BDB_CONFIGURE_ON= -enable-bdb6 to Makefile.common and the build/installation succeeded. Cheers, -- Chris Williams aka BinGOs PGP ID 0x4658671F http://www.gumbynet.org.uk ==========================
Author: lev Date: Sat Feb 15 12:56:16 2014 New Revision: 344380 URL: http://svnweb.freebsd.org/changeset/ports/344380 QAT: https://qat.redports.org/buildarchive/r344380/ Log: (1) Make possible to build subversion with db6. (2) Fix and STAGEfy subversion-static. (3) Allow not to override/deinstall modified svnserve script if it is used. PR: ports/185005, ports/180121, ports/181340, ports/186446, ports/186764 Modified: head/devel/subversion-static/Makefile head/devel/subversion/Makefile head/devel/subversion/Makefile.common head/devel/subversion/pkg-plist Modified: head/devel/subversion-static/Makefile ============================================================================== --- head/devel/subversion-static/Makefile Sat Feb 15 12:50:46 2014 (r344379) +++ head/devel/subversion-static/Makefile Sat Feb 15 12:56:16 2014 (r344380) @@ -11,5 +11,13 @@ OPTIONS_SLAVE= FREEBSD_TEMPLATE P4_STYL MASTERDIR= ${.CURDIR}/../subversion PKGMESSAGE= ${.CURDIR}/pkg-message -NO_STAGE= yes +# Set these by hands, as options are undefined +PLIST_SUB+= TOOLS="@comment " \ + SVNSERVE_WRAPPER="@comment " \ + GNOME_KEYRING="@comment " \ + KDE_KWALLET="@comment " \ + BDB="@comment " \ + MOD_DAV_SVN="@comment " \ + NLS="@comment " + .include "${MASTERDIR}/Makefile" Modified: head/devel/subversion/Makefile ============================================================================== --- head/devel/subversion/Makefile Sat Feb 15 12:50:46 2014 (r344379) +++ head/devel/subversion/Makefile Sat Feb 15 12:56:16 2014 (r344380) @@ -62,8 +62,10 @@ EXTRA_PATCHES+= ${PATCHDIR}/extra-patch- .if ${PORT_OPTIONS:MSVNSERVE_WRAPPER} SUB_LIST+= SVNSERVE_BIN_EXT=".bin" +PLIST_SUB+= NO_SVNSERVE_WRAPPER="@comment " .else SUB_LIST+= SVNSERVE_BIN_EXT="" +PLIST_SUB+= NO_SVNSERVE_WRAPPER="" .endif .if ${PORT_OPTIONS:MMOD_DAV_SVN} @@ -87,6 +89,7 @@ USES+= gettext:build . endif . if ${PORT_OPTIONS:MBDB} BDB_BUILD_DEPENDS= yes +.else . endif OLD_LIB_DEPENDS:= ${LIB_DEPENDS:S!^!${LOCALBASE}/lib/!:C!(\.so|\.[0-9]+)?:!.a:!} BUILD_DEPENDS+= ${OLD_LIB_DEPENDS} @@ -96,6 +99,12 @@ PLIST_SUB+= DYNAMIC_ENABLED="@comment " PLIST_SUB+= DYNAMIC_ENABLED="" .endif +.if ${PORT_OPTIONS:MBDB} +CONFIGURE_ARGS+= --enable-bdb6 +.else +CONFIGURE_ARGS+= --without-berkeley-db +.endif + .if make(repository) WITH_REPOSITORY_CREATION= yes .endif @@ -193,12 +202,10 @@ post-install: ${MKREPOS_TARGET} .endif @${MKDIR} ${STAGEDIR}${DATADIR} (cd ${WRKSRC}/tools.examples && ${TAR} --exclude '*.in' -cf - * | ${TAR} -C ${STAGEDIR}${DATADIR} -xof - ) - @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} - .if ${PORT_OPTIONS:MSVNSERVE_WRAPPER} - @${INSTALL_SCRIPT} ${FILESDIR}/svnserve.wrapper ${STAGEDIR}${PREFIX}/bin/svnserve + @${INSTALL_SCRIPT} ${FILESDIR}/svnserve.wrapper ${STAGEDIR}${PREFIX}/bin/svnserve.sample .endif # =============================================================================== Modified: head/devel/subversion/Makefile.common ============================================================================== --- head/devel/subversion/Makefile.common Sat Feb 15 12:50:46 2014 (r344379) +++ head/devel/subversion/Makefile.common Sat Feb 15 12:56:16 2014 (r344380) @@ -3,7 +3,7 @@ PORTNAME= subversion PORTVERSION= 1.8.5 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES+= devel MASTER_SITES= ${MASTER_SITE_APACHE} DIST_SUBDIR= subversion18 Modified: head/devel/subversion/pkg-plist ============================================================================== --- head/devel/subversion/pkg-plist Sat Feb 15 12:50:46 2014 (r344379) +++ head/devel/subversion/pkg-plist Sat Feb 15 12:56:16 2014 (r344380) @@ -13,8 +13,11 @@ bin/svnlook bin/svnmucc %%TOOLS%%bin/svnraisetreeconflict bin/svnrdump -bin/svnserve +%%NO_SVNSERVE_WRAPPER%%bin/svnserve +%%SVNSERVE_WRAPPER%%@unexec if cmp -s %D/bin/svnserve.sample %D/bin/svnserve; then rm -r %D/bin/svnserve; fi %%SVNSERVE_WRAPPER%%bin/svnserve.bin +%%SVNSERVE_WRAPPER%%bin/svnserve.sample +%%SVNSERVE_WRAPPER%%@exec if [ ! -f %D/bin/svnserve ] ; then cp -p %D/%F %B/bin/svnserve; fi bin/svnsync bin/svnversion include/subversion-1/mod_authz_svn.h _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Fixed