From owner-svn-ports-all@freebsd.org Sun Aug 9 01:37:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C52CE9B18D9; Sun, 9 Aug 2015 01:37:36 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B4A8B139C; Sun, 9 Aug 2015 01:37:36 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t791batp068617; Sun, 9 Aug 2015 01:37:36 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t791bZx0068613; Sun, 9 Aug 2015 01:37:35 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201508090137.t791bZx0068613@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 9 Aug 2015 01:37:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393751 - head/devel/arm-none-eabi-gcc492 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 01:37:36 -0000 Author: ian (src committer) Date: Sun Aug 9 01:37:34 2015 New Revision: 393751 URL: https://svnweb.freebsd.org/changeset/ports/393751 Log: Create a gcc 4.9.2 arm bare-metal cross-compiler. This is needed to build old vendor releases of u-boot that don't build with gcc5. Approved by: rpaulo, imp Added: head/devel/arm-none-eabi-gcc492/ head/devel/arm-none-eabi-gcc492/Makefile (contents, props changed) head/devel/arm-none-eabi-gcc492/distinfo (contents, props changed) head/devel/arm-none-eabi-gcc492/pkg-descr (contents, props changed) head/devel/arm-none-eabi-gcc492/pkg-plist (contents, props changed) Added: head/devel/arm-none-eabi-gcc492/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arm-none-eabi-gcc492/Makefile Sun Aug 9 01:37:34 2015 (r393751) @@ -0,0 +1,76 @@ +# $FreeBSD$ + +PORTNAME= gcc +PORTVERSION= 4.9.2 +CATEGORIES= devel +MASTER_SITES= GCC/releases/gcc-${DISTVERSION} +PKGNAMEPREFIX?= arm-none-eabi- + +MAINTAINER= ian@FreeBSD.org +COMMENT= GNU Compiler Collection for bare metal arm cross-development + +LICENSE= GPLv3 GPLv3RLE +LICENSE_COMB= multi + +LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp \ + libmpfr.so:${PORTSDIR}/math/mpfr \ + libmpc.so:${PORTSDIR}/math/mpc +BUILD_DEPENDS= ${BU_PREFIX}-as:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils +RUN_DEPENDS= ${BU_PREFIX}-as:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils + +USES= compiler gmake iconv libtool makeinfo tar:bzip2 +PLIST_SUB= TARGETARCH=${PKGNAMEPREFIX:C/-//g} \ + OPSYS=${OPSYS:tl} \ + GCC_TARGET=${GCC_TARGET} + +PATCH_WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +WRKSRC= ${WRKDIR}/build-gcc + +GCC_TARGET= arm-none-eabi +BU_PREFIX?= ${GCC_TARGET} + +GNU_CONFIGURE= yes +# libstdcxx won't build, but we don't need it or multiple float-abi libs. +CONFIGURE_ARGS= --target=${GCC_TARGET} --disable-nls --enable-languages=c,c++ \ + --without-headers \ + --with-gmp=${LOCALBASE} \ + --with-pkgversion="FreeBSD Ports Collection for ${PKGNAMEPREFIX:C/-//g}" \ + --with-system-zlib \ + --with-as=${LOCALBASE}/bin/${BU_PREFIX}-as \ + --with-ld=${LOCALBASE}/bin/${BU_PREFIX}-ld \ + --disable-libstdcxx \ + --disable-multilib + +CONFIGURE_SCRIPT= ../${PORTNAME}-${PORTVERSION}/configure + +PLIST= ${.CURDIR}/pkg-plist + +# U-Boot requires libgcc, crossbuild and install it along with the compiler. +ALL_TARGET= all-gcc all-target-libgcc +INSTALL_TARGET= install-gcc install-target-libgcc + +.include + +CONFIGURE_TARGET= ${ARCH}-portbld-${OPSYS:tl}${OSREL} + +post-extract: + @${MKDIR} ${WRKSRC} + +post-stage: + @if [ -f ${STAGEDIR}${PREFIX}/bin/cpp ] ; then \ + ${MV} ${STAGEDIR}${PREFIX}/bin/cpp \ + ${STAGEDIR}${PREFIX}/bin/${GCC_TARGET}-cpp ; \ + fi +.for f in c++ cpp g++ gcc gcc-ar gcc-nm gcc-ranlib gcov + @${RM} ${STAGEDIR}${PREFIX}/bin/$f + @${RM} ${STAGEDIR}${PREFIX}/man/man1/$f.1.gz +.endfor + @${RM} ${STAGEDIR}${PREFIX}/info/* + @${RM} ${STAGEDIR}${PREFIX}/man/man7/* + +# The following is required for clang to bootstrap gcc. +.if ${COMPILER_TYPE} == clang +MAKE_ARGS+= CXXFLAGS=-fbracket-depth=512 +.endif + +.include Added: head/devel/arm-none-eabi-gcc492/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arm-none-eabi-gcc492/distinfo Sun Aug 9 01:37:34 2015 (r393751) @@ -0,0 +1,2 @@ +SHA256 (gcc-4.9.2.tar.bz2) = 2020c98295856aa13fda0f2f3a4794490757fc24bcca918d52cc8b4917b972dd +SIZE (gcc-4.9.2.tar.bz2) = 89939747 Added: head/devel/arm-none-eabi-gcc492/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arm-none-eabi-gcc492/pkg-descr Sun Aug 9 01:37:34 2015 (r393751) @@ -0,0 +1,3 @@ +GCC, the GNU Compiler Collection configured for bare-metal ARM cross-building. + +WWW: http://gcc.gnu.org/ Added: head/devel/arm-none-eabi-gcc492/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arm-none-eabi-gcc492/pkg-plist Sun Aug 9 01:37:34 2015 (r393751) @@ -0,0 +1,261 @@ +bin/%%GCC_TARGET%%-c++ +bin/%%GCC_TARGET%%-cpp +bin/%%GCC_TARGET%%-g++ +bin/%%GCC_TARGET%%-gcc +bin/%%GCC_TARGET%%-gcc-4.9.2 +bin/%%GCC_TARGET%%-gcc-ar +bin/%%GCC_TARGET%%-gcc-nm +bin/%%GCC_TARGET%%-gcc-ranlib +bin/%%GCC_TARGET%%-gcov +lib/gcc/%%GCC_TARGET%%/4.9.2/libgcc.a +lib/gcc/%%GCC_TARGET%%/4.9.2/crtbegin.o +lib/gcc/%%GCC_TARGET%%/4.9.2/crtend.o +lib/gcc/%%GCC_TARGET%%/4.9.2/crti.o +lib/gcc/%%GCC_TARGET%%/4.9.2/crtn.o +lib/gcc/%%GCC_TARGET%%/4.9.2/include-fixed/README +lib/gcc/%%GCC_TARGET%%/4.9.2/include-fixed/limits.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include-fixed/syslimits.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/arm_acle.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/arm_neon.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/float.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/iso646.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/mmintrin.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdalign.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdarg.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdatomic.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdbool.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stddef.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdfix.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdint-gcc.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdint.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdnoreturn.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/tgmath.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/unwind-arm-common.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/varargs.h +lib/gcc/%%GCC_TARGET%%/4.9.2/install-tools/fixinc_list +lib/gcc/%%GCC_TARGET%%/4.9.2/install-tools/gsyslimits.h +lib/gcc/%%GCC_TARGET%%/4.9.2/install-tools/include/README +lib/gcc/%%GCC_TARGET%%/4.9.2/install-tools/include/limits.h +lib/gcc/%%GCC_TARGET%%/4.9.2/install-tools/macro_list +lib/gcc/%%GCC_TARGET%%/4.9.2/install-tools/mkheaders.conf +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/gtype.state +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ada/gcc-interface/ada-tree.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/alias.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/all-tree.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/alloc-pool.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ansidecl.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/attribs.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/auto-host.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/b-header-vars +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/basic-block.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/bitmap.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/builtins.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/bversion.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/c-family/c-common.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/c-family/c-common.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/c-family/c-objc.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/c-family/c-pragma.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/c-family/c-pretty-print.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/c-tree.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/calls.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cfg-flags.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cfgexpand.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cfghooks.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cfgloop.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cgraph.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cif-code.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cilk-builtins.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cilkplus.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/aarch-common-protos.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/aout.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/arm-cores.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/arm-opts.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/arm-protos.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/arm.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/bpabi.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/elf.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/unknown-elf.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/dbxelf.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/elfos.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/initfini-array.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/newlib-stdint.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/vxworks-dummy.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/configargs.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/context.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/coretypes.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cp/cp-tree.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cp/cp-tree.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cp/cxx-pretty-print.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cp/name-lookup.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cp/type-utils.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cppdefault.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cpplib.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/debug.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/defaults.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/df.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/diagnostic-color.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/diagnostic-core.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/diagnostic.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/diagnostic.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/double-int.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/dumpfile.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/emit-rtl.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/except.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/filenames.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/fixed-value.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/flag-types.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/flags.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/fold-const.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/function.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gcc-plugin.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gcc-symtab.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/genrtl.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ggc.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-builder.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-expr.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-fold.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-iterator.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-low.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-pretty-print.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-ssa.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-walk.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimplify-me.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimplify.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gsstruct.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gtm-builtins.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gtype-desc.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/hard-reg-set.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/hash-table.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/hashtab.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/highlev-plugin-common.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/hwint.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/incpath.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/input.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/insn-codes.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/insn-constants.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/insn-flags.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/insn-modes.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/insn-notes.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/internal-fn.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/internal-fn.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/intl.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ipa-prop.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ipa-ref-inline.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ipa-ref.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ipa-reference.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ipa-utils.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/is-a.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/java/java-tree.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/langhooks.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/libiberty.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/line-map.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/machmode.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/md5.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/mode-classes.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/objc/objc-tree.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/obstack.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/omp-builtins.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/options.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/opts.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/output.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/params.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/params.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/pass_manager.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/plugin-api.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/plugin-version.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/plugin.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/plugin.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/pointer-set.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/predict.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/predict.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/prefix.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/pretty-print.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/print-rtl.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/print-tree.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/real.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/realmpfr.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/reg-notes.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/regset.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/resource.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/rtl.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/rtl.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/safe-ctype.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/sanitizer.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/sbitmap.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/splay-tree.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ssa-iterators.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/statistics.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/stmt.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/stor-layout.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/stringpool.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/symtab.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/sync-builtins.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/system.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/target-hooks-macros.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/target.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/target.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/timevar.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/timevar.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tm-preds.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tm.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tm_p.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/toplev.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-cfg.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-cfgcleanup.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-check.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-core.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-dfa.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-dump.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-eh.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-hasher.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-inline.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-into-ssa.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-iterator.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-nested.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-object-size.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-outof-ssa.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-parloops.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-pass.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-phinodes.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-pretty-print.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-address.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-alias.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-coalesce.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-dom.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-loop-ivopts.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-loop-manip.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-loop-niter.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-loop.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-operands.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-sccvn.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-ter.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-threadedge.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-threadupdate.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssanames.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/treestruct.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/varasm.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/vec.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/version.h +libexec/gcc/%%GCC_TARGET%%/4.9.2/cc1 +libexec/gcc/%%GCC_TARGET%%/4.9.2/cc1plus +libexec/gcc/%%GCC_TARGET%%/4.9.2/collect2 +libexec/gcc/%%GCC_TARGET%%/4.9.2/install-tools/fixinc.sh +libexec/gcc/%%GCC_TARGET%%/4.9.2/install-tools/fixincl +libexec/gcc/%%GCC_TARGET%%/4.9.2/install-tools/mkheaders +libexec/gcc/%%GCC_TARGET%%/4.9.2/install-tools/mkinstalldirs +libexec/gcc/%%GCC_TARGET%%/4.9.2/liblto_plugin.so +libexec/gcc/%%GCC_TARGET%%/4.9.2/liblto_plugin.so.0 +libexec/gcc/%%GCC_TARGET%%/4.9.2/liblto_plugin.so.0.0.0 +libexec/gcc/%%GCC_TARGET%%/4.9.2/lto-wrapper +libexec/gcc/%%GCC_TARGET%%/4.9.2/lto1 +libexec/gcc/%%GCC_TARGET%%/4.9.2/plugin/gengtype +man/man1/%%GCC_TARGET%%-cpp.1.gz +man/man1/%%GCC_TARGET%%-g++.1.gz +man/man1/%%GCC_TARGET%%-gcc.1.gz +man/man1/%%GCC_TARGET%%-gcov.1.gz From owner-svn-ports-all@freebsd.org Sun Aug 9 01:38:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 623459B1975; Sun, 9 Aug 2015 01:38:56 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 53A75161C; Sun, 9 Aug 2015 01:38:56 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t791cuM0068761; Sun, 9 Aug 2015 01:38:56 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t791cusr068760; Sun, 9 Aug 2015 01:38:56 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201508090138.t791cusr068760@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 9 Aug 2015 01:38:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393752 - head/sysutils/u-boot-rpi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 01:38:56 -0000 Author: ian (src committer) Date: Sun Aug 9 01:38:55 2015 New Revision: 393752 URL: https://svnweb.freebsd.org/changeset/ports/393752 Log: Use gcc 4.9.2 to cross-compile u-boot for rpi. Approved by: rpaulo Modified: head/sysutils/u-boot-rpi/Makefile Modified: head/sysutils/u-boot-rpi/Makefile ============================================================================== --- head/sysutils/u-boot-rpi/Makefile Sun Aug 9 01:37:34 2015 (r393751) +++ head/sysutils/u-boot-rpi/Makefile Sun Aug 9 01:38:55 2015 (r393752) @@ -14,9 +14,11 @@ COMMENT= Cross-build U-Boot loader for R LICENSE= GPLv2 -BUILD_DEPENDS= arm-none-eabi-gcc:${PORTSDIR}/devel/arm-none-eabi-gcc \ +BUILD_DEPENDS= ${CROSS_GCC}:${PORTSDIR}/devel/arm-none-eabi-gcc492 \ gsed:${PORTSDIR}/textproc/gsed +CROSS_GCC= arm-none-eabi-gcc-4.9.2 + USE_GITHUB= yes GH_ACCOUNT= gonzoua GH_PROJECT= u-boot-pi @@ -43,6 +45,7 @@ PLIST_FILES= ${U_BOOT_DIR}/u-boot.img \ MAKE_ARGS+= ARCH=arm \ CROSS_COMPILE=arm-none-eabi- \ HOSTCC=cc \ + CC=${CROSS_GCC} \ SED=gsed do-configure: From owner-svn-ports-all@freebsd.org Sun Aug 9 01:44:23 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70F959B1B3E; Sun, 9 Aug 2015 01:44:23 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6253B1AC4; Sun, 9 Aug 2015 01:44:23 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t791iNPR072705; Sun, 9 Aug 2015 01:44:23 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t791iNKT072704; Sun, 9 Aug 2015 01:44:23 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201508090144.t791iNKT072704@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 9 Aug 2015 01:44:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393753 - head/sysutils/u-boot-beaglebone X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 01:44:23 -0000 Author: ian (src committer) Date: Sun Aug 9 01:44:22 2015 New Revision: 393753 URL: https://svnweb.freebsd.org/changeset/ports/393753 Log: Use gcc 4.9.2 to cross-compile u-boot for beaglebone. Approved by: rpaulo Modified: head/sysutils/u-boot-beaglebone/Makefile Modified: head/sysutils/u-boot-beaglebone/Makefile ============================================================================== --- head/sysutils/u-boot-beaglebone/Makefile Sun Aug 9 01:38:55 2015 (r393752) +++ head/sysutils/u-boot-beaglebone/Makefile Sun Aug 9 01:44:22 2015 (r393753) @@ -12,7 +12,9 @@ COMMENT= Cross-build U-Boot loader for B LICENSE= GPLv2 -BUILD_DEPENDS= arm-none-eabi-gcc:${PORTSDIR}/devel/arm-none-eabi-gcc +BUILD_DEPENDS= ${CROSS_GCC}:${PORTSDIR}/devel/arm-none-eabi-gcc492 + +CROSS_GCC= arm-none-eabi-gcc-4.9.2 NO_ARCH= yes @@ -26,6 +28,7 @@ PLIST_FILES= ${U_BOOT_DIR}/u-boot.img \ ${U_BOOT_DIR}/README MAKE_ARGS+= ARCH=arm \ + CC=${CROSS_GCC} \ CROSS_COMPILE=arm-none-eabi- do-configure: From owner-svn-ports-all@freebsd.org Sun Aug 9 01:46:47 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B21489B1B87; Sun, 9 Aug 2015 01:46:47 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A384F1BDA; Sun, 9 Aug 2015 01:46:47 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t791klTu072901; Sun, 9 Aug 2015 01:46:47 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t791klks072900; Sun, 9 Aug 2015 01:46:47 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201508090146.t791klks072900@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 9 Aug 2015 01:46:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393754 - head/sysutils/u-boot-duovero X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 01:46:47 -0000 Author: ian (src committer) Date: Sun Aug 9 01:46:46 2015 New Revision: 393754 URL: https://svnweb.freebsd.org/changeset/ports/393754 Log: Use gcc 4.9.2 to cross-compile u-boot for duovero. Approved by: rpaulo Modified: head/sysutils/u-boot-duovero/Makefile Modified: head/sysutils/u-boot-duovero/Makefile ============================================================================== --- head/sysutils/u-boot-duovero/Makefile Sun Aug 9 01:44:22 2015 (r393753) +++ head/sysutils/u-boot-duovero/Makefile Sun Aug 9 01:46:46 2015 (r393754) @@ -11,7 +11,9 @@ COMMENT= Cross-build U-Boot loader for D LICENSE= GPLv2 -BUILD_DEPENDS= arm-none-eabi-gcc:${PORTSDIR}/devel/arm-none-eabi-gcc +BUILD_DEPENDS= ${CROSS_GCC}:${PORTSDIR}/devel/arm-none-eabi-gcc492 + +CROSS_GCC= arm-none-eabi-gcc-4.9.2 NO_ARCH= yes @@ -25,6 +27,7 @@ PLIST_FILES= ${U_BOOT_DIR}/u-boot.img \ ${U_BOOT_DIR}/README MAKE_ARGS+= ARCH=arm \ + CC=${CROSS_GCC} \ CROSS_COMPILE=arm-none-eabi- do-configure: From owner-svn-ports-all@freebsd.org Sun Aug 9 01:47:55 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 331F69B1C45; Sun, 9 Aug 2015 01:47:55 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 240831D5B; Sun, 9 Aug 2015 01:47:55 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t791ltnS073040; Sun, 9 Aug 2015 01:47:55 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t791ltPH073038; Sun, 9 Aug 2015 01:47:55 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201508090147.t791ltPH073038@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 9 Aug 2015 01:47:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393755 - head/sysutils/u-boot-pandaboard X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 01:47:55 -0000 Author: ian (src committer) Date: Sun Aug 9 01:47:54 2015 New Revision: 393755 URL: https://svnweb.freebsd.org/changeset/ports/393755 Log: Use gcc 4.9.2 to cross-compile u-boot for pandaboard. Approved by: rpaulo Modified: head/sysutils/u-boot-pandaboard/Makefile Modified: head/sysutils/u-boot-pandaboard/Makefile ============================================================================== --- head/sysutils/u-boot-pandaboard/Makefile Sun Aug 9 01:46:46 2015 (r393754) +++ head/sysutils/u-boot-pandaboard/Makefile Sun Aug 9 01:47:54 2015 (r393755) @@ -11,7 +11,9 @@ COMMENT= Cross-build U-Boot loader for P LICENSE= GPLv2 -BUILD_DEPENDS= arm-none-eabi-gcc:${PORTSDIR}/devel/arm-none-eabi-gcc +BUILD_DEPENDS= ${CROSS_GCC}:${PORTSDIR}/devel/arm-none-eabi-gcc492 + +CROSS_GCC= arm-none-eabi-gcc-4.9.2 NO_ARCH= yes @@ -25,6 +27,7 @@ PLIST_FILES= ${U_BOOT_DIR}/u-boot.img \ ${U_BOOT_DIR}/README MAKE_ARGS+= ARCH=arm \ + CC=${CROSS_GCC} \ CROSS_COMPILE=arm-none-eabi- do-configure: From owner-svn-ports-all@freebsd.org Sun Aug 9 01:52:17 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BA33A9B1E2A; Sun, 9 Aug 2015 01:52:17 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AB8DD10B; Sun, 9 Aug 2015 01:52:17 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t791qHOJ076922; Sun, 9 Aug 2015 01:52:17 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t791qHDs076921; Sun, 9 Aug 2015 01:52:17 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201508090152.t791qHDs076921@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 9 Aug 2015 01:52:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393756 - head/sysutils/u-boot-wandboard X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 01:52:17 -0000 Author: ian (src committer) Date: Sun Aug 9 01:52:16 2015 New Revision: 393756 URL: https://svnweb.freebsd.org/changeset/ports/393756 Log: Use gcc 4.9.2 to cross-compile u-boot for wandboard. Approved by: rpaulo Modified: head/sysutils/u-boot-wandboard/Makefile Modified: head/sysutils/u-boot-wandboard/Makefile ============================================================================== --- head/sysutils/u-boot-wandboard/Makefile Sun Aug 9 01:47:54 2015 (r393755) +++ head/sysutils/u-boot-wandboard/Makefile Sun Aug 9 01:52:16 2015 (r393756) @@ -11,7 +11,9 @@ COMMENT= Cross-build U-Boot loader for W LICENSE= GPLv2 -BUILD_DEPENDS= arm-none-eabi-gcc:${PORTSDIR}/devel/arm-none-eabi-gcc +BUILD_DEPENDS= ${CROSS_GCC}:${PORTSDIR}/devel/arm-none-eabi-gcc492 + +CROSS_GCC= arm-none-eabi-gcc-4.9.2 USE_GITHUB= yes GH_ACCOUNT= TechNexion @@ -27,6 +29,7 @@ PLIST_FILES= ${U_BOOT_DIR}/u-boot.imx \ ${U_BOOT_DIR}/README MAKE_ARGS+= ARCH=arm \ + CC=${CROSS_GCC} \ CROSS_COMPILE=arm-none-eabi- \ HOSTCC=cc From owner-svn-ports-all@freebsd.org Sun Aug 9 01:54:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E17FF9B1EA6; Sun, 9 Aug 2015 01:54:56 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wi0-x22e.google.com (mail-wi0-x22e.google.com [IPv6:2a00:1450:400c:c05::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7AE8E220; Sun, 9 Aug 2015 01:54:56 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by wibxm9 with SMTP id xm9so108451314wib.1; Sat, 08 Aug 2015 18:54:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=NM5ciPAlQJGgk5rdpv/itc+RjVrdfQN/bJgn9uUoDoc=; b=OBOxOVcR1b/m/hbYoNSES4Kq+xTpWXSaq8RIUxe2Xq+ofZkKU2QbwTh+vy/tVgImyI kMGJew1ywFlE0i8O/xbH8EKxoxpJ9fLXoZ5wHXDF6sq1URO+XT6kpU2jX6KIQnd/l0rF gDhAzphPTDvoPWUgNKwM9/cA4+kFbh6/G9RUZYWxPfbsLUfb3QfuwcV1qz/RQPTeSswk DIks/qqkavma9KNaWSaejhm1ZsOaxu8h5lat8DFHnVLrHlbMv/Hhi3cwBoF4sPnpsFGu okvWBgXOImJyYwisUaomH6Zl6GRAWSC3x1hbX3V3Lf8tjRhHk7DlUamxknCf+xwAKtj9 twvw== X-Received: by 10.180.78.73 with SMTP id z9mr11521071wiw.64.1439085294902; Sat, 08 Aug 2015 18:54:54 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id s1sm6359385wix.13.2015.08.08.18.54.53 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 08 Aug 2015 18:54:53 -0700 (PDT) Sender: Baptiste Daroussin Date: Sun, 9 Aug 2015 03:54:51 +0200 From: Baptiste Daroussin To: Ian Lepore Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r393756 - head/sysutils/u-boot-wandboard Message-ID: <20150809015451.GS43782@ivaldir.etoilebsd.net> References: <201508090152.t791qHDs076921@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GPT5DIEyVHz5yXBV" Content-Disposition: inline In-Reply-To: <201508090152.t791qHDs076921@repo.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 01:54:57 -0000 --GPT5DIEyVHz5yXBV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 09, 2015 at 01:52:17AM +0000, Ian Lepore wrote: > Author: ian (src committer) > Date: Sun Aug 9 01:52:16 2015 > New Revision: 393756 > URL: https://svnweb.freebsd.org/changeset/ports/393756 >=20 > Log: > Use gcc 4.9.2 to cross-compile u-boot for wandboard. > =20 > Approved by: rpaulo >=20 Out of curiousity the issue with gcc 5.2 is an issue with gcc itself or an = issue with u-boot? Best regards, Bapt --GPT5DIEyVHz5yXBV Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlXGsusACgkQ8kTtMUmk6EzMTgCgjgArph/uo+K1Bapx2zSPBRA6 i14An1iriZyo5g207xuUkltj0tCIYXvn =IrHc -----END PGP SIGNATURE----- --GPT5DIEyVHz5yXBV-- From owner-svn-ports-all@freebsd.org Sun Aug 9 02:01:42 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2ED199B2075 for ; Sun, 9 Aug 2015 02:01:42 +0000 (UTC) (envelope-from ian@freebsd.org) Received: from erouter6.ore.mailhop.org (erouter6.ore.mailhop.org [54.187.213.119]) by mx1.freebsd.org (Postfix) with SMTP id 0F824830 for ; Sun, 9 Aug 2015 02:01:41 +0000 (UTC) (envelope-from ian@freebsd.org) Received: from ilsoft.org (unknown [73.34.117.227]) by outbound3.ore.mailhop.org (Halon Mail Gateway) with ESMTPSA; Sun, 9 Aug 2015 01:59:02 +0000 (UTC) Received: from rev (rev [172.22.42.240]) by ilsoft.org (8.14.9/8.14.9) with ESMTP id t7921Yog028459; Sat, 8 Aug 2015 20:01:34 -0600 (MDT) (envelope-from ian@freebsd.org) Message-ID: <1439085694.70393.270.camel@freebsd.org> Subject: Re: svn commit: r393756 - head/sysutils/u-boot-wandboard From: Ian Lepore To: Baptiste Daroussin Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Date: Sat, 08 Aug 2015 20:01:34 -0600 In-Reply-To: <20150809015451.GS43782@ivaldir.etoilebsd.net> References: <201508090152.t791qHDs076921@repo.freebsd.org> <20150809015451.GS43782@ivaldir.etoilebsd.net> Content-Type: text/plain; charset="us-ascii" X-Mailer: Evolution 3.12.10 FreeBSD GNOME Team Port Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 02:01:42 -0000 On Sun, 2015-08-09 at 03:54 +0200, Baptiste Daroussin wrote: > On Sun, Aug 09, 2015 at 01:52:17AM +0000, Ian Lepore wrote: > > Author: ian (src committer) > > Date: Sun Aug 9 01:52:16 2015 > > New Revision: 393756 > > URL: https://svnweb.freebsd.org/changeset/ports/393756 > > > > Log: > > Use gcc 4.9.2 to cross-compile u-boot for wandboard. > > > > Approved by: rpaulo > > > Out of curiousity the issue with gcc 5.2 is an issue with gcc itself or an issue > with u-boot? > > Best > regards, > Bapt With u-boot. For the boards that use ancient vendor-supplied u-boot source they're missing some header files and I think if you get past that there are other compile errors. I've got a longer-term project underway to try to update all the u-boot ports to the latest mainline u-boot sources, which build fine with gcc5 or clang. But to get everybody working again right now (it's been broken for a while) this is the quick-fix. -- Ian From owner-svn-ports-all@freebsd.org Sun Aug 9 02:16:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 68E309B2369; Sun, 9 Aug 2015 02:16:56 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3CB96FEB; Sun, 9 Aug 2015 02:16:56 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t792Gup6085616; Sun, 9 Aug 2015 02:16:56 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t792Gt5f085614; Sun, 9 Aug 2015 02:16:55 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201508090216.t792Gt5f085614@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 9 Aug 2015 02:16:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393757 - in head/sysutils/u-boot-cubox-hummingboard: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 02:16:56 -0000 Author: ian (src committer) Date: Sun Aug 9 02:16:54 2015 New Revision: 393757 URL: https://svnweb.freebsd.org/changeset/ports/393757 Log: Use gcc 4.9.2 to cross-compile u-boot for Cubox and Hummingboard. Also, fix a board-type detection problem that prevents booting on hummingboard, by initializing fdt_board to something non-zero, so that it ends up in the data segment instead of bss (and thus survives the memory init process which includes zeroing bss and runs after board detection). Approved by: rpaulo Modified: head/sysutils/u-boot-cubox-hummingboard/Makefile head/sysutils/u-boot-cubox-hummingboard/files/patch-board_solidrun_mx6__cubox-i_mx6__cubox-i.c Modified: head/sysutils/u-boot-cubox-hummingboard/Makefile ============================================================================== --- head/sysutils/u-boot-cubox-hummingboard/Makefile Sun Aug 9 01:52:16 2015 (r393756) +++ head/sysutils/u-boot-cubox-hummingboard/Makefile Sun Aug 9 02:16:54 2015 (r393757) @@ -2,6 +2,7 @@ PORTNAME= u-boot PORTVERSION= 2013.10 +PORTREVISION= 1 CATEGORIES= sysutils PKGNAMESUFFIX= -cubox-hummingboard @@ -10,7 +11,9 @@ COMMENT= Cross-build U-Boot loader for S LICENSE= GPLv2 -BUILD_DEPENDS= arm-none-eabi-gcc:${PORTSDIR}/devel/arm-none-eabi-gcc +BUILD_DEPENDS= ${CROSS_GCC}:${PORTSDIR}/devel/arm-none-eabi-gcc492 + +CROSS_GCC= arm-none-eabi-gcc-4.9.2 USE_GITHUB= yes GH_ACCOUNT= SolidRun @@ -28,8 +31,9 @@ PLIST_FILES= ${U_BOOT_DIR}/u-boot.imx \ ${U_BOOT_DIR}/README MAKE_ARGS+= ARCH=arm \ + CC=${CROSS_GCC} \ CROSS_COMPILE=arm-none-eabi- \ - HOSTCC=clang + HOSTCC=cc do-configure: cd ${WRKSRC}; ${GMAKE} ${MAKE_ARGS} mx6_cubox-i_config Modified: head/sysutils/u-boot-cubox-hummingboard/files/patch-board_solidrun_mx6__cubox-i_mx6__cubox-i.c ============================================================================== --- head/sysutils/u-boot-cubox-hummingboard/files/patch-board_solidrun_mx6__cubox-i_mx6__cubox-i.c Sun Aug 9 01:52:16 2015 (r393756) +++ head/sysutils/u-boot-cubox-hummingboard/files/patch-board_solidrun_mx6__cubox-i_mx6__cubox-i.c Sun Aug 9 02:16:54 2015 (r393757) @@ -12,7 +12,7 @@ } static char const *board_type = "uninitialized"; -+static char const *fdt_board; ++static char const *fdt_board = "uninitialized"; int checkboard(void) { From owner-svn-ports-all@freebsd.org Sun Aug 9 03:44:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57BBC99D23E; Sun, 9 Aug 2015 03:44:49 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48D436AFB1; Sun, 9 Aug 2015 03:44:49 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t793in7r027623; Sun, 9 Aug 2015 03:44:49 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t793immd027622; Sun, 9 Aug 2015 03:44:48 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201508090344.t793immd027622@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Sun, 9 Aug 2015 03:44:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393758 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 03:44:49 -0000 Author: acm Date: Sun Aug 9 03:44:47 2015 New Revision: 393758 URL: https://svnweb.freebsd.org/changeset/ports/393758 Log: - Add bareos to UIDs and GIDs Modified: head/GIDs head/UIDs Modified: head/GIDs ============================================================================== --- head/GIDs Sun Aug 9 02:16:54 2015 (r393757) +++ head/GIDs Sun Aug 9 03:44:47 2015 (r393758) @@ -319,6 +319,7 @@ kannel:*:993: rcynic:*:994: rpkirtr:*:995: tarantool:*:996: +bareos:*:997: ebnetd:*:999: nogroup:*:65533: nobody:*:65534: Modified: head/UIDs ============================================================================== --- head/UIDs Sun Aug 9 02:16:54 2015 (r393757) +++ head/UIDs Sun Aug 9 03:44:47 2015 (r393758) @@ -328,5 +328,6 @@ kannel:*:993:993::0:0:Kannel User:/nonex rcynic:*:994:994::0:0:RPKI validation system:/nonexistent:/usr/sbin/nologin rpkirtr:*:995:995::0:0:RPKI router server:/nonexistent:/usr/sbin/nologin tarantool:*:996:996::0:0:Tarantool Daemon:/nonexistent:/usr/sbin/nologin +bareos:*:997:997::0:0:Bareos Daemon:/var/db/bareos:/usr/sbin/nologin ebnetd:*:999:999::0:0:EBNETD:/nonexistent:/usr/sbin/nologin nobody:*:65534:65534::0:0:Unprivileged user:/nonexistent:/usr/sbin/nologin From owner-svn-ports-all@freebsd.org Sun Aug 9 04:55:29 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8CF5299DD44; Sun, 9 Aug 2015 04:55:29 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7B7E8FFE; Sun, 9 Aug 2015 04:55:29 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t794tTGx059943; Sun, 9 Aug 2015 04:55:29 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t794tLVg059913; Sun, 9 Aug 2015 04:55:21 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201508090455.t794tLVg059913@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Sun, 9 Aug 2015 04:55:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393759 - in head/sysutils: . bareos-bat bareos-client bareos-client-static bareos-server bareos-server/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 04:55:29 -0000 Author: acm Date: Sun Aug 9 04:55:20 2015 New Revision: 393759 URL: https://svnweb.freebsd.org/changeset/ports/393759 Log: - New ports : sysutils/bareos-* Bareos (BackupArchivingRecoveryOpenSourced) is a reliable network open source software to backup, archive and restore files from all major operating systems. The fork was founded 2010 out of the bacula.org project. The fork has been actively developed and many new features have been added. WWW: http://www.bareos.org/ Added: head/sysutils/bareos-bat/ head/sysutils/bareos-bat/Makefile (contents, props changed) head/sysutils/bareos-bat/pkg-descr (contents, props changed) head/sysutils/bareos-bat/pkg-plist (contents, props changed) head/sysutils/bareos-client/ head/sysutils/bareos-client-static/ head/sysutils/bareos-client-static/Makefile (contents, props changed) head/sysutils/bareos-client/Makefile (contents, props changed) head/sysutils/bareos-server/ head/sysutils/bareos-server/Makefile (contents, props changed) head/sysutils/bareos-server/Makefile.common (contents, props changed) head/sysutils/bareos-server/distinfo (contents, props changed) head/sysutils/bareos-server/files/ head/sysutils/bareos-server/files/bareos-barcodes (contents, props changed) head/sysutils/bareos-server/files/bareos-dir.in (contents, props changed) head/sysutils/bareos-server/files/bareos-fd.in (contents, props changed) head/sysutils/bareos-server/files/bareos-sd.in (contents, props changed) head/sysutils/bareos-server/files/chio-bareos (contents, props changed) head/sysutils/bareos-server/files/patch-configure (contents, props changed) head/sysutils/bareos-server/files/patch-src-dird-Makefile.in (contents, props changed) head/sysutils/bareos-server/files/patch-src-filed-Makefile.in (contents, props changed) head/sysutils/bareos-server/files/patch-src-plugins-stored-Makefile.in (contents, props changed) head/sysutils/bareos-server/files/patch-src-qt-console-bat.pro.in (contents, props changed) head/sysutils/bareos-server/files/patch-src-stored-Makefile.in (contents, props changed) head/sysutils/bareos-server/files/pkg-deinstall.client.in (contents, props changed) head/sysutils/bareos-server/files/pkg-install.client.in (contents, props changed) head/sysutils/bareos-server/files/pkg-message.client.in (contents, props changed) head/sysutils/bareos-server/files/pkg-message.server.in (contents, props changed) head/sysutils/bareos-server/pkg-descr (contents, props changed) head/sysutils/bareos-server/pkg-plist (contents, props changed) head/sysutils/bareos-server/pkg-plist.client (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Aug 9 03:44:47 2015 (r393758) +++ head/sysutils/Makefile Sun Aug 9 04:55:20 2015 (r393759) @@ -67,6 +67,10 @@ SUBDIR += bacula5-client-static SUBDIR += bacula5-docs SUBDIR += bacula5-server + SUBDIR += bareos-bat + SUBDIR += bareos-client + SUBDIR += bareos-client-static + SUBDIR += bareos-server SUBDIR += baloo SUBDIR += baloo-widgets SUBDIR += bamf Added: head/sysutils/bareos-bat/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-bat/Makefile Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,33 @@ +# Created by: Alonso Cardenas Marquez +# $FreeBSD$ + +PORTNAME= bareos +PKGNAMESUFFIX= -bat +PORTREVISION= 0 + +COMMENT= Backup archiving recovery open sourced (GUI) + +LIB_DEPENDS+= libqwt.so:${PORTSDIR}/x11-toolkits/qwt5 \ + libbareos.so:${PORTSDIR}/sysutils/bareos-client + +CONFLICTS= bacula*-bat-* + +USES= pkgconfig +USE_QT4= qmake_build uic_build moc_build rcc_build +WITH_BAT= yes + +PLIST= ${.CURDIR}/pkg-plist +MAKE_ENV+= MAKEOBJDIRPREFIX=/ + +MASTERDIR= ${.CURDIR}/../../sysutils/bareos-server + +CONFIGURE_ARGS+= --enable-bat \ + --with-qwt=${LOCALBASE}/lib \ + --disable-build-dird \ + --disable-build-stored \ + --enable-client-only + +OPTIONS_DEFINE= OPENSSL +OPTIONS_DEFAULT=OPENSSL + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/bareos-bat/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-bat/pkg-descr Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,8 @@ +bat is the GUI inteface for Bareos. + +Bareos (BackupArchivingRecoveryOpenSourced) is a reliable network open source +software to backup, archive and restore files from all major operating systems. +The fork was founded 2010 out of the bacula.org project. The fork has been +actively developed and many new features have been added. + +WWW: http://www.bareos.org/ Added: head/sysutils/bareos-bat/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-bat/pkg-plist Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,5 @@ +@sample %%ETCDIR%%/bat.conf.sample +man/man1/bat.1.gz +sbin/bat +@dirrmtry %%ETCDIR%% + Added: head/sysutils/bareos-client-static/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-client-static/Makefile Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,26 @@ +# Created by: Alonso Cardenas +# $FreeBSD$ + +PORTNAME= bareos +PORTREVISION= 0 +PKGNAMESUFFIX= -client-static + +COMMENT= Backup archiving recovery open sourced (static client) + +PLIST= ${.CURDIR}/pkg-plist +MASTERDIR= ${.CURDIR}/../../sysutils/bareos-server + +PLIST_FILES= sbin/bareos-fd-static \ + sbin/bconsole-static + +OPTIONS_DEFINE= NLS +OPTIONS_DEFAULT=# + +CONFIGURE_ARGS+= --enable-client-only \ + --enable-static-fd \ + --enable-static-cons \ + --disable-libtool \ + --disable-build-dird \ + --disable-build-stored + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/bareos-client/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-client/Makefile Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,19 @@ +# Created by: Alonso Cardenas +# $FreeBSD$ + +PORTNAME= bareos +PORTREVISION= 0 +PKGNAMESUFFIX= -client + +COMMENT= Backup archiving recovery open sourced (client) + +WITH_CLIENT_ONLY=yes +USE_RC_SUBR= bareos-fd + +PLIST= ${PKGDIR}/pkg-plist.client +MASTERDIR= ${.CURDIR}/../../sysutils/bareos-server + +OPTIONS_DEFINE= NLS PYTHON +OPTIONS_DEFAULT=# + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/bareos-server/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/Makefile Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,203 @@ +# Created by: Alonso Cardenas +# $FreeBSD$ + +PORTNAME= bareos +DISTVERSION= 15.2 +PORTREVISION?= 0 +CATEGORIES?= sysutils +PKGNAMEPREFIX?= # +PKGNAMESUFFIX?= -server + +USE_GITHUB= yes +GH_ACCOUNT= bareos +GH_PROJECT= bareos +GH_TAGNAME= bb1529f88585da31a0053f06727c74f2a7cb0dc1 + +MAINTAINER= acm@FreeBSD.org +COMMENT?= Backup archiving recovery open sourced (server) + +USES+= libtool:keepla + +CONFLICTS?= bacula*-server-* + +LIB_DEPENDS+= liblzo2.so:${PORTSDIR}/archivers/lzo2 + +USERS= bareos +GROUPS= ${USERS} + +PLIST_SUB+= LIB_VERSION=${PORTVERSION}.0 + +GNU_CONFIGURE= yes +USE_LDCONFIG= yes + +CPPFLAGS+= -I/usr/include/readline -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +OPTIONS_DEFINE?= MTX PYTHON NLS OPENSSL +OPTIONS_DEFAULT?= NLS OPENSSL PGSQL +MTX_DESC= Install mtx for control of autochanger devices + +.if ${PKGNAMESUFFIX} == "-server" +OPTIONS_SINGLE_DATABASE= SQLITE3 MYSQL PGSQL +OPTIONS_SINGLE= DATABASE +DATABASE_DESC= Database support +.endif + +OPENSSL_USE= OPENSSL=yes +OPENSSL_CONFIGURE_ON= --with-openssl=${OPENSSLBASE} +OPENSSL_CONFIGURE_OFF= --with-openssl="no" + +.if ${PKGNAMESUFFIX} == "-client" || ${PKGNAMESUFFIX} == "-server" #Till end of the file + +PYTHON_USES= python +PYTHON_CONFIGURE_ON= --with-python=yes +PYTHON_CONFIGURE_OFF= --with-python=no + +.if !defined(WITH_CLIENT_ONLY) +LIB_DEPENDS+= libbareos.so:${PORTSDIR}/sysutils/bareos-client +USE_RC_SUBR?= bareos-dir bareos-sd +.endif + +.if defined(WITH_CLIENT_ONLY) +SUB_FILES+= pkg-install.client pkg-deinstall.client pkg-message.client +.else +SUB_FILES+= pkg-message.server +.endif + +CONFIGURE_ARGS+=--with-tcp-wrappers=/usr/lib \ + --enable-libtool \ + --enable-smartalloc \ + --sysconfdir=${PREFIX}/etc \ + --with-working-dir=${BAREOS_DIR} \ + --with-scriptdir=${PREFIX}/share/${PORTNAME} \ + --with-logdir=/var/log/bareos \ + --with-readline=yes \ + --disable-conio \ + --enable-batch-insert \ + --with-plugindir=${PREFIX}/lib/bareos/plugins \ + --with-scriptdir=${PREFIX}/lib/bareos/scripts \ + --with-dump-email=root@localhost \ + --with-job-email=root@localhost \ + --with-db-name=bareos \ + --with-sbin-perm=755 \ + --with-db-user=bareos \ + --with-baseport=9101 \ + --with-pid-dir=/var/run/bareos + +.if defined(WITH_CLIENT_ONLY) +CONFIGURE_ARGS+=--with-fd-user=root \ + --with-fd-group=wheel +.else +CONFIGURE_ARGS+=--with-dir-user=${BAREOS_USER} \ + --with-dir-group=${BAREOS_GROUP} \ + --with-sd-user=${BAREOS_USER} \ + --with-sd-group=operator +.endif + +# The user/group IDs below are registered, see +# http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/book.html#DADS-UID +# +BAREOS_USER?= bareos +BAREOS_GROUP?= ${BAREOS_USER} +BAREOS_UID?= 997 +BAREOS_GID?= ${BAREOS_UID} +BAREOS_DIR?= /var/db/bareos + +PLIST_SUB+= BAREOS_DIR=${BAREOS_DIR} + +SUB_LIST= BAREOS_USER=${BAREOS_USER} \ + BAREOS_GROUP=${BAREOS_GROUP} \ + BAREOS_UID=${BAREOS_UID} \ + BAREOS_GID=${BAREOS_GID} \ + BAREOS_DIR=${BAREOS_DIR} + +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls + +# Client only or full server version +.if defined(WITH_CLIENT_ONLY) +CONFFILES= fd +CONFIGURE_ARGS+= --enable-client-only + +PKGDEINSTALL= ${FILESDIR}/pkg-deinstall.client +PKGINSTALL= ${FILESDIR}/pkg-install.client +.else +# Server only Options +CONFFILES= sd dir +# Server default database + +MYSQL_CONFIGURE_ON= --with-mysql=yes +MYSQL_USE= MYSQL=yes +SQLITE3_CONFIGURE_ON= --with-sqlite3=yes +SQLITE3_LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 +PGSQL_CONFIGURE_ON= --with-postgresql=yes +PGSQL_USES= pgsql + +MTX_RUN_DEPENDS= ${LOCALBASE}/sbin/mtx:${PORTSDIR}/misc/mtx + +.include + +.if ${PORT_OPTIONS:MMYSQL} +DBTYPE= mysql +SUB_LIST+= REQ_MYSQL=mysql REQ_PGSQL="" +.elif ${PORT_OPTIONS:MSQLITE3} +DBTYPE= sqlite3 +.else +DBTYPE= postgresql +SUB_LIST+= REQ_MYSQL="" REQ_PGSQL=postgresql +.endif +PLIST_SUB+= DBTYPE=${DBTYPE} + +.endif + +.if defined(WITH_CLIENT_ONLY) +MP1+= bconsole.1 +MP8+= bareos-fd.8 +.else +MP8+= bareos.8 bareos-dir.8 bareos-sd.8 bcopy.8 bextract.8 bls.8 bscan.8 \ + btape.8 btraceback.8 bareos-dbcheck.8 +MP1+= bsmtp.1 bregex.1 bwild.1 bareos-tray-monitor.1 +.endif + +MAKE_ENV+= MAN8="${MP8}" MAN1="${MP1}" + +post-patch: +# This port does not install docs. See bacula-docs for that + ${REINPLACE_CMD} -e '/docdir/d' ${WRKSRC}/Makefile.in +# Default bconsole.conf is in ${ETCDIR} + @${REINPLACE_CMD} -e 's|./bconsole.conf|${ETCDIR}/bconsole.conf|g' ${WRKSRC}/src/console/console.c + @${REINPLACE_CMD} -e 's|^MAN8 =|MAN8 ?=|g' -e 's|^MAN1 =|MAN1 ?=|g' ${WRKSRC}/manpages/Makefile.in + @${REINPLACE_CMD} -e 's|_NONSHARED||g' ${WRKSRC}/src/filed/Makefile.in +.if defined(WITH_CLIENT_ONLY) +# In client port only install startup script out of script dir (see below post-install) +# Dont mkdir ${PREFIX}/share/bacula cause it's empty + @${REINPLACE_CMD} -e 's|^\(fd_subdirs = .*\)scripts\(.*\)|\1\2|g' ${WRKSRC}/Makefile.in + ${REINPLACE_CMD} -e 's|\(.*$${MKDIR} $${DESTDIR}$${scriptdir}\)|#\1|g' ${WRKSRC}/Makefile.in +.else +# In server port don't install filed + @${REINPLACE_CMD} -e '/^fd_subdirs = /s|src/filed||' -e 's|src/console||' \ + -e 's|src/lib||' -e 's|src/findlib||' -e 's|@FD_PLUGIN_DIR@||' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e 's|../lib/|$$(LOCALBASE)/lib/|g' -e 's|../findlib/|$$(LOCALBASE)/lib/|g' ${WRKSRC}/src/dird/Makefile.in \ + ${WRKSRC}/src/stored/Makefile.in ${WRKSRC}/src/tools/Makefile.in + @${REINPLACE_CMD} -e 's|fd_plugins.h|filed/fd_plugins.h|g' -e 's|dir_plugins.h|dird/dir_plugins.h|g' -e 's|stored.h|stored/stored.h|g' \ + ${WRKSRC}/src/tools/bpluginfo.c +.endif + +.if !target(post-install) +post-install: +.if defined(WITH_CLIENT_ONLY) + ${MV} ${STAGEDIR}${ETCDIR}/bconsole.conf ${STAGEDIR}${ETCDIR}/bconsole.conf.sample +.else + ${INSTALL_SCRIPT} ${FILESDIR}/chio-bareos ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_DATA} ${FILESDIR}/bareos-barcodes ${STAGEDIR}${ETCDIR}/bareos-barcodes.sample + ${CHMOD} o+x ${STAGEDIR}${PREFIX}/bin/bsmtp +.endif + for na in ${CONFFILES}; do \ + ${MV} ${STAGEDIR}${ETCDIR}/bareos-$$na.conf ${STAGEDIR}${ETCDIR}/bareos-$$na.conf.sample; \ + done + @${MKDIR} ${STAGEDIR}/var/run/bareos +.endif +.else +.include "${MASTERDIR}/Makefile.common" +.endif # -client and -server are defined +.include Added: head/sysutils/bareos-server/Makefile.common ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/Makefile.common Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,28 @@ +# Created by: Alonso Cardenas +# $FreeBSD$ + +post-patch: + @${REINPLACE_CMD} -e 's|_NONSHARED||g' ${WRKSRC}/src/filed/Makefile.in + +post-build: +.if ${PKGNAMEPREFIX} == "nagios-check_" + ${MAKE_CMD} -C ${WRKSRC}/examples/nagios/check_bareos +.endif + +do-install: +.if ${PKGNAMESUFFIX} == "-bat" +# Install config files and preserve existing ones + ${MKDIR} ${STAGEDIR}${ETCDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/src/qt-console/bat.conf ${STAGEDIR}${PREFIX}/etc/bareos/bat.conf.sample + ${INSTALL_MAN} ${WRKSRC}/manpages/bat.1 ${STAGEDIR}${PREFIX}/man/man1/ + ${INSTALL_PROGRAM} ${WRKSRC}/src/qt-console/bat ${STAGEDIR}${PREFIX}/sbin +.endif +.if ${PKGNAMEPREFIX} == "nagios-check_" + @${MKDIR} ${STAGEDIR}${PREFIX}/libexec/nagios + ${INSTALL_PROGRAM} ${WRKSRC}/examples/nagios/check_bareos/check_bareos \ + ${STAGEDIR}${PREFIX}/libexec/nagios +.endif +.if ${PKGNAMESUFFIX} == "-client-static" + ${INSTALL_PROGRAM} ${WRKSRC}/src/filed/static-bareos-fd ${STAGEDIR}${PREFIX}/sbin/bareos-fd-static + ${INSTALL_PROGRAM} ${WRKSRC}/src/console/static-bconsole ${STAGEDIR}${PREFIX}/sbin/bconsole-static +.endif Added: head/sysutils/bareos-server/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/distinfo Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,2 @@ +SHA256 (bareos-bareos-15.2-bb1529f88585da31a0053f06727c74f2a7cb0dc1_GH0.tar.gz) = 91341f96f1f1e883a46e74ea91431595943de84dc1482bf4bf463caa0f1d8409 +SIZE (bareos-bareos-15.2-bb1529f88585da31a0053f06727c74f2a7cb0dc1_GH0.tar.gz) = 3878822 Added: head/sysutils/bareos-server/files/bareos-barcodes ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/bareos-barcodes Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,51 @@ +# +# Bacula barcode simulation file +# used by ${PREFIX}/sbin/chio-bareos (FreeBSD) +# +# The volumenames are returned by the "changer list" command +# labeling in the console is done by "label barcodes" +# (then all volumes belog to the default pool). +# All Lines with an "#" at the bedinning are ignored +# +# !!!! If you export an tape and reinsert another one, +# !!!! don't forget to change the volume name in this file! +# +1:Volume1-100 +2:Volume1-101 +3:Volume1-102 +4:Volume1-103 +5:Volume1-104 +6:Volume1-105 +7:Volume1-106 +8:Volume1-107 +9:Volume1-108 +10:Volume1-109 +11:Volume1-110 +12:Volume1-111 +# +# Further volumes exported from the changer +# +# 36GB AIT2 tapes +#Volume1-100 +#Volume1-101 +#Volume1-102 +#Volume1-103 +#Volume1-104 +#Volume1-105 +#Volume1-106 +#Volume1-107 +#Volume1-108 +#Volume1-109 +#Volume1-110 +#Volume1-111 +#Volume1-112 +#Volume1-113 +#Volume1-114 +#Volume1-115 +# +# 50GB AIT2 tapes +#Volume2-200 +#Volume2-201 +#Volume2-202 +#Volume2-203 +#Volume2-204 Added: head/sysutils/bareos-server/files/bareos-dir.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/bareos-dir.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,31 @@ +#!/bin/sh +# +# $FreeBSD: head/sysutils/bareos-server/files/bareos-dir.in 323275 2013-07-19 09:44:58Z rm $ +# +# PROVIDE: bareos_dir +# REQUIRE: DAEMON %%REQ_MYSQL%% %%REQ_PGSQL%% +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# bareos_dir_enable (bool): Set to NO by default. +# Set it to YES to enable bareos_dir. +# bareos_dir_flags (params): Set params used to start bareos_dir. +# + +. /etc/rc.subr + +name="bareos_dir" +rcvar=${name}_enable +command=%%PREFIX%%/sbin/bareos-dir + +load_rc_config $name + +: ${bareos_dir_enable="NO"} +: ${bareos_dir_flags=" -u bareos -g bareos -v -c %%PREFIX%%/etc/bareos/bareos-dir.conf"} +: ${bareos_dir_pidfile="/var/run/bareos/bareos-dir.9101.pid"} + +pidfile="${bareos_dir_pidfile}" + +run_rc_command "$1" Added: head/sysutils/bareos-server/files/bareos-fd.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/bareos-fd.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,31 @@ +#!/bin/sh +# +# $FreeBSD: head/sysutils/bacula5-server/files/bacula-fd.in 323275 2013-07-19 09:44:58Z rm $ +# +# PROVIDE: bareos_fd +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# bareos_fd_enable (bool): Set to NO by default. +# Set it to YES to enable bareos_fd. +# bareos_fd_flags (params): Set params used to start bareos_fd. +# + +. /etc/rc.subr + +name="bareos_fd" +rcvar=${name}_enable +command=%%PREFIX%%/sbin/bareos-fd + +load_rc_config $name + +: ${bareos_fd_enable="NO"} +: ${bareos_fd_flags=" -u root -g wheel -v -c %%PREFIX%%/etc/bareos/bareos-fd.conf"} +: ${bareos_fd_pidfile="/var/run/bareos/bareos-fd.9102.pid"} + +pidfile="${bareos_fd_pidfile}" + +run_rc_command "$1" Added: head/sysutils/bareos-server/files/bareos-sd.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/bareos-sd.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,31 @@ +#!/bin/sh +# +# $FreeBSD: head/sysutils/bacula5-server/files/bacula-sd.in 323486 2013-07-22 17:51:39Z rm $ +# +# PROVIDE: bareos_sd +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# bareos_sd_enable (bool): Set to NO by default. +# Set it to YES to enable bareos_sd. +# bareos_sd_flags (params): Set params used to start bareos_sd. +# + +. /etc/rc.subr + +name="bareos_sd" +rcvar=${name}_enable +command=%%PREFIX%%/sbin/bareos-sd + +load_rc_config $name + +: ${bareos_sd_enable="NO"} +: ${bareos_sd_flags=" -u bareos -g bareos -v -c %%PREFIX%%/etc/bareos/bareos-sd.conf"} +: ${bareos_sd_pidfile="/var/run/bareos/bareos-sd.9103.pid"} + +pidfile="${bacula_sd_pidfile}" + +run_rc_command "$1" Added: head/sysutils/bareos-server/files/chio-bareos ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/chio-bareos Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,200 @@ +#!/bin/sh +# +# Bacula interface to FreeBSD chio autoloader command with +# multiple drive support +# (By Lars Köller, lars+bacula@koellers.net, 2004) +# +# If you set in your Device resource +# +# Changer Command = "path-to-this-script/chio-bacula" %c %o %S %a +# you will have the following input to this script: +# +# chio-bacula "changer-device" "command" "slot" "archive-device" "drive-index" +# $1 $2 $3 $4 $5 +# for example: +# +# chio-bacula /dev/sg0 load 1 /dev/nst0 0 (on a FreeBSD system) +# +# If you need to to an offline, refer to the drive as $4 +# e.g. mt -f $f offline +# +# Many changers need an offline after the unload. Also many +# changers need a sleep 60 after the mtx load. +# +# N.B. If you change the script, take care to return either +# the mtx exit code or a 0. If the script exits with a non-zero +# exit code, Bacula will assume the request failed. +# +me=$(basename $0) + +# Debug output, take care this file is writeable for user bacula! +#LOG=/var/db/bacula/chio-bacula.log +#exec 2>>$LOG +#echo "------------------------- $(date) Start $(basename $0) -------------------------" >> $LOG +#set -x + +# Debug +logger -p user.err "$me $@" + +# This simulates a barcode reader in the changer. +# The labes of the virtual barcode reader are located in the BARCODE_FILE +SIMULATE_BARCODE=true +BARCODE_FILE=/usr/local/etc/bacula/bacula-barcodes +MTX=/bin/chio +# Set default values (see case statement below for +# free mapping of drive index and tape device +# We have a double drive Qualstar where drive 1 is the default bacula drive +#TAPE=/dev/bacula-tape +TAPE=/dev/nrsa0 +DRIVE=0 +# Time to wait for (un)loading +SLEEP=20 + +usage() +{ + echo "" + echo "The $me script for bacula" + echo "--------------------------------------" + echo "" + echo "usage: $me [slot] [devicename of tapedrive] [drive index]" + echo "" + echo "Valid commands:" + echo "" + echo "unload Unloads a tape into the slot" + echo " from where it was loaded." + echo "load Loads a tape from the slot " + echo " (slot-base is calculated to 1 as first slot)" + echo "list Lists full storage slots" + echo "loaded Gives slot from where the tape was loaded." + echo " 0 means the tape drive is empty." + echo "slots Gives Number of aviable slots." + echo "" + echo "Example:" + echo " $me /dev/changer load 1 loads a tape from slot 1" + echo "" + exit 2 +} + +# The changer device +if [ -z "$1" ] ; then + usage; +else + CHANGER=$1 +fi +# The command +if [ -z "$2" ] ; then + usage; +else + COMMAND=$2 +fi +# The slot number +if [ ! -z "$3" ]; then + SLOT=$3 + # btape fill says "... slot 1 drive 0" :-( + if [ "$SLOT" = "slot" ]; then + shift + SLOT=$3 + fi +fi +# Set tape device +if [ ! -z "$4" ]; then + TAPE=$4 +fi + +# Here you can map bacula drive number to any tape device +# DRIVE is the chio drive number used below by chio! +case $5 in + 0) + # First Drive in Changer is Bacula drive + DRIVE=0 + #TAPE=/dev/bacula-tape + TAPE=/dev/nrsa0 + ;; + 1) + DRIVE=1 + #TAPE=/dev/bacula-tape2 + TAPE=/dev/nrsa1 + ;; +esac + +# +# Main +# +case ${COMMAND} in + unload) + # enable the following line if you need to eject the cartridge + mt -f ${TAPE} off + sleep 2 + # if we have a slot, try it + if [ ! -z "$SLOT" ]; then + ${MTX} -f ${CHANGER} move drive ${DRIVE} slot $((${SLOT}-1)) + exit $? + fi + # Try other way (works if source element information is valid for drive) + ${MTX} -f ${CHANGER} return drive ${DRIVE} + # If the changer is power cycled with a tape loaded in a drive + # we can compute the slot in case of a complete filled magazine, with + # one slot free. + if [ "$?" != "0" ]; then + free_slot=`${MTX} -f ${CHANGER} stat | grep "^slot " | grep -v "FULL" | awk '{print $2}'` + free_slot=${free_slot%:} + ${MTX} -f ${CHANGER} move drive ${DRIVE} slot $free_slot + fi + ;; + + load) + ${MTX} -f ${CHANGER} move slot $((${SLOT}-1)) drive ${DRIVE} + rtn=$? + # Increase the sleep time if you have a slow device + sleep $SLEEP + exit $rtn + ;; + + list) + if [ "${SIMULATE_BARCODE}" = "true" ]; then + if [ -f "$BARCODE_FILE" ]; then + cat $BARCODE_FILE | grep -v -e "^#" -e "^$" + exit 0 + else + echo "Barcode file $BARCODE_FILE missing ... exiting!" + exit 1 + fi + else + ${MTX} -f ${CHANGER} status | grep "^slot .*: .*FULL>" | awk '{print $2}' | awk -F: '{print $1+1" "}' | tr -d "[\r\n]" + fi + ;; + + loaded) + # echo "Request loaded" + ${MTX} -f ${CHANGER} status -S > /tmp/mtx.$$ + rtn=$? + # Try to get chio slot source from drive entry + SLOT=$(cat /tmp/mtx.$$ | grep "^drive ${DRIVE}: .*slot" | awk '{print $6+1}' | tr -d ">") + if [ -z "$SLOT" ]; then + # This handles the case a source slot is not available (power on + # of the changer with a drive loaded) and all other slots are + # occupied with a tape! + SLOT=$(cat /tmp/mtx.$$ | grep "^slot .*: " | awk '{print $2+1}') + if [ -z "$SLOT" ]; then + echo 0 + else + echo $SLOT + fi + else + echo $SLOT + fi + # All tapes are in the slots + #cat /tmp/mtx.$$ | grep "^drive ${DRIVE}: .* source: <>" | awk "{print 0}" + rm -f /tmp/mtx.$$ + exit $rtn + ;; + + slots) + # echo "Request slots" + ${MTX} -f ${CHANGER} status | grep "^slot " | tail -1 | awk '{print $2+1}' | tr -d ":" + ;; + + *) + usage + ;; +esac Added: head/sysutils/bareos-server/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/patch-configure Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,20 @@ +--- configure 2015-08-08 15:47:12.347184000 -0500 ++++ configure 2015-08-08 15:48:11.164437000 -0500 +@@ -18626,7 +18626,7 @@ + found_so= + found_a= + if test $use_additional = yes; then +- if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then ++ if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext" && test "${enable_static_fd+set}" != set; then + found_dir="$additional_libdir" + found_so="$additional_libdir/lib$name.$shlibext" + if test -f "$additional_libdir/lib$name.la"; then +@@ -21466,7 +21466,7 @@ + found_so= + found_a= + if test $use_additional = yes; then +- if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then ++ if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext" && test "${enable_static_fd+set}" != set; then + found_dir="$additional_libdir" + found_so="$additional_libdir/lib$name.$shlibext" + if test -f "$additional_libdir/lib$name.la"; then Added: head/sysutils/bareos-server/files/patch-src-dird-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/patch-src-dird-Makefile.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,37 @@ +--- src/dird/Makefile.in 2015-06-25 05:37:04.000000000 -0500 ++++ src/dird/Makefile.in 2015-07-25 16:32:30.152534000 -0500 +@@ -77,7 +77,7 @@ + $(LIBTOOL_LINK) $(CXX) $(WLDFLAGS) $(LDFLAGS) -L../lib -L../cats -L../findlib -o $@ $(SVROBJS) \ + $(NDMP_LIBS) -lbareosfind -lbareossql -lbareoscats -lbareoscfg -lbareos -lm $(DLIB) \ + $(DB_LIBS) $(LIBS) $(WRAPLIBS) $(GETTEXT_LIBS) $(CAP_LIBS) \ +- $(OPENSSL_LIBS_NONSHARED) $(GNUTLS_LIBS_NONSHARED) ++ $(OPENSSL_LIBS) $(GNUTLS_LIBS_NONSHARED) + + bareos-dbcheck: Makefile $(DBCHKOBJS) \ + ../lib/libbareos$(DEFAULT_ARCHIVE_TYPE) \ +@@ -88,7 +88,7 @@ + @echo "Linking $@ ..." + $(LIBTOOL_LINK) $(CXX) $(LDFLAGS) -L../lib -L../findlib -L../cats -o $@ $(DBCHKOBJS) \ + -lbareoscats -lbareossql -lbareoscfg -lbareosfind -lbareos -lm $(DB_LIBS) $(LIBS) $(GETTEXT_LIBS) \ +- $(OPENSSL_LIBS_NONSHARED) $(GNUTLS_LIBS_NONSHARED) ++ $(OPENSSL_LIBS) $(GNUTLS_LIBS_NONSHARED) + + testfind: Makefile $(TSTFNDOBJS) \ + ../lib/libbareos$(DEFAULT_ARCHIVE_TYPE) \ +@@ -99,7 +99,7 @@ + @echo "Linking $@ ..." + $(LIBTOOL_LINK) $(CXX) $(LDFLAGS) -L../lib -L../findlib -L../cats -o $@ $(TSTFNDOBJS) \ + -lbareoscats -lbareossql -lbareoscfg -lbareosfind -lbareos -lm $(DB_LIBS) $(LIBS) $(GETTEXT_LIBS) \ +- $(OPENSSL_LIBS_NONSHARED) $(GNUTLS_LIBS_NONSHARED) ++ $(OPENSSL_LIBS) $(GNUTLS_LIBS_NONSHARED) + + static-bareos-dir: Makefile $(SVROBJS) \ + ../lib/libbareos$(DEFAULT_ARCHIVE_TYPE) \ +@@ -140,7 +140,6 @@ + $(LIBTOOL_INSTALL) $(INSTALL_PROGRAM) bareos-dir $(DESTDIR)$(sbindir)/bareos-dir + $(LIBTOOL_INSTALL) $(INSTALL_PROGRAM) bareos-dbcheck $(DESTDIR)$(sbindir)/bareos-dbcheck + @srcconf=bareos-dir.conf; \ +- $(MKDIR) ${DESTDIR}${confdir}/bareos-dir.d/; \ + if test -f ${DESTDIR}${confdir}/$$srcconf; then \ + destconf=$$srcconf.new; \ + echo " ==> Found existing $$srcconf, installing new conf file as $$destconf"; \ Added: head/sysutils/bareos-server/files/patch-src-filed-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/patch-src-filed-Makefile.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,11 @@ +--- src/filed/Makefile.in 2015-08-08 14:17:28.058350000 -0500 ++++ src/filed/Makefile.in 2015-08-08 14:17:49.001877000 -0500 +@@ -84,7 +84,7 @@ + ../lib/libbareos$(DEFAULT_ARCHIVE_TYPE) + @echo "Linking $@ ..." + $(LIBTOOL_LINK) $(CXX) $(WLDFLAGS) $(LDFLAGS) -static -L../lib -L../findlib -o $@ $(SVROBJS) \ +- $(FDLIBS) -lbareosfind -lbareoscfg -lbareos -lm $(LIBS) \ ++ -lbareosfind -lbareoscfg -lbareos -lm $(FDLIBS) $(LIBS) \ + $(DLIB) $(WRAPLIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS) $(GNUTLS_LIBS) + strip $@ + Added: head/sysutils/bareos-server/files/patch-src-plugins-stored-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/patch-src-plugins-stored-Makefile.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,11 @@ +--- src/plugins/stored/Makefile.in 2015-07-23 18:04:28.275396000 -0500 ++++ src/plugins/stored/Makefile.in 2015-07-23 18:05:09.508399000 -0500 +@@ -39,7 +39,7 @@ + + autoxflate-sd.la: Makefile \ + autoxflate-sd$(DEFAULT_OBJECT_TYPE) \ +- ../../lib/libbareos$(DEFAULT_ARCHIVE_TYPE) ++ $(LOCALBASE)/lib/libbareos$(DEFAULT_ARCHIVE_TYPE) + $(LIBTOOL_LINK) $(CXX) $(LDFLAGS) -shared autoxflate-sd.lo -o $@ -rpath $(plugindir) -module -export-dynamic -avoid-version -L../../lib -lbareos + + example-plugin-sd.la: Makefile example-plugin-sd$(DEFAULT_OBJECT_TYPE) Added: head/sysutils/bareos-server/files/patch-src-qt-console-bat.pro.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/patch-src-qt-console-bat.pro.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,11 @@ +--- src/qt-console/bat.pro.in 2015-07-25 17:11:07.807100000 -0500 ++++ src/qt-console/bat.pro.in 2015-07-25 17:11:57.110388000 -0500 +@@ -32,7 +32,7 @@ + DEPENDPATH += . + INCLUDEPATH += .. ../include . + QMAKE_LIBDIR += ../lib +-LIBS += -lbareoscfg -lbareos ++LIBS += -lbareoscfg -lbareos -lintl + LIBTOOL_LINK = @QMAKE_LIBTOOL@ --silent --tag=CXX --mode=link + LIBTOOL_INSTALL = @QMAKE_LIBTOOL@ --silent --mode=install + QMAKE_LINK = $${LIBTOOL_LINK} $(CXX) Added: head/sysutils/bareos-server/files/patch-src-stored-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/patch-src-stored-Makefile.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,10 @@ +--- src/stored/Makefile.in 2015-07-25 16:28:12.065608000 -0500 ++++ src/stored/Makefile.in 2015-07-25 16:28:34.672920000 -0500 +@@ -243,7 +243,6 @@ + $(LIBTOOL_INSTALL) $(INSTALL_PROGRAM) bscan $(DESTDIR)$(sbindir)/bscan + $(LIBTOOL_INSTALL) $(INSTALL_PROGRAM) btape $(DESTDIR)$(sbindir)/btape + @srcconf=bareos-sd.conf; \ +- $(MKDIR) ${DESTDIR}${confdir}/bareos-sd.d/; \ + if test -f ${DESTDIR}${confdir}/$$srcconf; then \ + destconf=$$srcconf.new; \ + echo " ==> Found existing $$srcconf, installing new conf file as $$destconf"; \ Added: head/sysutils/bareos-server/files/pkg-deinstall.client.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/pkg-deinstall.client.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,30 @@ +#!/bin/sh + +PATH=/bin:/usr/bin:/usr/sbin + +# Note how to delete UID/GID +USER=%%BAREOS_USER%% +GROUP=%%BAREOS_GROUP%% +UID=%%BAREOS_UID%% +GID=%%BAREOS_UID%% +BACULA_DIR=%%BAREOS_DIR%% + +TMPFILE=/tmp/services-$RANDOM-$$ + +case "$2" in +"DEINSTALL") + # Delete entries in /etc/services + sed -e '/# Bareos port start/,/# Bareos port end/{' \ + -e 'd' \ + -e '}' /etc/services > $TMPFILE + mv -f $TMPFILE /etc/services + + if [ -d ${BAREOS_DIR} ]; then + echo "Check if ${BAREOS_DIR} is empty and delete it to permanently remove the bareos port." + fi + + if pw groupshow "${USER}" 2>/dev/null 1>&2; then + echo "To delete Bareos group permanently, use 'pw groupdel ${GROUP}'" + fi + ;; +esac Added: head/sysutils/bareos-server/files/pkg-install.client.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/pkg-install.client.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,13 @@ +#!/bin/sh + +PATH=/bin:/usr/bin:/usr/sbin + +# Always add lines in /etc/services +grep -q "bareos-dir" /etc/services +if [ "$?" != "0" ]; then + echo "# Bareos port start +bareos-dir 9101/tcp #Bareos director daemon +bareos-fd 9102/tcp #Bareos file daemon +bareos-sd 9103/tcp #Bareos storage daemon +# Bareos port end" >> /etc/services +fi Added: head/sysutils/bareos-server/files/pkg-message.client.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/pkg-message.client.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,8 @@ +################################################################################ + +bareos client was installed + +1) Sample files are installed in %%PREFIX%%/etc/bareos: +bconsole.conf.sample, bareos-barcodes.sample, bareos-fd.conf.sample + +################################################################################ Added: head/sysutils/bareos-server/files/pkg-message.server.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/pkg-message.server.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,60 @@ +############################################################################### + +bareos server was installed + +1) Important information about new version of bareos can be found in the + ReleaseNotes. + + https://github.com/bareos/bareos/blob/master/README.md + +NOTE: + +An auto-changer manipulation script based on FreeBSDs +chio command is included and installed at + + %%PREFIX%%/sbin/chio-bareos + +Please have a look at it if you want to use an +autochanger. You have to configure the usage in + + %%PREFIX%%/etc/bareos/bareos-dir.conf + +Take care of correct permissions for changer and +tape device (e.g. /dev/ch0 and /dev/n[r]sa0) i.e. +they must be accessible by user bareos. + +Due to lack of some features in the FreeBSD tape driver +implementation you MUST add some OS dependent options to +the bareos-sd.conf file: + + Hardware End of Medium = no; + Backward Space Record = no; + Backward Space File = no; + +With 2 filemarks at EOT (see man mt): + Fast Forward Space File = no; + BSF at EOM = yes; + TWO EOF = yes; + +With 1 filemarks at EOT (see man mt): + Fast Forward Space File = yes; + BSF at EOM = no; + TWO EOF = no; + +NOTE: YOU CAN SWITCH EOT model ONLY when starting + from scratch with EMPTY tapes. + +It is also important that all the scripts accessed +by RunBeforeJob and RunAfterJob will be executed by +the user bareos. Check your permissions. + +For USB support read the bareos manual. It could be necessary +to configure/compile a new kernel. + +Look at %%PREFIX%%/lib/bareos/update_bareos_tables for +database update procedure. + +If you are using sqlite you need to run the make_sqlite_tables script as +the bareos user. Do this using 'sudo su -m bareos'. + +################################################################################ Added: head/sysutils/bareos-server/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/pkg-descr Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,6 @@ +Bareos (BackupArchivingRecoveryOpenSourced) is a reliable network open source +software to backup, archive and restore files from all major operating systems. +The fork was founded 2010 out of the bacula.org project. The fork has been +actively developed and many new features have been added. + +WWW: http://www.bareos.org/ Added: head/sysutils/bareos-server/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/pkg-plist Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,97 @@ +@sample(,bareos,640) %%ETCDIR%%/bareos-barcodes.sample +@group bareos +@sample(,bareos,) %%ETCDIR%%/bareos-dir.conf.sample +@group wheel +@sample(,bareos,) %%ETCDIR%%/bareos-sd.conf.sample +bin/bregex +bin/bsmtp +bin/bwild +etc/bareos/mtx-changer.conf +lib/bareos/plugins/BareosDirPluginBaseclass.py +lib/bareos/plugins/BareosDirWrapper.py +lib/bareos/plugins/autoxflate-sd.so +lib/bareos/plugins/bareos-dir-class-plugin.py +lib/bareos/plugins/bareos-dir.py.template +lib/bareos/plugins/bareos-sd.py.template +lib/bareos/plugins/bareos_dir_consts.py +lib/bareos/plugins/bareos_sd_consts.py +lib/bareos/scripts/bareos +lib/bareos/scripts/bareos-config +lib/bareos/scripts/bareos-config-lib.sh +lib/bareos/scripts/bareos-ctl-dir +lib/bareos/scripts/bareos-ctl-fd +lib/bareos/scripts/bareos-ctl-funcs +lib/bareos/scripts/bareos-ctl-sd +lib/bareos/scripts/bareos-explorer +lib/bareos/scripts/bareos_config +lib/bareos/scripts/bconsole *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Sun Aug 9 04:59:28 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5789499DD70; Sun, 9 Aug 2015 04:59:28 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3D088140; Sun, 9 Aug 2015 04:59:28 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t794xSkV060312; Sun, 9 Aug 2015 04:59:28 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t794xQg7060306; Sun, 9 Aug 2015 04:59:26 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201508090459.t794xQg7060306@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Sun, 9 Aug 2015 04:59:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393760 - in head/www: . bareos-webui bareos-webui/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 04:59:28 -0000 Author: acm Date: Sun Aug 9 04:59:25 2015 New Revision: 393760 URL: https://svnweb.freebsd.org/changeset/ports/393760 Log: - New port: www/bareos-webui The bareos-webui is a free software tool written in PHP, intended to monitor and manage Bareos over the web. The webui is based on Zend Framework 2, an open source framework for developing web applications and services using PHP 5.3+ and makes extensive use of the Twitter Bootstrap front-end framework. The bareos-webui is licensed under AGPL Version 3. WWW: http://www.bareos.org/ Added: head/www/bareos-webui/ head/www/bareos-webui/Makefile (contents, props changed) head/www/bareos-webui/distinfo (contents, props changed) head/www/bareos-webui/files/ head/www/bareos-webui/files/pkg-message.in (contents, props changed) head/www/bareos-webui/pkg-descr (contents, props changed) head/www/bareos-webui/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Aug 9 04:55:20 2015 (r393759) +++ head/www/Makefile Sun Aug 9 04:59:25 2015 (r393760) @@ -44,6 +44,7 @@ SUBDIR += b2evolution SUBDIR += bacula-web SUBDIR += baikal + SUBDIR += bareos-webui SUBDIR += bblog SUBDIR += bigbluebutton SUBDIR += bins Added: head/www/bareos-webui/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/bareos-webui/Makefile Sun Aug 9 04:59:25 2015 (r393760) @@ -0,0 +1,71 @@ +# Created by: Alonso Cardenas +# $FreeBSD$ + +PORTNAME= bareos-webui +DISTVERSION= 14.2.1 +PORTREVISION= 0 +CATEGORIES= www sysutils + +USE_GITHUB= yes +GH_ACCOUNT= bareos +GH_PROJECT= bareos-webui +GH_TAGNAME= c826a4cbd4ff7340fb9b020ca824c9c48bd52948 + +MAINTAINER= acm@FreeBSD.org +COMMENT= A PHP-Frontend to manage Bareos over the web + +LICENSE= AGPLv3 # or later +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= tar:tgz +USE_PHP= openssl +NO_BUILD= yes +NO_ARCH= yes +NO_WRKSUBDIR= yes + +BAREOSWEB_HOME?=${WWWDIR} +BAREOSWEBUIDIR= ${BAREOSWEB_HOME:S|${PREFIX}/||} +SUB_FILES= pkg-message +PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} BAREOSWEBUIDIR=${BAREOSWEBUIDIR} +SUB_LIST= BAREOSWEBUIDIR=${BAREOSWEBUIDIR} + +OPTIONS_DEFINE= MYSQL PGSQL ZENDFRAMEWORK +OPTIONS_DEFAULT= PGSQL +ZENDFRAMEWORK_DESC= Install zend framework + +.include + +.if ${PORT_OPTIONS:MMYSQL} +USE_PHP+= pdo_mysql +.endif + +.if ${PORT_OPTIONS:MPGSQL} +USE_PHP+= pdo_pgsql +.endif + +.if ${PORT_OPTIONS:MZENDFRAMEWORK} +RUN_DEPENDS= ${LOCALBASE}/share/ZendFramework/bin/classmap_generator.php:${PORTSDIR}/www/zend-framework +.endif + +post-extract: + ${RM} ${WRKSRC}/config/autoload/.gitignore + ${RM} ${WRKSRC}/data/cache/.gitignore + ${RM} ${WRKSRC}/vendor/.gitignore + +post-patch: + @${REINPLACE_CMD} -e 's|/etc/|${LOCALBASE}/etc/|g' ${WRKSRC}/config/autoload/global.php + +do-install: + @${ECHO} "Installing in ${BAREOSWEB_HOME}" + ${MKDIR} ${STAGEDIR}${ETCDIR} + ${MKDIR} ${STAGEDIR}${BAREOSWEB_HOME} + cd ${WRKSRC} && ${COPYTREE_SHARE} "config data module public vendor" \ + ${STAGEDIR}${BAREOSWEB_HOME} + ${INSTALL_DATA} ${WRKSRC}/*.php ${STAGEDIR}${BAREOSWEB_HOME} + ${INSTALL_DATA} ${WRKSRC}/composer* ${STAGEDIR}${BAREOSWEB_HOME} + ${INSTALL_DATA} ${WRKSRC}/phpunit.xml ${STAGEDIR}${BAREOSWEB_HOME} + ${INSTALL_DATA} ${WRKSRC}/install/directors.ini ${STAGEDIR}${ETCDIR} + ${INSTALL_DATA} ${WRKSRC}/install/bareos/bareos-webui.conf ${STAGEDIR}${ETCDIR} + ${INSTALL_DATA} ${WRKSRC}/install/apache/bareos-webui.conf ${STAGEDIR}${ETCDIR}/apache-bareos-webui.conf + +.include Added: head/www/bareos-webui/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/bareos-webui/distinfo Sun Aug 9 04:59:25 2015 (r393760) @@ -0,0 +1,2 @@ +SHA256 (bareos-bareos-webui-14.2.1-c826a4cbd4ff7340fb9b020ca824c9c48bd52948_GH0.tgz) = 59be9f2fd1f5b74549bd0fc50cf6b0153ef6bd6529ff34a9b1a1bce78c536aad +SIZE (bareos-bareos-webui-14.2.1-c826a4cbd4ff7340fb9b020ca824c9c48bd52948_GH0.tgz) = 1033251 Added: head/www/bareos-webui/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/bareos-webui/files/pkg-message.in Sun Aug 9 04:59:25 2015 (r393760) @@ -0,0 +1,14 @@ +############################################################################### + +bacula webui was installed + +Please note that everything has been installed in %%BAREOSWEBUIDIR%%. You can +look bacula-webui installation/configuration instructions at: + +https://github.com/bareos/bareos-webui/blob/master/doc/INSTALL.md + +1) Configuration files are stored at %%ETCDIR%% +2) Bacula-webgui needs www/zend-framework port with PGSQL or MYSQL support. + + +############################################################################### Added: head/www/bareos-webui/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/bareos-webui/pkg-descr Sun Aug 9 04:59:25 2015 (r393760) @@ -0,0 +1,10 @@ +The bareos-webui is a free software tool written in PHP, intended to monitor +and manage Bareos over the web. + +The webui is based on Zend Framework 2, an open source framework for developing +web applications and services using PHP 5.3+ and makes extensive use of the +Twitter Bootstrap front-end framework. + +The bareos-webui is licensed under AGPL Version 3. + +WWW: http://www.bareos.org/ Added: head/www/bareos-webui/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/bareos-webui/pkg-plist Sun Aug 9 04:59:25 2015 (r393760) @@ -0,0 +1,259 @@ +@owner %%WWWOWN%% +@group %%WWWGRP%% +%%ETCDIR%%/apache-bareos-webui.conf +%%ETCDIR%%/bareos-webui.conf +%%ETCDIR%%/directors.ini +%%BAREOSWEBUIDIR%%/composer.json +%%BAREOSWEBUIDIR%%/composer.phar +%%BAREOSWEBUIDIR%%/config/application.config.php +%%BAREOSWEBUIDIR%%/config/autoload/README.md +%%BAREOSWEBUIDIR%%/config/autoload/global.php +%%BAREOSWEBUIDIR%%/init_autoloader.php +%%BAREOSWEBUIDIR%%/module/Admin/Module.php +%%BAREOSWEBUIDIR%%/module/Admin/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Admin/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Admin/src/Admin/Controller/AdminController.php +%%BAREOSWEBUIDIR%%/module/Admin/src/Admin/Model/Admin.php +%%BAREOSWEBUIDIR%%/module/Admin/src/Admin/Model/AdminTable.php +%%BAREOSWEBUIDIR%%/module/Admin/view/admin/admin/index.phtml +%%BAREOSWEBUIDIR%%/module/Admin/view/admin/admin/roles.phtml +%%BAREOSWEBUIDIR%%/module/Admin/view/admin/admin/users.phtml +%%BAREOSWEBUIDIR%%/module/Application/Module.php +%%BAREOSWEBUIDIR%%/module/Application/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Application/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Application/language/ar_JO.mo +%%BAREOSWEBUIDIR%%/module/Application/language/ar_JO.po +%%BAREOSWEBUIDIR%%/module/Application/language/ar_SY.mo +%%BAREOSWEBUIDIR%%/module/Application/language/ar_SY.po +%%BAREOSWEBUIDIR%%/module/Application/language/cs_CZ.mo +%%BAREOSWEBUIDIR%%/module/Application/language/cs_CZ.po +%%BAREOSWEBUIDIR%%/module/Application/language/de_DE.mo +%%BAREOSWEBUIDIR%%/module/Application/language/de_DE.po +%%BAREOSWEBUIDIR%%/module/Application/language/en_US.mo +%%BAREOSWEBUIDIR%%/module/Application/language/en_US.po +%%BAREOSWEBUIDIR%%/module/Application/language/es_ES.mo +%%BAREOSWEBUIDIR%%/module/Application/language/es_ES.po +%%BAREOSWEBUIDIR%%/module/Application/language/fr_CA.mo +%%BAREOSWEBUIDIR%%/module/Application/language/fr_CA.po +%%BAREOSWEBUIDIR%%/module/Application/language/fr_FR.mo +%%BAREOSWEBUIDIR%%/module/Application/language/fr_FR.po +%%BAREOSWEBUIDIR%%/module/Application/language/it_IT.mo +%%BAREOSWEBUIDIR%%/module/Application/language/it_IT.po +%%BAREOSWEBUIDIR%%/module/Application/language/ja_JP.mo +%%BAREOSWEBUIDIR%%/module/Application/language/ja_JP.po +%%BAREOSWEBUIDIR%%/module/Application/language/nb_NO.mo +%%BAREOSWEBUIDIR%%/module/Application/language/nb_NO.po +%%BAREOSWEBUIDIR%%/module/Application/language/nl_NL.mo +%%BAREOSWEBUIDIR%%/module/Application/language/nl_NL.po +%%BAREOSWEBUIDIR%%/module/Application/language/pl_PL.mo +%%BAREOSWEBUIDIR%%/module/Application/language/pl_PL.po +%%BAREOSWEBUIDIR%%/module/Application/language/pt_BR.mo +%%BAREOSWEBUIDIR%%/module/Application/language/pt_BR.po +%%BAREOSWEBUIDIR%%/module/Application/language/ru_RU.mo +%%BAREOSWEBUIDIR%%/module/Application/language/ru_RU.po +%%BAREOSWEBUIDIR%%/module/Application/language/sl_SI.mo +%%BAREOSWEBUIDIR%%/module/Application/language/sl_SI.po +%%BAREOSWEBUIDIR%%/module/Application/language/tr_TR.mo +%%BAREOSWEBUIDIR%%/module/Application/language/tr_TR.po +%%BAREOSWEBUIDIR%%/module/Application/language/zh_CN.mo +%%BAREOSWEBUIDIR%%/module/Application/language/zh_CN.po +%%BAREOSWEBUIDIR%%/module/Application/language/zh_TW.mo +%%BAREOSWEBUIDIR%%/module/Application/language/zh_TW.po +%%BAREOSWEBUIDIR%%/module/Application/src/Application/Controller/IndexController.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/Bytes.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/Date.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/Expiration.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/HumanReadableTimeperiod.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/JobDuration.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/JobLevel.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/JobStatus.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/JobType.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/Retention.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/StatusGlyphicons.php +%%BAREOSWEBUIDIR%%/module/Application/view/application/index/index.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/error/404.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/error/index.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/layout/error.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/layout/install.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/layout/layout.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/layout/login.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/partial/breadcrumb.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/partial/paginator.phtml +%%BAREOSWEBUIDIR%%/module/Auth/Module.php +%%BAREOSWEBUIDIR%%/module/Auth/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Auth/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Auth/src/Auth/Controller/AuthController.php +%%BAREOSWEBUIDIR%%/module/Auth/src/Auth/Form/LoginForm.php +%%BAREOSWEBUIDIR%%/module/Auth/src/Auth/Model/Auth.php +%%BAREOSWEBUIDIR%%/module/Auth/view/auth/auth/index.phtml +%%BAREOSWEBUIDIR%%/module/Auth/view/auth/auth/login.phtml +%%BAREOSWEBUIDIR%%/module/Auth/view/auth/auth/logout.phtml +%%BAREOSWEBUIDIR%%/module/Client/Module.php +%%BAREOSWEBUIDIR%%/module/Client/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Client/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Client/src/Client/Controller/ClientController.php +%%BAREOSWEBUIDIR%%/module/Client/src/Client/Model/Client.php +%%BAREOSWEBUIDIR%%/module/Client/src/Client/Model/ClientTable.php +%%BAREOSWEBUIDIR%%/module/Client/view/client/client/details.phtml +%%BAREOSWEBUIDIR%%/module/Client/view/client/client/index.phtml +%%BAREOSWEBUIDIR%%/module/Dashboard/Module.php +%%BAREOSWEBUIDIR%%/module/Dashboard/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Dashboard/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Dashboard/src/Dashboard/Controller/DashboardController.php +%%BAREOSWEBUIDIR%%/module/Dashboard/src/Dashboard/Model/Dashboard.php +%%BAREOSWEBUIDIR%%/module/Dashboard/src/Dashboard/Model/DashboardTable.php +%%BAREOSWEBUIDIR%%/module/Dashboard/view/dashboard/dashboard/index.phtml +%%BAREOSWEBUIDIR%%/module/Director/Module.php +%%BAREOSWEBUIDIR%%/module/Director/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Director/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Director/src/Director/Controller/DirectorController.php +%%BAREOSWEBUIDIR%%/module/Director/src/Director/Model/Director.php +%%BAREOSWEBUIDIR%%/module/Director/src/Director/Model/DirectorTable.php +%%BAREOSWEBUIDIR%%/module/Director/view/director/director/index.phtml +%%BAREOSWEBUIDIR%%/module/Director/view/director/director/messages.phtml +%%BAREOSWEBUIDIR%%/module/Director/view/director/director/schedule.phtml +%%BAREOSWEBUIDIR%%/module/Director/view/director/director/schedulerstatus.phtml +%%BAREOSWEBUIDIR%%/module/Director/view/director/director/version.phtml +%%BAREOSWEBUIDIR%%/module/File/Module.php +%%BAREOSWEBUIDIR%%/module/File/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/File/config/module.config.php +%%BAREOSWEBUIDIR%%/module/File/src/File/Controller/FileController.php +%%BAREOSWEBUIDIR%%/module/File/src/File/Model/File.php +%%BAREOSWEBUIDIR%%/module/File/src/File/Model/FileTable.php +%%BAREOSWEBUIDIR%%/module/File/view/file/file/index.phtml +%%BAREOSWEBUIDIR%%/module/File/view/file/file/jobid.phtml +%%BAREOSWEBUIDIR%%/module/File/view/file/file/revisions.phtml +%%BAREOSWEBUIDIR%%/module/Fileset/Module.php +%%BAREOSWEBUIDIR%%/module/Fileset/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Fileset/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Fileset/src/Fileset/Controller/FilesetController.php +%%BAREOSWEBUIDIR%%/module/Fileset/src/Fileset/Model/Fileset.php +%%BAREOSWEBUIDIR%%/module/Fileset/src/Fileset/Model/FilesetTable.php +%%BAREOSWEBUIDIR%%/module/Fileset/view/fileset/fileset/details.phtml +%%BAREOSWEBUIDIR%%/module/Fileset/view/fileset/fileset/index.phtml +%%BAREOSWEBUIDIR%%/module/Install/Module.php +%%BAREOSWEBUIDIR%%/module/Install/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Install/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Install/src/Install/Controller/InstallController.php +%%BAREOSWEBUIDIR%%/module/Install/src/Install/Model/Install.php +%%BAREOSWEBUIDIR%%/module/Install/src/Install/Model/InstallTable.php +%%BAREOSWEBUIDIR%%/module/Install/view/install/install/index.phtml +%%BAREOSWEBUIDIR%%/module/Install/view/install/install/test.phtml +%%BAREOSWEBUIDIR%%/module/Job/Module.php +%%BAREOSWEBUIDIR%%/module/Job/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Job/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Job/src/Job/Controller/JobController.php +%%BAREOSWEBUIDIR%%/module/Job/src/Job/Model/Job.php +%%BAREOSWEBUIDIR%%/module/Job/src/Job/Model/JobTable.php +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/cancel.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/details.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/index.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/rerun.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/running.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/successful.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/timeline.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/unsuccessful.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/waiting.phtml +%%BAREOSWEBUIDIR%%/module/Log/Module.php +%%BAREOSWEBUIDIR%%/module/Log/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Log/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Log/src/Log/Controller/LogController.php +%%BAREOSWEBUIDIR%%/module/Log/src/Log/Model/Log.php +%%BAREOSWEBUIDIR%%/module/Log/src/Log/Model/LogTable.php +%%BAREOSWEBUIDIR%%/module/Log/view/log/log/details.phtml +%%BAREOSWEBUIDIR%%/module/Log/view/log/log/index.phtml +%%BAREOSWEBUIDIR%%/module/Log/view/log/log/job.phtml +%%BAREOSWEBUIDIR%%/module/Media/Module.php +%%BAREOSWEBUIDIR%%/module/Media/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Media/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Media/src/Media/Controller/MediaController.php +%%BAREOSWEBUIDIR%%/module/Media/src/Media/Model/Media.php +%%BAREOSWEBUIDIR%%/module/Media/src/Media/Model/MediaTable.php +%%BAREOSWEBUIDIR%%/module/Media/view/media/media/details.phtml +%%BAREOSWEBUIDIR%%/module/Media/view/media/media/index.phtml +%%BAREOSWEBUIDIR%%/module/Pool/Module.php +%%BAREOSWEBUIDIR%%/module/Pool/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Pool/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Pool/src/Pool/Controller/PoolController.php +%%BAREOSWEBUIDIR%%/module/Pool/src/Pool/Model/Pool.php +%%BAREOSWEBUIDIR%%/module/Pool/src/Pool/Model/PoolTable.php +%%BAREOSWEBUIDIR%%/module/Pool/view/pool/pool/details.phtml +%%BAREOSWEBUIDIR%%/module/Pool/view/pool/pool/index.phtml +%%BAREOSWEBUIDIR%%/module/Restore/Module.php +%%BAREOSWEBUIDIR%%/module/Restore/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Restore/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Restore/src/Restore/Controller/RestoreController.php +%%BAREOSWEBUIDIR%%/module/Restore/src/Restore/Model/Restore.php +%%BAREOSWEBUIDIR%%/module/Restore/src/Restore/Model/RestoreTable.php +%%BAREOSWEBUIDIR%%/module/Restore/view/restore/restore/index.phtml +%%BAREOSWEBUIDIR%%/module/Statistics/Module.php +%%BAREOSWEBUIDIR%%/module/Statistics/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Statistics/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Statistics/src/Statistics/Controller/StatisticsController.php +%%BAREOSWEBUIDIR%%/module/Statistics/src/Statistics/Model/Statistics.php +%%BAREOSWEBUIDIR%%/module/Statistics/src/Statistics/Model/StatisticsTable.php +%%BAREOSWEBUIDIR%%/module/Statistics/view/statistics/statistics/index.phtml +%%BAREOSWEBUIDIR%%/module/Storage/Module.php +%%BAREOSWEBUIDIR%%/module/Storage/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Storage/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Storage/src/Storage/Controller/StorageController.php +%%BAREOSWEBUIDIR%%/module/Storage/src/Storage/Model/Storage.php +%%BAREOSWEBUIDIR%%/module/Storage/src/Storage/Model/StorageTable.php +%%BAREOSWEBUIDIR%%/module/Storage/view/storage/storage/autochanger.phtml +%%BAREOSWEBUIDIR%%/module/Storage/view/storage/storage/details.phtml +%%BAREOSWEBUIDIR%%/module/Storage/view/storage/storage/index.phtml +%%BAREOSWEBUIDIR%%/module/User/Module.php +%%BAREOSWEBUIDIR%%/module/User/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/User/config/module.config.php +%%BAREOSWEBUIDIR%%/module/User/src/User/Controller/UserController.php +%%BAREOSWEBUIDIR%%/module/User/src/User/Model/User.php +%%BAREOSWEBUIDIR%%/module/User/src/User/Model/UserTable.php +%%BAREOSWEBUIDIR%%/module/User/view/user/user/index.phtml +%%BAREOSWEBUIDIR%%/public/css/bootstrap-theme.css +%%BAREOSWEBUIDIR%%/public/css/bootstrap-theme.css.map +%%BAREOSWEBUIDIR%%/public/css/bootstrap-theme.min.css +%%BAREOSWEBUIDIR%%/public/css/bootstrap.css +%%BAREOSWEBUIDIR%%/public/css/bootstrap.css.map +%%BAREOSWEBUIDIR%%/public/css/bootstrap.min.css +%%BAREOSWEBUIDIR%%/public/css/jquery.jqplot.css +%%BAREOSWEBUIDIR%%/public/css/jquery.jqplot.min.css +%%BAREOSWEBUIDIR%%/public/css/style.css +%%BAREOSWEBUIDIR%%/public/fonts/glyphicons-halflings-regular.eot +%%BAREOSWEBUIDIR%%/public/fonts/glyphicons-halflings-regular.svg +%%BAREOSWEBUIDIR%%/public/fonts/glyphicons-halflings-regular.ttf +%%BAREOSWEBUIDIR%%/public/fonts/glyphicons-halflings-regular.woff +%%BAREOSWEBUIDIR%%/public/fonts/glyphicons-halflings-regular.woff2 +%%BAREOSWEBUIDIR%%/public/img/bareos-logo-small.png +%%BAREOSWEBUIDIR%%/public/img/favicon.ico +%%BAREOSWEBUIDIR%%/public/index.php +%%BAREOSWEBUIDIR%%/public/js/bootstrap.js +%%BAREOSWEBUIDIR%%/public/js/bootstrap.min.js +%%BAREOSWEBUIDIR%%/public/js/excanvas.js +%%BAREOSWEBUIDIR%%/public/js/excanvas.min.js +%%BAREOSWEBUIDIR%%/public/js/html5shiv.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.barRenderer.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.barRenderer.min.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.categoryAxisRenderer.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.categoryAxisRenderer.min.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.pieRenderer.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.pieRenderer.min.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.pointLabels.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.pointLabels.min.js +%%BAREOSWEBUIDIR%%/public/js/jquery.jqplot.js +%%BAREOSWEBUIDIR%%/public/js/jquery.jqplot.min.js +%%BAREOSWEBUIDIR%%/public/js/jquery.js +%%BAREOSWEBUIDIR%%/public/js/jquery.min.js +%%BAREOSWEBUIDIR%%/public/js/jquery.min.map +%%BAREOSWEBUIDIR%%/public/js/npm.js +%%BAREOSWEBUIDIR%%/public/js/respond.min.js +%%BAREOSWEBUIDIR%%/vendor/Bareos/library/Bareos/BSock/BareosBSock.php +%%BAREOSWEBUIDIR%%/vendor/Bareos/library/Bareos/BSock/BareosBSockAbstractServiceFactory.php +%%BAREOSWEBUIDIR%%/vendor/Bareos/library/Bareos/BSock/BareosBSockInterface.php +%%BAREOSWEBUIDIR%%/vendor/Bareos/library/Bareos/BSock/BareosBSockServiceFactory.php +%%BAREOSWEBUIDIR%%/vendor/Bareos/library/Bareos/BSock/BareosBase64.php +%%BAREOSWEBUIDIR%%/vendor/Bareos/library/Bareos/Db/Sql/BareosSqlCompatHelper.php +%%BAREOSWEBUIDIR%%/vendor/README.md +%%BAREOSWEBUIDIR%%/phpunit.xml +@owner +@group +@dir %%BAREOSWEBUIDIR%%/data/cache From owner-svn-ports-all@freebsd.org Sun Aug 9 05:14:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 55ECE99DF5A; Sun, 9 Aug 2015 05:14:03 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 468E8927; Sun, 9 Aug 2015 05:14:03 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t795E3n1068359; Sun, 9 Aug 2015 05:14:03 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t795E2lp068353; Sun, 9 Aug 2015 05:14:02 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201508090514.t795E2lp068353@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Sun, 9 Aug 2015 05:14:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393761 - in head/sysutils: . bareos-docs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 05:14:03 -0000 Author: acm Date: Sun Aug 9 05:14:01 2015 New Revision: 393761 URL: https://svnweb.freebsd.org/changeset/ports/393761 Log: - New port: sysutils/bareos-docs Bareos (BackupArchivingRecoveryOpenSourced) is a reliable network open source software to backup, archive and restore files from all major operating systems. The fork was founded 2010 out of the bacula.org project. The fork has been actively developed and many new features have been added. This port installs the latest documentation for Bareos. WWW: http://www.bareos.org/ > Approved by: If you needed approval for this commit. > Obtained from: If the change is from a third party. > MFC after: N [day[s]|week[s]|month[s]]. Request a reminder email. > MFH: Ports tree branch name. Request approval for merge. > Relnotes: Set to 'yes' for mention in release notes. > Security: Vulnerability reference (one per line) or description. > Sponsored by: If the change was sponsored by an organization. > Empty fields above will be automatically removed. M Makefile A bareos-docs AM bareos-docs/Makefile AM bareos-docs/distinfo AM bareos-docs/pkg-descr Added: head/sysutils/bareos-docs/ head/sysutils/bareos-docs/Makefile (contents, props changed) head/sysutils/bareos-docs/distinfo (contents, props changed) head/sysutils/bareos-docs/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Aug 9 04:59:25 2015 (r393760) +++ head/sysutils/Makefile Sun Aug 9 05:14:01 2015 (r393761) @@ -70,6 +70,7 @@ SUBDIR += bareos-bat SUBDIR += bareos-client SUBDIR += bareos-client-static + SUBDIR += bareos-docs SUBDIR += bareos-server SUBDIR += baloo SUBDIR += baloo-widgets Added: head/sysutils/bareos-docs/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-docs/Makefile Sun Aug 9 05:14:01 2015 (r393761) @@ -0,0 +1,36 @@ +# Created by: Alonso CArdenas +# $FreeBSD$ + +PORTNAME= bareos +PORTVERSION= 15.2 +CATEGORIES= sysutils +MASTER_SITES= http://doc.bareos.org/master/ +PKGNAMESUFFIX= -docs +DISTFILES= ${PORTNAME}-manual-main-reference.pdf + +MAINTAINER= acm@FreeBSD.org +COMMENT= Bareos document set (PDF) + +NO_BUILD= yes + +UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} + +PORTDOCS= *.pdf + +OPTIONS_DEFINE= DOCS + +.include + +.if empty(PORT_OPTIONS:MDOCS) +IGNORE= consists of only documentation, please enable DOCS and try again +.endif + +do-extract: + ${MKDIR} ${WRKSRC} + ${CP} ${DISTDIR}/${PORTNAME}-manual-main-reference.pdf ${WRKSRC} + +do-install: + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}-manual-main-reference.pdf ${STAGEDIR}${DOCSDIR} + +.include Added: head/sysutils/bareos-docs/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-docs/distinfo Sun Aug 9 05:14:01 2015 (r393761) @@ -0,0 +1,2 @@ +SHA256 (bareos-manual-main-reference.pdf) = 9382892ccaf6c5db76f354ebd27e649d90d4ffaf58330620a8d2f4ca6d212cb6 +SIZE (bareos-manual-main-reference.pdf) = 2076173 Added: head/sysutils/bareos-docs/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-docs/pkg-descr Sun Aug 9 05:14:01 2015 (r393761) @@ -0,0 +1,8 @@ +Bareos (BackupArchivingRecoveryOpenSourced) is a reliable network open source +software to backup, archive and restore files from all major operating systems. +The fork was founded 2010 out of the bacula.org project. The fork has been +actively developed and many new features have been added. + +This port installs the latest documentation for Bareos. + +WWW: http://www.bareos.org/ From owner-svn-ports-all@freebsd.org Sun Aug 9 05:51:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BC38599D524; Sun, 9 Aug 2015 05:51:00 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3BE2234; Sun, 9 Aug 2015 05:51:00 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t795p0e7084600; Sun, 9 Aug 2015 05:51:00 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t795ox1s084591; Sun, 9 Aug 2015 05:50:59 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201508090550.t795ox1s084591@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sun, 9 Aug 2015 05:50:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393762 - head/editors/latexila X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 05:51:00 -0000 Author: olivierd Date: Sun Aug 9 05:50:59 2015 New Revision: 393762 URL: https://svnweb.freebsd.org/changeset/ports/393762 Log: - Update to 3.16.1 - Add LICENSE - Sort USES - Add NLS option Modified: head/editors/latexila/Makefile head/editors/latexila/distinfo head/editors/latexila/pkg-plist Modified: head/editors/latexila/Makefile ============================================================================== --- head/editors/latexila/Makefile Sun Aug 9 05:14:01 2015 (r393761) +++ head/editors/latexila/Makefile Sun Aug 9 05:50:59 2015 (r393762) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= latexila -PORTVERSION= 3.14.4 +PORTVERSION= 3.16.1 CATEGORIES= editors MASTER_SITES= GNOME DIST_SUBDIR= gnome3 @@ -10,13 +10,15 @@ DIST_SUBDIR= gnome3 MAINTAINER= olivierd@FreeBSD.org COMMENT= Integrated LaTeX environment +LICENSE= GPLv3 + BUILD_DEPENDS= valac:${PORTSDIR}/lang/vala \ itstool:${PORTSDIR}/textproc/itstool \ ${LOCALBASE}/libdata/pkgconfig/gsettings-desktop-schemas.pc:${PORTSDIR}/devel/gsettings-desktop-schemas LIB_DEPENDS= libgee-0.8.so:${PORTSDIR}/devel/libgee \ libgtkspell3-3.so:${PORTSDIR}/textproc/gtkspell3 -USES= pkgconfig gmake gettext desktop-file-utils tar:xz +USES= desktop-file-utils gettext-tools gmake pkgconfig tar:xz GNU_CONFIGURE= yes USE_GNOME= glib20 gtk30 gtksourceview3 intltool intlhack libxml2 USE_TEX= latex dvipsk @@ -25,6 +27,11 @@ INSTALL_TARGET= install-strip CONFIGURE_ARGS=--without-help-dir +OPTIONS_DEFINE= NLS +NLS_USES= gettext-runtime +NLS_CONFIGURE_ENABLE= nls +OPTIONS_SUB= yes + GLIB_SCHEMAS= org.gnome.latexila.gschema.xml .include Modified: head/editors/latexila/distinfo ============================================================================== --- head/editors/latexila/distinfo Sun Aug 9 05:14:01 2015 (r393761) +++ head/editors/latexila/distinfo Sun Aug 9 05:50:59 2015 (r393762) @@ -1,2 +1,2 @@ -SHA256 (gnome3/latexila-3.14.4.tar.xz) = 8e087040260a6eb777382c55fd3d1260f1686453052ccdf1a5b9e0e4178c4d62 -SIZE (gnome3/latexila-3.14.4.tar.xz) = 1139644 +SHA256 (gnome3/latexila-3.16.1.tar.xz) = ab2d769546e10c86670e86271024c023c0a87f1b72856955c1883416a9f333f0 +SIZE (gnome3/latexila-3.16.1.tar.xz) = 1059308 Modified: head/editors/latexila/pkg-plist ============================================================================== --- head/editors/latexila/pkg-plist Sun Aug 9 05:14:01 2015 (r393761) +++ head/editors/latexila/pkg-plist Sun Aug 9 05:50:59 2015 (r393762) @@ -2,6 +2,33 @@ bin/latexila man/man1/latexila.1.gz share/appdata/latexila.appdata.xml share/applications/latexila.desktop +share/gtk-doc/html/latexila/LatexilaBuildJob.html +share/gtk-doc/html/latexila/LatexilaBuildTool.html +share/gtk-doc/html/latexila/LatexilaBuildTools.html +share/gtk-doc/html/latexila/LatexilaBuildToolsDefault.html +share/gtk-doc/html/latexila/LatexilaBuildToolsPersonal.html +share/gtk-doc/html/latexila/LatexilaBuildView.html +share/gtk-doc/html/latexila/LatexilaPostProcessor.html +share/gtk-doc/html/latexila/LatexilaPostProcessorAllOutput.html +share/gtk-doc/html/latexila/LatexilaPostProcessorLatex.html +share/gtk-doc/html/latexila/LatexilaPostProcessorLatexmk.html +share/gtk-doc/html/latexila/LatexilaSynctex.html +share/gtk-doc/html/latexila/annotation-glossary.html +share/gtk-doc/html/latexila/api-index-full.html +share/gtk-doc/html/latexila/ch01.html +share/gtk-doc/html/latexila/home.png +share/gtk-doc/html/latexila/index.html +share/gtk-doc/html/latexila/index.sgml +share/gtk-doc/html/latexila/latexila-LatexilaUtils.html +share/gtk-doc/html/latexila/latexila.devhelp2 +share/gtk-doc/html/latexila/left-insensitive.png +share/gtk-doc/html/latexila/left.png +share/gtk-doc/html/latexila/object-tree.html +share/gtk-doc/html/latexila/right-insensitive.png +share/gtk-doc/html/latexila/right.png +share/gtk-doc/html/latexila/style.css +share/gtk-doc/html/latexila/up-insensitive.png +share/gtk-doc/html/latexila/up.png share/icons/hicolor/128x128/apps/latexila.png share/icons/hicolor/16x16/apps/latexila.png share/icons/hicolor/22x22/apps/latexila.png @@ -21,30 +48,30 @@ share/icons/hicolor/scalable/apps/latexi %%DATADIR%%/templates/report.xml %%DATADIR%%/ui/preferences_dialog.ui %%DATADIR%%/ui/ui.xml -share/locale/bs/LC_MESSAGES/latexila.mo -share/locale/ca/LC_MESSAGES/latexila.mo -share/locale/cs/LC_MESSAGES/latexila.mo -share/locale/de/LC_MESSAGES/latexila.mo -share/locale/el/LC_MESSAGES/latexila.mo -share/locale/eo/LC_MESSAGES/latexila.mo -share/locale/es/LC_MESSAGES/latexila.mo -share/locale/eu/LC_MESSAGES/latexila.mo -share/locale/fr/LC_MESSAGES/latexila.mo -share/locale/gl/LC_MESSAGES/latexila.mo -share/locale/he/LC_MESSAGES/latexila.mo -share/locale/hu/LC_MESSAGES/latexila.mo -share/locale/id/LC_MESSAGES/latexila.mo -share/locale/it/LC_MESSAGES/latexila.mo -share/locale/lt/LC_MESSAGES/latexila.mo -share/locale/lv/LC_MESSAGES/latexila.mo -share/locale/nb/LC_MESSAGES/latexila.mo -share/locale/nl/LC_MESSAGES/latexila.mo -share/locale/pl/LC_MESSAGES/latexila.mo -share/locale/pt_BR/LC_MESSAGES/latexila.mo -share/locale/ru/LC_MESSAGES/latexila.mo -share/locale/sl/LC_MESSAGES/latexila.mo -share/locale/sr/LC_MESSAGES/latexila.mo -share/locale/sr@latin/LC_MESSAGES/latexila.mo -share/locale/sv/LC_MESSAGES/latexila.mo -share/locale/uk/LC_MESSAGES/latexila.mo -share/locale/zh_CN/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/bs/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/ca/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/cs/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/de/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/el/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/eo/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/es/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/eu/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/fr/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/gl/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/he/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/hu/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/id/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/it/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/lt/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/lv/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/nb/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/nl/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/pl/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/ru/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/sl/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/sr/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/sv/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/uk/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/latexila.mo From owner-svn-ports-all@freebsd.org Sun Aug 9 06:57:12 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ACCDE99D31A; Sun, 9 Aug 2015 06:57:12 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9E2321030; Sun, 9 Aug 2015 06:57:12 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t796vCSE010254; Sun, 9 Aug 2015 06:57:12 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t796vC8Q010253; Sun, 9 Aug 2015 06:57:12 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201508090657.t796vC8Q010253@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sun, 9 Aug 2015 06:57:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393763 - head/devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 06:57:12 -0000 Author: olivierd Date: Sun Aug 9 06:57:11 2015 New Revision: 393763 URL: https://svnweb.freebsd.org/changeset/ports/393763 Log: Unbreak build INDEX, after revision r393751 Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 9 05:50:59 2015 (r393762) +++ head/devel/Makefile Sun Aug 9 06:57:11 2015 (r393763) @@ -80,6 +80,7 @@ SUBDIR += arm-gnueabi-binutils SUBDIR += arm-none-eabi-binutils SUBDIR += arm-none-eabi-gcc + SUBDIR += arm-none-eabi-gcc492 SUBDIR += aros-sdk SUBDIR += art SUBDIR += as31 From owner-svn-ports-all@freebsd.org Sun Aug 9 07:33:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1608C99D927; Sun, 9 Aug 2015 07:33:36 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E747F1FB2; Sun, 9 Aug 2015 07:33:35 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t797XZtT027923; Sun, 9 Aug 2015 07:33:35 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t797XYEA027919; Sun, 9 Aug 2015 07:33:34 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508090733.t797XYEA027919@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 9 Aug 2015 07:33:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393764 - in head/devel: . R-cran-bit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 07:33:36 -0000 Author: tota Date: Sun Aug 9 07:33:33 2015 New Revision: 393764 URL: https://svnweb.freebsd.org/changeset/ports/393764 Log: - Add new port: devel/R-cran-bit bitmapped vectors of booleans (no NAs), coercion from and to logicals, integers and integer subscripts; fast boolean operators and fast summary statistics. With 'bit' vectors you can store true binary booleans {FALSE,TRUE} at the expense of 1 bit only, on a 32 bit architecture this means factor 32 less RAM and ~ factor 32 more speed on boolean operations. Due to overhead of R calls, actual speed gain depends on the size of the vector: expect gains for vectors of size > 10000 elements. Even for one-time boolean operations it can pay-off to convert to bit, the pay-off is obvious, when such components are used more than once. Reading from and writing to bit is approximately as fast as accessing standard logicals - mostly due to R's time for memory allocation. The package allows to work with pre-allocated memory for return values by calling .Call() directly: when evaluating the speed of C-access with pre-allocated vector memory, coping from bit to logical requires only 70% of the time for copying from logical to logical; and copying from logical to bit comes at a performance penalty of 150%. the package now contains further classes for representing logical selections: 'bitwhich' for very skewed selections and 'ri' for selecting ranges of values for chunked processing. All three index classes can be used for subsetting 'ff' objects (ff-2.1-0 and higher). WWW: https://cran.r-project.org/web/packages/bit/ Added: head/devel/R-cran-bit/ head/devel/R-cran-bit/Makefile (contents, props changed) head/devel/R-cran-bit/distinfo (contents, props changed) head/devel/R-cran-bit/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 9 06:57:11 2015 (r393763) +++ head/devel/Makefile Sun Aug 9 07:33:33 2015 (r393764) @@ -12,6 +12,7 @@ SUBDIR += R-cran-Hmisc SUBDIR += R-cran-RUnit SUBDIR += R-cran-Rcpp + SUBDIR += R-cran-bit SUBDIR += R-cran-bitops SUBDIR += R-cran-caTools SUBDIR += R-cran-caret Added: head/devel/R-cran-bit/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bit/Makefile Sun Aug 9 07:33:33 2015 (r393764) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= bit +DISTVERSION= 1.1-12 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Class for vectors of 1-bit booleans + +LICENSE= GPLv2 + +USES= cran:auto-plist + +.include Added: head/devel/R-cran-bit/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bit/distinfo Sun Aug 9 07:33:33 2015 (r393764) @@ -0,0 +1,2 @@ +SHA256 (bit_1.1-12.tar.gz) = ce281c87fb7602bf1a599e72f3e25f9ff7a13e390c124a4506087f69ad79d128 +SIZE (bit_1.1-12.tar.gz) = 53737 Added: head/devel/R-cran-bit/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bit/pkg-descr Sun Aug 9 07:33:33 2015 (r393764) @@ -0,0 +1,23 @@ +bitmapped vectors of booleans (no NAs), coercion from and to logicals, +integers and integer subscripts; fast boolean operators and fast +summary statistics. With 'bit' vectors you can store true binary +booleans {FALSE,TRUE} at the expense of 1 bit only, on a 32 bit +architecture this means factor 32 less RAM and ~ factor 32 more +speed on boolean operations. Due to overhead of R calls, actual +speed gain depends on the size of the vector: expect gains for +vectors of size > 10000 elements. Even for one-time boolean operations +it can pay-off to convert to bit, the pay-off is obvious, when such +components are used more than once. Reading from and writing to bit +is approximately as fast as accessing standard logicals - mostly +due to R's time for memory allocation. The package allows to work +with pre-allocated memory for return values by calling .Call() +directly: when evaluating the speed of C-access with pre-allocated +vector memory, coping from bit to logical requires only 70% of the +time for copying from logical to logical; and copying from logical +to bit comes at a performance penalty of 150%. the package now +contains further classes for representing logical selections: +'bitwhich' for very skewed selections and 'ri' for selecting ranges +of values for chunked processing. All three index classes can be +used for subsetting 'ff' objects (ff-2.1-0 and higher). + +WWW: https://cran.r-project.org/web/packages/bit/ From owner-svn-ports-all@freebsd.org Sun Aug 9 07:49:15 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E46C99DD2E; Sun, 9 Aug 2015 07:49:15 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 130779B2; Sun, 9 Aug 2015 07:49:15 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t797nE3n033096; Sun, 9 Aug 2015 07:49:14 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t797nDOF033090; Sun, 9 Aug 2015 07:49:13 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508090749.t797nDOF033090@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 9 Aug 2015 07:49:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393765 - in head/devel: . R-cran-bit64 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 07:49:15 -0000 Author: tota Date: Sun Aug 9 07:49:13 2015 New Revision: 393765 URL: https://svnweb.freebsd.org/changeset/ports/393765 Log: - Add new port: devel/R-cran-bit64 Package 'bit64' provides serializable S3 atomic 64bit (signed) integers that can be used in vectors, matrices, arrays and data.frames. Methods are available for coercion from and to logicals, integers, doubles, characters and factors as well as many elementwise and summary functions. Many fast algorithmic operations such as 'match' and 'order' support interactive data exploration and manipulation and optionally leverage caching. WWW: https://cran.r-project.org/web/packages/bit64/ Added: head/devel/R-cran-bit64/ head/devel/R-cran-bit64/Makefile (contents, props changed) head/devel/R-cran-bit64/distinfo (contents, props changed) head/devel/R-cran-bit64/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 9 07:33:33 2015 (r393764) +++ head/devel/Makefile Sun Aug 9 07:49:13 2015 (r393765) @@ -13,6 +13,7 @@ SUBDIR += R-cran-RUnit SUBDIR += R-cran-Rcpp SUBDIR += R-cran-bit + SUBDIR += R-cran-bit64 SUBDIR += R-cran-bitops SUBDIR += R-cran-caTools SUBDIR += R-cran-caret Added: head/devel/R-cran-bit64/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bit64/Makefile Sun Aug 9 07:49:13 2015 (r393765) @@ -0,0 +1,18 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= bit64 +DISTVERSION= 0.9-5 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= S3 Class for Vectors of 64bit Integers + +LICENSE= GPLv2 + +RUN_DEPENDS= R-cran-bit>=1.1.12:${PORTSDIR}/devel/R-cran-bit + +USES= cran:auto-plist + +.include Added: head/devel/R-cran-bit64/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bit64/distinfo Sun Aug 9 07:49:13 2015 (r393765) @@ -0,0 +1,2 @@ +SHA256 (bit64_0.9-5.tar.gz) = 8f529f9e92caa133ced9c63f327a2682b70fac3f4fa96a0e95fcf50ddda8e53b +SIZE (bit64_0.9-5.tar.gz) = 121087 Added: head/devel/R-cran-bit64/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bit64/pkg-descr Sun Aug 9 07:49:13 2015 (r393765) @@ -0,0 +1,9 @@ +Package 'bit64' provides serializable S3 atomic 64bit (signed) +integers that can be used in vectors, matrices, arrays and data.frames. +Methods are available for coercion from and to logicals, integers, +doubles, characters and factors as well as many elementwise and +summary functions. Many fast algorithmic operations such as 'match' +and 'order' support interactive data exploration and manipulation +and optionally leverage caching. + +WWW: https://cran.r-project.org/web/packages/bit64/ From owner-svn-ports-all@freebsd.org Sun Aug 9 08:07:10 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A891499D262; Sun, 9 Aug 2015 08:07:10 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 92E116937A; Sun, 9 Aug 2015 08:07:10 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7987Ajo006600; Sun, 9 Aug 2015 08:07:10 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7986jD6006499; Sun, 9 Aug 2015 08:06:45 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201508090806.t7986jD6006499@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Sun, 9 Aug 2015 08:06:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393766 - in head: Mk archivers/fpc-bzip2 archivers/fpc-paszlib archivers/fpc-unzip audio/fpc-a52 audio/fpc-mad audio/fpc-modplug audio/fpc-oggvorbis audio/fpc-openal audio/fpc-sndfile ... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 08:07:10 -0000 Author: acm Date: Sun Aug 9 08:06:43 2015 New Revision: 393766 URL: https://svnweb.freebsd.org/changeset/ports/393766 Log: - editors/lazarus update to 1.4.2 - Add USE_FPC_RUN to bsd.fpc.mk. It add fpc units like run dependencies. Otherwise fpc units only are added like build dependencies (less dependencies registered when they are installed with pkg). - Remove GTK1 obsolete dependencies - Bump all ports with dependencies of fpc-* units - Bump all ports with dependencies of lazarus ports - Clean up Deleted: head/editors/lazarus/files/patch-ide_lazbuild.lpr Modified: head/Mk/bsd.fpc.mk head/archivers/fpc-bzip2/Makefile head/archivers/fpc-paszlib/Makefile head/archivers/fpc-unzip/Makefile head/audio/fpc-a52/Makefile head/audio/fpc-mad/Makefile head/audio/fpc-modplug/Makefile head/audio/fpc-oggvorbis/Makefile head/audio/fpc-openal/Makefile head/audio/fpc-sndfile/Makefile head/comms/cqrlog/Makefile head/converters/fpc-iconvenc/Makefile head/databases/fpc-dblib/Makefile head/databases/fpc-fpindexer/Makefile head/databases/fpc-gdbm/Makefile head/databases/fpc-ibase/Makefile head/databases/fpc-mysql/Makefile head/databases/fpc-odbc/Makefile head/databases/fpc-oracle/Makefile head/databases/fpc-postgres/Makefile head/databases/fpc-pxlib/Makefile head/databases/fpc-sqlite/Makefile head/devel/fpc-bfd/Makefile head/devel/fpc-dbus/Makefile head/devel/fpc-fcl-async/Makefile head/devel/fpc-fcl-base/Makefile head/devel/fpc-fcl-db/Makefile head/devel/fpc-fcl-extra/Makefile head/devel/fpc-fcl-fpcunit/Makefile head/devel/fpc-fcl-image/Makefile head/devel/fpc-fcl-js/Makefile head/devel/fpc-fcl-json/Makefile head/devel/fpc-fcl-net/Makefile head/devel/fpc-fcl-passrc/Makefile head/devel/fpc-fcl-process/Makefile head/devel/fpc-fcl-registry/Makefile head/devel/fpc-fcl-res/Makefile head/devel/fpc-fcl-web/Makefile head/devel/fpc-fcl-xml/Makefile head/devel/fpc-fpmkunit/Makefile head/devel/fpc-fppkg/Makefile head/devel/fpc-fv/Makefile head/devel/fpc-gdbint/Makefile head/devel/fpc-newt/Makefile head/devel/fpc-pthreads/Makefile head/devel/fpc-regexpr/Makefile head/devel/fpc-sdl/Makefile head/devel/fpc-symbolic/Makefile head/devel/fpc-zlib/Makefile head/editors/fpc-ide/Makefile head/editors/lazarus-lcl-gtk2/Makefile head/editors/lazarus-lcl-nogui/Makefile head/editors/lazarus-lcl-qt/Makefile head/editors/lazarus-lcl-units/Makefile head/editors/lazarus/Makefile head/editors/lazarus/distinfo head/ftp/fpc-libcurl/Makefile head/games/hedgewars/Makefile head/graphics/fpc-cairo/Makefile head/graphics/fpc-graph/Makefile head/graphics/fpc-hermes/Makefile head/graphics/fpc-imagemagick/Makefile head/graphics/fpc-libgd/Makefile head/graphics/fpc-libpng/Makefile head/graphics/fpc-ncurses/Makefile head/graphics/fpc-opengl/Makefile head/graphics/fpc-pasjpeg/Makefile head/graphics/fpc-proj4/Makefile head/graphics/fpc-rsvg/Makefile head/graphics/fpc-svgalib/Makefile head/lang/fpc-base/Makefile head/lang/fpc-lua/Makefile head/lang/fpc-rexx/Makefile head/lang/fpc-tcl/Makefile head/lang/fpc-units/Makefile head/lang/fpc-utils/Makefile head/lang/nbc/Makefile head/math/fpc-fftw/Makefile head/math/fpc-gmp/Makefile head/math/fpc-numlib/Makefile head/misc/fpc-chm/Makefile head/multimedia/fpc-dts/Makefile head/multimedia/fpc-matroska/Makefile head/multimedia/winff/Makefile head/net-p2p/transmission-remote-gui/Makefile head/net/fpc-ldap/Makefile head/net/fpc-pcap/Makefile head/russian/emkatic/Makefile head/science/checkmol/Makefile head/science/mol2ps/Makefile head/security/fpc-hash/Makefile head/security/fpc-openssl/Makefile head/sysutils/fpc-syslog/Makefile head/sysutils/fpc-users/Makefile head/sysutils/fpc-utmp/Makefile head/sysutils/fpc-uuid/Makefile head/textproc/fpc-aspell/Makefile head/textproc/fpc-libxml2/Makefile head/www/fpc-fastcgi/Makefile head/www/fpc-httpd22/Makefile head/www/fpc-httpd24/Makefile head/x11-fm/doublecmd/Makefile head/x11-toolkits/fpc-gtk2/Makefile head/x11-toolkits/fpc-xforms/Makefile head/x11/fpc-x11/Makefile Modified: head/Mk/bsd.fpc.mk ============================================================================== --- head/Mk/bsd.fpc.mk Sun Aug 9 07:49:13 2015 (r393765) +++ head/Mk/bsd.fpc.mk Sun Aug 9 08:06:43 2015 (r393766) @@ -13,6 +13,9 @@ # free pascal compiler, if you need install additional fpc # units, they can be listed there (USE_FPC= gtk x11 opengl). # +# USE_FPC_RUN - If you set this to "yes", free pascal units will be +# registered also as run dependencies. +# # WANT_FPC_BASE - If you set this to "yes", this automatically will install # all base units of fpc (gdbint graph ibase libasync hash # httpd mysql netdb odbc oracle pasjpeg paszlib pthreads @@ -197,10 +200,14 @@ zlib_UNIT= devel/fpc-zlib . if ${_FPC_ALL_UNITS:M${UNITS}}!="" . if ${_FPC_CFG_UNITS:M${UNITS}}!="" BUILD_DEPENDS+= ${UNITSDIR}/${UNITS}/fpunits.cfg:${PORTSDIR}/${${UNITS:S/-/_/}_UNIT} +. if defined(USE_FPC_RUN) RUN_DEPENDS+= ${UNITSDIR}/${UNITS}/fpunits.cfg:${PORTSDIR}/${${UNITS:S/-/_/}_UNIT} +. endif . else BUILD_DEPENDS+= ${UNITSDIR}/${UNITS}/Package.fpc:${PORTSDIR}/${${UNITS:S/-/_/}_UNIT} +. if defined(USE_FPC_RUN) RUN_DEPENDS+= ${UNITSDIR}/${UNITS}/Package.fpc:${PORTSDIR}/${${UNITS:S/-/_/}_UNIT} +. endif . endif security-check: fpc-check-install Modified: head/archivers/fpc-bzip2/Makefile ============================================================================== --- head/archivers/fpc-bzip2/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/archivers/fpc-bzip2/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= archivers lang PKGNAMESUFFIX= -bzip2 Modified: head/archivers/fpc-paszlib/Makefile ============================================================================== --- head/archivers/fpc-paszlib/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/archivers/fpc-paszlib/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= archivers devel PKGNAMESUFFIX= -paszlib Modified: head/archivers/fpc-unzip/Makefile ============================================================================== --- head/archivers/fpc-unzip/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/archivers/fpc-unzip/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= archivers lang PKGNAMESUFFIX= -unzip Modified: head/audio/fpc-a52/Makefile ============================================================================== --- head/audio/fpc-a52/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/audio/fpc-a52/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= audio lang PKGNAMESUFFIX= -a52 Modified: head/audio/fpc-mad/Makefile ============================================================================== --- head/audio/fpc-mad/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/audio/fpc-mad/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio lang PKGNAMESUFFIX= -mad Modified: head/audio/fpc-modplug/Makefile ============================================================================== --- head/audio/fpc-modplug/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/audio/fpc-modplug/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= audio lang PKGNAMESUFFIX= -modplug Modified: head/audio/fpc-oggvorbis/Makefile ============================================================================== --- head/audio/fpc-oggvorbis/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/audio/fpc-oggvorbis/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 2 CATEGORIES= audio lang PKGNAMESUFFIX= -oggvorbis Modified: head/audio/fpc-openal/Makefile ============================================================================== --- head/audio/fpc-openal/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/audio/fpc-openal/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= audio lang PKGNAMESUFFIX= -openal Modified: head/audio/fpc-sndfile/Makefile ============================================================================== --- head/audio/fpc-sndfile/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/audio/fpc-sndfile/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= audio lang PKGNAMESUFFIX= -sndfile Modified: head/comms/cqrlog/Makefile ============================================================================== --- head/comms/cqrlog/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/comms/cqrlog/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -3,7 +3,7 @@ PORTNAME= cqrlog PORTVERSION= 1.9.0 -PORTREVISION= 2 +PORTREVISION= 3 DISTVERSIONPREFIX= v CATEGORIES= comms hamradio @@ -25,7 +25,7 @@ SHEBANG_FILES= tools/cqrlog-apparmor-fix WANT_GNOME= yes ALL_TARGET= ${PORTNAME} -LAZARUS_VER= 1.4.0 +LAZARUS_VER= 1.4.2 LAZARUS_DIR= ${LOCALBASE}/share/lazarus-${LAZARUS_VER} OPTIONS_SINGLE= LCL Modified: head/converters/fpc-iconvenc/Makefile ============================================================================== --- head/converters/fpc-iconvenc/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/converters/fpc-iconvenc/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= converters lang PKGNAMESUFFIX= -iconvenc Modified: head/databases/fpc-dblib/Makefile ============================================================================== --- head/databases/fpc-dblib/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-dblib/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -dblib Modified: head/databases/fpc-fpindexer/Makefile ============================================================================== --- head/databases/fpc-fpindexer/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-fpindexer/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -fpindexer Modified: head/databases/fpc-gdbm/Makefile ============================================================================== --- head/databases/fpc-gdbm/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-gdbm/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -gdbm Modified: head/databases/fpc-ibase/Makefile ============================================================================== --- head/databases/fpc-ibase/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-ibase/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -ibase Modified: head/databases/fpc-mysql/Makefile ============================================================================== --- head/databases/fpc-mysql/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-mysql/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -mysql Modified: head/databases/fpc-odbc/Makefile ============================================================================== --- head/databases/fpc-odbc/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-odbc/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -odbc Modified: head/databases/fpc-oracle/Makefile ============================================================================== --- head/databases/fpc-oracle/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-oracle/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper et al # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -oracle Modified: head/databases/fpc-postgres/Makefile ============================================================================== --- head/databases/fpc-postgres/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-postgres/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper et al # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -postgres Modified: head/databases/fpc-pxlib/Makefile ============================================================================== --- head/databases/fpc-pxlib/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-pxlib/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -pxlib Modified: head/databases/fpc-sqlite/Makefile ============================================================================== --- head/databases/fpc-sqlite/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-sqlite/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases lang PKGNAMESUFFIX= -sqlite Modified: head/devel/fpc-bfd/Makefile ============================================================================== --- head/devel/fpc-bfd/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-bfd/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -bfd Modified: head/devel/fpc-dbus/Makefile ============================================================================== --- head/devel/fpc-dbus/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-dbus/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -dbus Modified: head/devel/fpc-fcl-async/Makefile ============================================================================== --- head/devel/fpc-fcl-async/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-async/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-async Modified: head/devel/fpc-fcl-base/Makefile ============================================================================== --- head/devel/fpc-fcl-base/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-base/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-base Modified: head/devel/fpc-fcl-db/Makefile ============================================================================== --- head/devel/fpc-fcl-db/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-db/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-db Modified: head/devel/fpc-fcl-extra/Makefile ============================================================================== --- head/devel/fpc-fcl-extra/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-extra/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-extra Modified: head/devel/fpc-fcl-fpcunit/Makefile ============================================================================== --- head/devel/fpc-fcl-fpcunit/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-fpcunit/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-fpcunit Modified: head/devel/fpc-fcl-image/Makefile ============================================================================== --- head/devel/fpc-fcl-image/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-image/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-image Modified: head/devel/fpc-fcl-js/Makefile ============================================================================== --- head/devel/fpc-fcl-js/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-js/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-js Modified: head/devel/fpc-fcl-json/Makefile ============================================================================== --- head/devel/fpc-fcl-json/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-json/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-json Modified: head/devel/fpc-fcl-net/Makefile ============================================================================== --- head/devel/fpc-fcl-net/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-net/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-net Modified: head/devel/fpc-fcl-passrc/Makefile ============================================================================== --- head/devel/fpc-fcl-passrc/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-passrc/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-passrc Modified: head/devel/fpc-fcl-process/Makefile ============================================================================== --- head/devel/fpc-fcl-process/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-process/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-process Modified: head/devel/fpc-fcl-registry/Makefile ============================================================================== --- head/devel/fpc-fcl-registry/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-registry/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-registry Modified: head/devel/fpc-fcl-res/Makefile ============================================================================== --- head/devel/fpc-fcl-res/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-res/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-res Modified: head/devel/fpc-fcl-web/Makefile ============================================================================== --- head/devel/fpc-fcl-web/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-web/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-web Modified: head/devel/fpc-fcl-xml/Makefile ============================================================================== --- head/devel/fpc-fcl-xml/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-xml/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-xml Modified: head/devel/fpc-fpmkunit/Makefile ============================================================================== --- head/devel/fpc-fpmkunit/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fpmkunit/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fpmkunit Modified: head/devel/fpc-fppkg/Makefile ============================================================================== --- head/devel/fpc-fppkg/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fppkg/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fppkg Modified: head/devel/fpc-fv/Makefile ============================================================================== --- head/devel/fpc-fv/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fv/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fv Modified: head/devel/fpc-gdbint/Makefile ============================================================================== --- head/devel/fpc-gdbint/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-gdbint/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper et al # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel PKGNAMESUFFIX= -gdbint Modified: head/devel/fpc-newt/Makefile ============================================================================== --- head/devel/fpc-newt/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-newt/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -newt Modified: head/devel/fpc-pthreads/Makefile ============================================================================== --- head/devel/fpc-pthreads/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-pthreads/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -pthreads Modified: head/devel/fpc-regexpr/Makefile ============================================================================== --- head/devel/fpc-regexpr/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-regexpr/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper et al # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -regexpr Modified: head/devel/fpc-sdl/Makefile ============================================================================== --- head/devel/fpc-sdl/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-sdl/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,8 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTVERSION= 0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel lang PKGNAMESUFFIX= -sdl Modified: head/devel/fpc-symbolic/Makefile ============================================================================== --- head/devel/fpc-symbolic/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-symbolic/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -symbolic Modified: head/devel/fpc-zlib/Makefile ============================================================================== --- head/devel/fpc-zlib/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-zlib/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -zlib Modified: head/editors/fpc-ide/Makefile ============================================================================== --- head/editors/fpc-ide/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/editors/fpc-ide/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper et al # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= editors lang PKGNAMESUFFIX= -ide Modified: head/editors/lazarus-lcl-gtk2/Makefile ============================================================================== --- head/editors/lazarus-lcl-gtk2/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/editors/lazarus-lcl-gtk2/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -lcl-gtk2 COMMENT= Lazarus components library - GTK2 backend @@ -9,6 +9,7 @@ COMMENT= Lazarus components library - GT BUILD_DEPENDS= ${LCL_UNITS_DIR}/alllclunits.ppu:${PORTSDIR}/editors/lazarus-lcl-units USE_FPC= x11 gtk2 +USE_FPC_RUN= yes LCL_INTERFACE= gtk2 Modified: head/editors/lazarus-lcl-nogui/Makefile ============================================================================== --- head/editors/lazarus-lcl-nogui/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/editors/lazarus-lcl-nogui/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -lcl-nogui COMMENT= Lazarus components library - No gui backend Modified: head/editors/lazarus-lcl-qt/Makefile ============================================================================== --- head/editors/lazarus-lcl-qt/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/editors/lazarus-lcl-qt/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -lcl-qt COMMENT= Lazarus components library - QT backend @@ -9,6 +9,7 @@ COMMENT= Lazarus components library - QT BUILD_DEPENDS= ${LCL_UNITS_DIR}/alllclunits.ppu:${PORTSDIR}/editors/lazarus-lcl-units USE_FPC= x11 +USE_FPC_RUN= yes LCL_INTERFACE= qt Modified: head/editors/lazarus-lcl-units/Makefile ============================================================================== --- head/editors/lazarus-lcl-units/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/editors/lazarus-lcl-units/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,12 +1,13 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -lcl-units COMMENT= Lazarus components library units USE_FPC= fcl-base fcl-db fcl-image fcl-process fcl-registry fcl-xml iconvenc fcl-res +USE_FPC_RUN= yes LCL_INTERFACE= # Modified: head/editors/lazarus/Makefile ============================================================================== --- head/editors/lazarus/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/editors/lazarus/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= lazarus -PORTVERSION= 1.4.0 +PORTVERSION= 1.4.2 DISTVERSIONSUFFIX= -0 PORTREVISION?= 0 CATEGORIES= editors devel @@ -22,6 +22,7 @@ USES= gmake USE_GNOME= # USE_FPC?= fcl-base fcl-db fcl-fpcunit fcl-image fcl-process fcl-registry \ fcl-res fcl-xml iconvenc numlib pasjpeg x11 +USE_FPC_RUN= yes OPT?= "-Sgic " MAKE_ENV= OPT=${OPT} @@ -32,10 +33,9 @@ DATADIR?= ${PREFIX}/share/${PORTNAME}-${ .if !defined(PKGNAMESUFFIX) OPTIONS_DEFINE= GDB OPTIONS_SINGLE= LCL -OPTIONS_SINGLE_LCL= GTK1 GTK2 QT4 +OPTIONS_SINGLE_LCL= GTK2 QT4 GDB_DESC= Install a newest version of gdb -GTK1_DESC= Use gtk12 interface GTK2_DESC= Use gtk20 interface QT4_DESC= Use qt4 interface @@ -79,14 +79,6 @@ BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_P RUN_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:${PORTSDIR}/editors/lazarus-lcl-gtk2 .endif -.if ${PORT_OPTIONS:MGTK1} -USE_FPC+= gtk1 -USE_GNOME= gtk12 gdkpixbuf -LCL_PLATFORM= gtk -BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:${PORTSDIR}/editors/lazarus-lcl-gtk -RUN_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:${PORTSDIR}/editors/lazarus-lcl-gtk -.endif - .if ${PORT_OPTIONS:MQT4} LIB_DEPENDS+= libQt4Pas.so:${PORTSDIR}/x11-toolkits/qt4pas LCL_PLATFORM= qt Modified: head/editors/lazarus/distinfo ============================================================================== --- head/editors/lazarus/distinfo Sun Aug 9 07:49:13 2015 (r393765) +++ head/editors/lazarus/distinfo Sun Aug 9 08:06:43 2015 (r393766) @@ -1,2 +1,2 @@ -SHA256 (freepascal/lazarus-1.4.0-0.tar.gz) = 6ceab5d2f176abedd1cebda2f7524812b16f702f010681a6af62c7a6025c12ec -SIZE (freepascal/lazarus-1.4.0-0.tar.gz) = 53055658 +SHA256 (freepascal/lazarus-1.4.2-0.tar.gz) = ba0d2279fefba24f8fd1d9086b10fad8cd7076d6e267afd050908c6a375733e8 +SIZE (freepascal/lazarus-1.4.2-0.tar.gz) = 53106286 Modified: head/ftp/fpc-libcurl/Makefile ============================================================================== --- head/ftp/fpc-libcurl/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/ftp/fpc-libcurl/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= ftp lang PKGNAMESUFFIX= -libcurl Modified: head/games/hedgewars/Makefile ============================================================================== --- head/games/hedgewars/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/games/hedgewars/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -3,6 +3,7 @@ PORTNAME= hedgewars PORTVERSION= 0.9.21.1 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://download.gna.org/hedgewars/ \ http://mirror.amdmi3.ru/distfiles/ Modified: head/graphics/fpc-cairo/Makefile ============================================================================== --- head/graphics/fpc-cairo/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-cairo/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics lang PKGNAMESUFFIX= -cairo Modified: head/graphics/fpc-graph/Makefile ============================================================================== --- head/graphics/fpc-graph/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-graph/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics lang PKGNAMESUFFIX= -graph Modified: head/graphics/fpc-hermes/Makefile ============================================================================== --- head/graphics/fpc-hermes/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-hermes/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics lang PKGNAMESUFFIX= -hermes Modified: head/graphics/fpc-imagemagick/Makefile ============================================================================== --- head/graphics/fpc-imagemagick/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-imagemagick/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics lang PKGNAMESUFFIX= -imagemagick Modified: head/graphics/fpc-libgd/Makefile ============================================================================== --- head/graphics/fpc-libgd/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-libgd/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics lang PKGNAMESUFFIX= -libgd Modified: head/graphics/fpc-libpng/Makefile ============================================================================== --- head/graphics/fpc-libpng/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-libpng/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics lang PKGNAMESUFFIX= -libpng Modified: head/graphics/fpc-ncurses/Makefile ============================================================================== --- head/graphics/fpc-ncurses/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-ncurses/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics lang PKGNAMESUFFIX= -ncurses Modified: head/graphics/fpc-opengl/Makefile ============================================================================== --- head/graphics/fpc-opengl/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-opengl/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics lang PKGNAMESUFFIX= -opengl Modified: head/graphics/fpc-pasjpeg/Makefile ============================================================================== --- head/graphics/fpc-pasjpeg/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-pasjpeg/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics lang PKGNAMESUFFIX= -pasjpeg Modified: head/graphics/fpc-proj4/Makefile ============================================================================== --- head/graphics/fpc-proj4/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-proj4/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics lang PKGNAMESUFFIX= -proj4 Modified: head/graphics/fpc-rsvg/Makefile ============================================================================== --- head/graphics/fpc-rsvg/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-rsvg/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics lang PKGNAMESUFFIX= -rsvg Modified: head/graphics/fpc-svgalib/Makefile ============================================================================== --- head/graphics/fpc-svgalib/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-svgalib/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics lang PKGNAMESUFFIX= -svgalib Modified: head/lang/fpc-base/Makefile ============================================================================== --- head/lang/fpc-base/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/lang/fpc-base/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -13,6 +13,7 @@ EXTRACT_ONLY= # empty MAINTAINER= freebsd-fpc@FreeBSD.org COMMENT= Meta package to install all of the Free Pascal base +USE_FPC_RUN= yes WANT_FPC_BASE= yes NO_BUILD= yes NO_INSTALL= yes Modified: head/lang/fpc-lua/Makefile ============================================================================== --- head/lang/fpc-lua/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/lang/fpc-lua/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= lang PKGNAMESUFFIX= -lua Modified: head/lang/fpc-rexx/Makefile ============================================================================== --- head/lang/fpc-rexx/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/lang/fpc-rexx/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= lang PKGNAMESUFFIX= -rexx Modified: head/lang/fpc-tcl/Makefile ============================================================================== --- head/lang/fpc-tcl/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/lang/fpc-tcl/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= lang PKGNAMESUFFIX= -tcl Modified: head/lang/fpc-units/Makefile ============================================================================== --- head/lang/fpc-units/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/lang/fpc-units/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -3,7 +3,7 @@ PORTNAME= units PORTVERSION= 2.6.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= lang PKGNAMEPREFIX= fpc- @@ -115,6 +115,8 @@ UNITS_SELECTED= # UNITS_SELECTED+= ${OPT:tl} . endif .endfor + +USE_FPC_RUN= yes USE_FPC= ${UNITS_SELECTED} .include Modified: head/lang/fpc-utils/Makefile ============================================================================== --- head/lang/fpc-utils/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/lang/fpc-utils/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang PKGNAMESUFFIX= -utils Modified: head/lang/nbc/Makefile ============================================================================== --- head/lang/nbc/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/lang/nbc/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -5,7 +5,7 @@ PORTNAME= nbc PORTVERSION= 1.2.1.r4 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= lang MASTER_SITES= SF/bricxcc/NBC_NXC/NBC%20release%20${PORTVERSION:S/.r/%20r/} DISTNAME= ${PORTNAME}-${PORTVERSION}.src Modified: head/math/fpc-fftw/Makefile ============================================================================== --- head/math/fpc-fftw/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/math/fpc-fftw/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math lang PKGNAMESUFFIX= -fftw Modified: head/math/fpc-gmp/Makefile ============================================================================== --- head/math/fpc-gmp/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/math/fpc-gmp/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= math lang PKGNAMESUFFIX= -gmp Modified: head/math/fpc-numlib/Makefile ============================================================================== --- head/math/fpc-numlib/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/math/fpc-numlib/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= math lang PKGNAMESUFFIX= -numlib Modified: head/misc/fpc-chm/Makefile ============================================================================== --- head/misc/fpc-chm/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/misc/fpc-chm/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= misc lang PKGNAMESUFFIX= -chm Modified: head/multimedia/fpc-dts/Makefile ============================================================================== --- head/multimedia/fpc-dts/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/multimedia/fpc-dts/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= multimedia lang PKGNAMESUFFIX= -dts Modified: head/multimedia/fpc-matroska/Makefile ============================================================================== --- head/multimedia/fpc-matroska/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/multimedia/fpc-matroska/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= multimedia lang PKGNAMESUFFIX= -matroska Modified: head/multimedia/winff/Makefile ============================================================================== --- head/multimedia/winff/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/multimedia/winff/Makefile Sun Aug 9 08:06:43 2015 (r393766) *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Sun Aug 9 08:26:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CECDA99D60D; Sun, 9 Aug 2015 08:26:48 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BA7AB81C; Sun, 9 Aug 2015 08:26:48 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t798Qmub014986; Sun, 9 Aug 2015 08:26:48 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t798QlmG014978; Sun, 9 Aug 2015 08:26:47 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508090826.t798QlmG014978@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 9 Aug 2015 08:26:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393767 - in head/converters: . R-cran-jsonlite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 08:26:49 -0000 Author: tota Date: Sun Aug 9 08:26:46 2015 New Revision: 393767 URL: https://svnweb.freebsd.org/changeset/ports/393767 Log: - Add new port: converters/R-cran-jsonlite A fast JSON parser and generator optimized for statistical data and the web. Started out as a fork of RJSONIO, but has been completely rewritten in recent versions. The package offers flexible, robust, high performance tools for working with JSON in R and is particularly powerful for building pipelines and interacting with web APIs. The implementation is based on the mapping described in the vignette of the package (Ooms, 2014). In addition to drop-in replacements for toJSON and fromJSON, jsonlite contains functions to stream, validate, and prettify JSON data. The unit tests included with the package verify that all edge cases are encoded and decoded consistently for use with dynamic data in systems and applications. WWW: https://cran.r-project.org/web/packages/jsonlite/ Added: head/converters/R-cran-jsonlite/ head/converters/R-cran-jsonlite/Makefile (contents, props changed) head/converters/R-cran-jsonlite/distinfo (contents, props changed) head/converters/R-cran-jsonlite/pkg-descr (contents, props changed) Modified: head/converters/Makefile Modified: head/converters/Makefile ============================================================================== --- head/converters/Makefile Sun Aug 9 08:06:43 2015 (r393766) +++ head/converters/Makefile Sun Aug 9 08:26:46 2015 (r393767) @@ -4,6 +4,7 @@ COMMENT = Character code converters SUBDIR += R-cran-RJSONIO + SUBDIR += R-cran-jsonlite SUBDIR += R-cran-rjson SUBDIR += aish SUBDIR += ascii2binary Added: head/converters/R-cran-jsonlite/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/R-cran-jsonlite/Makefile Sun Aug 9 08:26:46 2015 (r393767) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= jsonlite +PORTVERSION= 0.9.16 +CATEGORIES= converters +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Robust, High Performance JSON Parser and Generator for R + +LICENSE= MIT + +USES= cran:auto-plist + +.include Added: head/converters/R-cran-jsonlite/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/R-cran-jsonlite/distinfo Sun Aug 9 08:26:46 2015 (r393767) @@ -0,0 +1,2 @@ +SHA256 (jsonlite_0.9.16.tar.gz) = d517dc7993c920298030978b65d38cfb411b37fb29faa246e3c859a893cc908b +SIZE (jsonlite_0.9.16.tar.gz) = 955572 Added: head/converters/R-cran-jsonlite/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/R-cran-jsonlite/pkg-descr Sun Aug 9 08:26:46 2015 (r393767) @@ -0,0 +1,13 @@ +A fast JSON parser and generator optimized for statistical data and +the web. Started out as a fork of RJSONIO, but has been completely +rewritten in recent versions. The package offers flexible, robust, +high performance tools for working with JSON in R and is particularly +powerful for building pipelines and interacting with web APIs. The +implementation is based on the mapping described in the vignette +of the package (Ooms, 2014). In addition to drop-in replacements +for toJSON and fromJSON, jsonlite contains functions to stream, +validate, and prettify JSON data. The unit tests included with the +package verify that all edge cases are encoded and decoded consistently +for use with dynamic data in systems and applications. + +WWW: https://cran.r-project.org/web/packages/jsonlite/ From owner-svn-ports-all@freebsd.org Sun Aug 9 09:03:25 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 269F59986EA; Sun, 9 Aug 2015 09:03:25 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0CB7E119E; Sun, 9 Aug 2015 09:03:25 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7993Okq028647; Sun, 9 Aug 2015 09:03:24 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7993O96028645; Sun, 9 Aug 2015 09:03:24 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201508090903.t7993O96028645@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Sun, 9 Aug 2015 09:03:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393768 - head/security/signing-party X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 09:03:25 -0000 Author: johans Date: Sun Aug 9 09:03:23 2015 New Revision: 393768 URL: https://svnweb.freebsd.org/changeset/ports/393768 Log: Update to signing-party 2.1 (bugfix release) http://metadata.ftp-master.debian.org/changelogs/main/s/signing-party/signing-party_2.1-1_changelog Modified: head/security/signing-party/Makefile head/security/signing-party/distinfo Modified: head/security/signing-party/Makefile ============================================================================== --- head/security/signing-party/Makefile Sun Aug 9 08:26:46 2015 (r393767) +++ head/security/signing-party/Makefile Sun Aug 9 09:03:23 2015 (r393768) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= signing-party -PORTVERSION= 2.0 -PORTREVISION= 1 +PORTVERSION= 2.1 CATEGORIES= security MASTER_SITES= ftp://ftp.stack.nl/pub/users/johans/signing-party/ \ DEBIAN Modified: head/security/signing-party/distinfo ============================================================================== --- head/security/signing-party/distinfo Sun Aug 9 08:26:46 2015 (r393767) +++ head/security/signing-party/distinfo Sun Aug 9 09:03:23 2015 (r393768) @@ -1,2 +1,2 @@ -SHA256 (signing-party_2.0.orig.tar.gz) = cc23e48b2f06dee7cbf7b80ee4dfbed69908cb4584d3d5fa29ed7b2f962ec16e -SIZE (signing-party_2.0.orig.tar.gz) = 236249 +SHA256 (signing-party_2.1.orig.tar.gz) = ca87849a74ea4c271e92422bfe6b1be2bfe2c2de9a723bf11aa088e4ea88965d +SIZE (signing-party_2.1.orig.tar.gz) = 237478 From owner-svn-ports-all@freebsd.org Sun Aug 9 09:17:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 462369989BB; Sun, 9 Aug 2015 09:17:36 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C9EC17DD; Sun, 9 Aug 2015 09:17:36 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t799Ha7U033037; Sun, 9 Aug 2015 09:17:36 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t799HaAI033036; Sun, 9 Aug 2015 09:17:36 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201508090917.t799HaAI033036@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 9 Aug 2015 09:17:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393769 - head/databases/sqlrelay X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 09:17:36 -0000 Author: pi Date: Sun Aug 9 09:17:35 2015 New Revision: 393769 URL: https://svnweb.freebsd.org/changeset/ports/393769 Log: databases/sqlrelay: ignore strip error if file was not build Modified: head/databases/sqlrelay/Makefile Modified: head/databases/sqlrelay/Makefile ============================================================================== --- head/databases/sqlrelay/Makefile Sun Aug 9 09:03:23 2015 (r393768) +++ head/databases/sqlrelay/Makefile Sun Aug 9 09:17:35 2015 (r393769) @@ -151,7 +151,7 @@ post-configure: post-stage: .for f in ${TOSTRIP} - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${f} + -${STRIP_CMD} ${STAGEDIR}${PREFIX}/${f} .endfor .include From owner-svn-ports-all@freebsd.org Sun Aug 9 09:18:22 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41EB49989E8; Sun, 9 Aug 2015 09:18:22 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 313E518D2; Sun, 9 Aug 2015 09:18:22 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t799IMAt033180; Sun, 9 Aug 2015 09:18:22 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t799IMsF033179; Sun, 9 Aug 2015 09:18:22 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201508090918.t799IMsF033179@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Sun, 9 Aug 2015 09:18:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393770 - head/math/octave-forge-interval/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 09:18:22 -0000 Author: stephen Date: Sun Aug 9 09:18:21 2015 New Revision: 393770 URL: https://svnweb.freebsd.org/changeset/ports/393770 Log: - Add patch that allows port to build on FreeBSD 10 with i386 architecture. Reference: http://beefy5.nyi.freebsd.org/data/101i386-default/393750/logs/octave-forge-interval-1.1.0.log Submitted by: Oliver Heimlich Added: head/math/octave-forge-interval/files/ head/math/octave-forge-interval/files/patch-Makefile (contents, props changed) Added: head/math/octave-forge-interval/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-interval/files/patch-Makefile Sun Aug 9 09:18:21 2015 (r393770) @@ -0,0 +1,18 @@ +--- Makefile.orig 2015-08-09 09:08:20 UTC ++++ Makefile +@@ -25,13 +25,13 @@ OBJ = mpfr_function_d.oct \ + + LDFLAGS_MPFR =-lmpfr -lgmp + ## Use important flags in XTRA_CFLAGS for OpenMP (workaround for bug #45280) +-XTRA_CFLAGS =$(shell $(MKOCTFILE) -p XTRA_CFLAGS) ++CFLAG_OPENMP =$(findstring -fopenmp,$(shell $(MKOCTFILE) -p XTRA_CFLAGS)) + + all: $(OBJ) + + ## GNU MPFR api oct-files + mpfr_matrix_mul_d.oct: mpfr_%.oct: mpfr_%.cc mpfr_commons.cc +- $(MKOCTFILE) -o $@ $(LDFLAGS_MPFR) $(XTRA_CFLAGS) $< ++ $(MKOCTFILE) -o $@ $(LDFLAGS_MPFR) $(CFLAG_OPENMP) $< + mpfr_%.oct: mpfr_%.cc mpfr_commons.cc + $(MKOCTFILE) -o $@ $(LDFLAGS_MPFR) $< + From owner-svn-ports-all@freebsd.org Sun Aug 9 10:03:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C5355998342; Sun, 9 Aug 2015 10:03:48 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B4A9BD5C; Sun, 9 Aug 2015 10:03:48 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79A3mlH053256; Sun, 9 Aug 2015 10:03:48 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79A3mqM053255; Sun, 9 Aug 2015 10:03:48 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201508091003.t79A3mqM053255@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 9 Aug 2015 10:03:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393771 - head/devel/arm-none-eabi-gcc492 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 10:03:48 -0000 Author: antoine Date: Sun Aug 9 10:03:47 2015 New Revision: 393771 URL: https://svnweb.freebsd.org/changeset/ports/393771 Log: Fix duplicate PKGBASE between devel/arm-none-eabi-gcc and devel/arm-none-eabi-gcc492 Modified: head/devel/arm-none-eabi-gcc492/Makefile Modified: head/devel/arm-none-eabi-gcc492/Makefile ============================================================================== --- head/devel/arm-none-eabi-gcc492/Makefile Sun Aug 9 09:18:21 2015 (r393770) +++ head/devel/arm-none-eabi-gcc492/Makefile Sun Aug 9 10:03:47 2015 (r393771) @@ -5,6 +5,7 @@ PORTVERSION= 4.9.2 CATEGORIES= devel MASTER_SITES= GCC/releases/gcc-${DISTVERSION} PKGNAMEPREFIX?= arm-none-eabi- +PKGNAMESUFFIX= 492 MAINTAINER= ian@FreeBSD.org COMMENT= GNU Compiler Collection for bare metal arm cross-development From owner-svn-ports-all@freebsd.org Sun Aug 9 10:04:12 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 147959983A2; Sun, 9 Aug 2015 10:04:12 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0408AE45; Sun, 9 Aug 2015 10:04:12 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79A4BTA053385; Sun, 9 Aug 2015 10:04:11 GMT (envelope-from nivit@FreeBSD.org) Received: (from nivit@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79A4BsN053383; Sun, 9 Aug 2015 10:04:11 GMT (envelope-from nivit@FreeBSD.org) Message-Id: <201508091004.t79A4BsN053383@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nivit set sender to nivit@FreeBSD.org using -f From: Nicola Vitale Date: Sun, 9 Aug 2015 10:04:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393772 - head/devel/py-stevedore X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 10:04:12 -0000 Author: nivit Date: Sun Aug 9 10:04:10 2015 New Revision: 393772 URL: https://svnweb.freebsd.org/changeset/ports/393772 Log: - Update to 1.7.0 Modified: head/devel/py-stevedore/Makefile head/devel/py-stevedore/distinfo Modified: head/devel/py-stevedore/Makefile ============================================================================== --- head/devel/py-stevedore/Makefile Sun Aug 9 10:03:47 2015 (r393771) +++ head/devel/py-stevedore/Makefile Sun Aug 9 10:04:10 2015 (r393772) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= stevedore -PORTVERSION= 1.2.0 -PORTREVISION= 1 +PORTVERSION= 1.7.0 +#PORTREVISION= 0 CATEGORIES= devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,10 +13,10 @@ COMMENT= Manage dynamic plugins for Pyth LICENSE= APACHE20 -BUILD_DEPENDS= ${PKGNAMEPREFIX}pbr>=0.10.0:${PORTSDIR}/devel/py-pbr +BUILD_DEPENDS= ${PKGNAMEPREFIX}pbr>=1.3.0:${PORTSDIR}/devel/py-pbr # <2.0 RUN_DEPENDS= ${PKGNAMEPREFIX}argparse>=1.2.1:${PORTSDIR}/devel/py-argparse \ - ${PKGNAMEPREFIX}pbr>=0.10.0:${PORTSDIR}/devel/py-pbr \ - ${PKGNAMEPREFIX}six>=1.7.0:${PORTSDIR}/devel/py-six + ${PKGNAMEPREFIX}pbr>=1.3.0:${PORTSDIR}/devel/py-pbr \ + ${PKGNAMEPREFIX}six>=1.9.0:${PORTSDIR}/devel/py-six USES= python USE_PYTHON= autoplist distutils Modified: head/devel/py-stevedore/distinfo ============================================================================== --- head/devel/py-stevedore/distinfo Sun Aug 9 10:03:47 2015 (r393771) +++ head/devel/py-stevedore/distinfo Sun Aug 9 10:04:10 2015 (r393772) @@ -1,2 +1,2 @@ -SHA256 (stevedore-1.2.0.tar.gz) = 3f70db9052c26e66dac61cb73d8c6f5211373983d39872addab617c759db4b45 -SIZE (stevedore-1.2.0.tar.gz) = 352770 +SHA256 (stevedore-1.7.0.tar.gz) = 68cf8691407cfd9c11e32381ef14ff566292dca0d113aba384d3fcc100933791 +SIZE (stevedore-1.7.0.tar.gz) = 502228 From owner-svn-ports-all@freebsd.org Sun Aug 9 10:10:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88164998488; Sun, 9 Aug 2015 10:10:04 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 78105F8C; Sun, 9 Aug 2015 10:10:04 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79AA4n1054230; Sun, 9 Aug 2015 10:10:04 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79AA4JV054229; Sun, 9 Aug 2015 10:10:04 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201508091010.t79AA4JV054229@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 9 Aug 2015 10:10:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393773 - head/Mk/Scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 10:10:04 -0000 Author: antoine Date: Sun Aug 9 10:10:03 2015 New Revision: 393773 URL: https://svnweb.freebsd.org/changeset/ports/393773 Log: Fix a typo that made baselibs QA check run twice on some files With hat: portmgr Modified: head/Mk/Scripts/qa.sh Modified: head/Mk/Scripts/qa.sh ============================================================================== --- head/Mk/Scripts/qa.sh Sun Aug 9 10:04:10 2015 (r393772) +++ head/Mk/Scripts/qa.sh Sun Aug 9 10:10:03 2015 (r393773) @@ -109,7 +109,7 @@ baselibs() { ;; esac done <<-EOF - $(find ${STAGEDIR}${BIN} ${STAGEDIR}${PREFIX}/sbin \ + $(find ${STAGEDIR}${PREFIX}/bin ${STAGEDIR}${PREFIX}/sbin \ ${STAGEDIR}${PREFIX}/lib ${STAGEDIR}${PREFIX}/libexec \ -type f -exec ldd -a {} + 2>/dev/null) EOF From owner-svn-ports-all@freebsd.org Sun Aug 9 10:26:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 11F77998840; Sun, 9 Aug 2015 10:26:03 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 019FDAAD; Sun, 9 Aug 2015 10:26:03 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79AQ2HF061860; Sun, 9 Aug 2015 10:26:02 GMT (envelope-from itetcu@FreeBSD.org) Received: (from itetcu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79AQ2T5061859; Sun, 9 Aug 2015 10:26:02 GMT (envelope-from itetcu@FreeBSD.org) Message-Id: <201508091026.t79AQ2T5061859@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: itetcu set sender to itetcu@FreeBSD.org using -f From: Ion-Mihai Tetcu Date: Sun, 9 Aug 2015 10:26:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393774 - head/sysutils/dt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 10:26:03 -0000 Author: itetcu Date: Sun Aug 9 10:26:02 2015 New Revision: 393774 URL: https://svnweb.freebsd.org/changeset/ports/393774 Log: - replace back-up MASTERSITE with one that actually works [1] - pet portlint Submitted by: Sitsofe Wheeler [1] MFH: 2 weeks Modified: head/sysutils/dt/Makefile Modified: head/sysutils/dt/Makefile ============================================================================== --- head/sysutils/dt/Makefile Sun Aug 9 10:10:03 2015 (r393773) +++ head/sysutils/dt/Makefile Sun Aug 9 10:26:02 2015 (r393774) @@ -5,18 +5,23 @@ PORTNAME= dt PORTVERSION= 17.07 CATEGORIES= sysutils MASTER_SITES= http://home.comcast.net/~SCSIguy/SCSI_FAQ/RMiller_Tools/ftp/dt/ \ - http://T32.TecNik93.com/FreeBSD/ports/dt/sources/ + http://ionut.tetcu.info/FreeBSD/ports/distfiles/ +#PORTVERSION= 18.32 +#MASTER_SITES= http://www.scsifaq.org/RMiller_Tools/ftp/dt/ \ +# http://dl.dropboxusercontent.com/u/32363629/Datatest/ +#DISTNAME= ${PORTNAME}-source-v${PORTVERSION DISTNAME= ${PORTNAME}-source MAINTAINER= itetcu@FreeBSD.org COMMENT= Data Test Program - disk/tape error diagnostic tool +LICENSE= ISCL + OPTIONS_DEFINE= DOCS WRKSRC= ${WRKDIR}/dt.d MAKEFILE= Makefile.freebsd ALL_TARGET= dt -LICENSE= ISCL PORTDOCS= README.1st ToDoList WhatsNew-* dt-UsersGuide.pdf dt-Overview.txt From owner-svn-ports-all@freebsd.org Sun Aug 9 11:02:41 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E9E8699819C; Sun, 9 Aug 2015 11:02:41 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D81DAD8A; Sun, 9 Aug 2015 11:02:41 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79B2f4t078063; Sun, 9 Aug 2015 11:02:41 GMT (envelope-from itetcu@FreeBSD.org) Received: (from itetcu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79B2fFo078062; Sun, 9 Aug 2015 11:02:41 GMT (envelope-from itetcu@FreeBSD.org) Message-Id: <201508091102.t79B2fFo078062@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: itetcu set sender to itetcu@FreeBSD.org using -f From: Ion-Mihai Tetcu Date: Sun, 9 Aug 2015 11:02:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393775 - head/devel/vstr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 11:02:42 -0000 Author: itetcu Date: Sun Aug 9 11:02:41 2015 New Revision: 393775 URL: https://svnweb.freebsd.org/changeset/ports/393775 Log: - add LICENSE - provide a working back-up MASTERSITE and drop the unusable ones Modified: head/devel/vstr/Makefile Modified: head/devel/vstr/Makefile ============================================================================== --- head/devel/vstr/Makefile Sun Aug 9 10:26:02 2015 (r393774) +++ head/devel/vstr/Makefile Sun Aug 9 11:02:41 2015 (r393775) @@ -5,15 +5,16 @@ PORTNAME= vstr PORTVERSION= 1.0.15 PORTREVISION= 1 CATEGORIES= devel -MASTER_SITES= http://freebsd.unixfreunde.de/sources/ \ - http://sce-tindy.tecnik93.com/FreeBSD/others_ports/${PORTNAME}/ \ - http://www.and.org/vstr/1.0.15/ \ - http://www.and.org/vstr/latest/ +MASTER_SITES= http://www.and.org/vstr/${PORTVERSION}/ \ + http://www.and.org/vstr/latest/ \ + http://ionut.tetcu.info/FreeBSd/ports/sources/ MAINTAINER= ports@FreeBSD.org COMMENT= General purpose string library for C -USES= gmake pathfix pkgconfig tar:bzip2 libtool +LICENSE= LGPL + +USES= gmake libtool pathfix pkgconfig tar:bzip2 GNU_CONFIGURE= yes USE_CSTD= gnu89 USE_LDCONFIG= yes From owner-svn-ports-all@freebsd.org Sun Aug 9 11:07:31 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4134F998242; Sun, 9 Aug 2015 11:07:31 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 31C10FBA; Sun, 9 Aug 2015 11:07:31 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79B7Vfa078433; Sun, 9 Aug 2015 11:07:31 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79B7VDD078432; Sun, 9 Aug 2015 11:07:31 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201508091107.t79B7VDD078432@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 9 Aug 2015 11:07:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393776 - head/devel/vstr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 11:07:31 -0000 Author: antoine Date: Sun Aug 9 11:07:30 2015 New Revision: 393776 URL: https://svnweb.freebsd.org/changeset/ports/393776 Log: Fix LICENSE Modified: head/devel/vstr/Makefile Modified: head/devel/vstr/Makefile ============================================================================== --- head/devel/vstr/Makefile Sun Aug 9 11:02:41 2015 (r393775) +++ head/devel/vstr/Makefile Sun Aug 9 11:07:30 2015 (r393776) @@ -12,7 +12,7 @@ MASTER_SITES= http://www.and.org/vstr/${ MAINTAINER= ports@FreeBSD.org COMMENT= General purpose string library for C -LICENSE= LGPL +LICENSE= LGPL21 USES= gmake libtool pathfix pkgconfig tar:bzip2 GNU_CONFIGURE= yes From owner-svn-ports-all@freebsd.org Sun Aug 9 11:20:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C18829987FF; Sun, 9 Aug 2015 11:20:49 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B2092882; Sun, 9 Aug 2015 11:20:49 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79BKnbe082745; Sun, 9 Aug 2015 11:20:49 GMT (envelope-from itetcu@FreeBSD.org) Received: (from itetcu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79BKnp2082744; Sun, 9 Aug 2015 11:20:49 GMT (envelope-from itetcu@FreeBSD.org) Message-Id: <201508091120.t79BKnp2082744@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: itetcu set sender to itetcu@FreeBSD.org using -f From: Ion-Mihai Tetcu Date: Sun, 9 Aug 2015 11:20:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393777 - head/mail/altermime X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 11:20:49 -0000 Author: itetcu Date: Sun Aug 9 11:20:48 2015 New Revision: 393777 URL: https://svnweb.freebsd.org/changeset/ports/393777 Log: Provide a working MASTERSITE Modified: head/mail/altermime/Makefile Modified: head/mail/altermime/Makefile ============================================================================== --- head/mail/altermime/Makefile Sun Aug 9 11:07:30 2015 (r393776) +++ head/mail/altermime/Makefile Sun Aug 9 11:20:48 2015 (r393777) @@ -4,7 +4,7 @@ PORTNAME= altermime PORTVERSION= 0.3.11.a1 CATEGORIES= mail textproc -MASTER_SITES= http://T32.tecnik93.com/FreeBSD/ports/altermime/sources/ +MASTER_SITES= http://ionut.tetcu.info/FreeBSD/ports/distfiles/ MAINTAINER= itetcu@FreeBSD.org COMMENT= Small C program which is used to alter your mime-encoded mailpacks From owner-svn-ports-all@freebsd.org Sun Aug 9 11:41:57 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 687BB998E26; Sun, 9 Aug 2015 11:41:57 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5705724F; Sun, 9 Aug 2015 11:41:57 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79Bfvw1094545; Sun, 9 Aug 2015 11:41:57 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79BfvL7094544; Sun, 9 Aug 2015 11:41:57 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201508091141.t79BfvL7094544@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sun, 9 Aug 2015 11:41:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393778 - head/Mk/Scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 11:41:57 -0000 Author: bapt Date: Sun Aug 9 11:41:56 2015 New Revision: 393778 URL: https://svnweb.freebsd.org/changeset/ports/393778 Log: Disable baselibs check until it is made saner (aka non recursive) Modified: head/Mk/Scripts/qa.sh Modified: head/Mk/Scripts/qa.sh ============================================================================== --- head/Mk/Scripts/qa.sh Sun Aug 9 11:20:48 2015 (r393777) +++ head/Mk/Scripts/qa.sh Sun Aug 9 11:41:56 2015 (r393778) @@ -293,7 +293,7 @@ prefixvar() { fi } -checks="shebang symlinks paths stripped desktopfileutils sharedmimeinfo suidfiles libtool libperl prefixvar baselibs" +checks="shebang symlinks paths stripped desktopfileutils sharedmimeinfo suidfiles libtool libperl prefixvar" # baselibs" ret=0 cd ${STAGEDIR} From owner-svn-ports-all@freebsd.org Sun Aug 9 11:42:09 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B0C3C998E4D; Sun, 9 Aug 2015 11:42:09 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9EEBC363; Sun, 9 Aug 2015 11:42:09 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79Bg9Yg094898; Sun, 9 Aug 2015 11:42:09 GMT (envelope-from ed@FreeBSD.org) Received: (from ed@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79Bg6wB094883; Sun, 9 Aug 2015 11:42:06 GMT (envelope-from ed@FreeBSD.org) Message-Id: <201508091142.t79Bg6wB094883@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ed set sender to ed@FreeBSD.org using -f From: Ed Schouten Date: Sun, 9 Aug 2015 11:42:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393779 - in head: devel/cloudabi-cloudlibc devel/cloudabi-compiler-rt devel/cloudabi-libc++ devel/cloudabi-libc++abi devel/cloudabi-libunwind sysutils/cloudabi-utils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 11:42:09 -0000 Author: ed (src committer) Date: Sun Aug 9 11:42:05 2015 New Revision: 393779 URL: https://svnweb.freebsd.org/changeset/ports/393779 Log: Upgrade the CloudABI toolchain and utilities. A new version of cloudlibc and cloudabi-utils has been released, to catch up with ABI changes (due to the import into FreeBSD HEAD). Bump these ports up to v0.4. While there, upgrade the LLVM packages. It looks like the LLVM project is finally releasing tarballs itself, meaning we can use those instead of requiring me to host them myself. Update the ports to use a common Makefile (cloudabi-libc++/Makefile.common) to set the PORTVERSION, MASTER_SITES, etc. Reviewed by: bapt Differential Revision: https://reviews.freebsd.org/D3332 Added: head/devel/cloudabi-libc++/Makefile.common (contents, props changed) Deleted: head/devel/cloudabi-compiler-rt/distinfo head/devel/cloudabi-libc++abi/distinfo head/devel/cloudabi-libunwind/distinfo Modified: head/devel/cloudabi-cloudlibc/Makefile head/devel/cloudabi-cloudlibc/distinfo head/devel/cloudabi-cloudlibc/pkg-plist head/devel/cloudabi-compiler-rt/Makefile head/devel/cloudabi-libc++/Makefile head/devel/cloudabi-libc++/distinfo head/devel/cloudabi-libc++/pkg-plist head/devel/cloudabi-libc++abi/Makefile head/devel/cloudabi-libunwind/Makefile head/sysutils/cloudabi-utils/Makefile head/sysutils/cloudabi-utils/distinfo Modified: head/devel/cloudabi-cloudlibc/Makefile ============================================================================== --- head/devel/cloudabi-cloudlibc/Makefile Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-cloudlibc/Makefile Sun Aug 9 11:42:05 2015 (r393779) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cloudlibc -PORTVERSION= 0.3 +PORTVERSION= 0.4 CATEGORIES= devel MASTER_SITES= https://nuxi.nl/distfiles/cloudlibc/ PKGNAMEPREFIX= cloudabi- Modified: head/devel/cloudabi-cloudlibc/distinfo ============================================================================== --- head/devel/cloudabi-cloudlibc/distinfo Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-cloudlibc/distinfo Sun Aug 9 11:42:05 2015 (r393779) @@ -1,2 +1,2 @@ -SHA256 (cloudlibc-0.3.tar.xz) = 3355c8c7c90bcfa27a2707f7ac4af6db76b9c0df1e702d5ff7e45c77e1e6e39f -SIZE (cloudlibc-0.3.tar.xz) = 631364 +SHA256 (cloudlibc-0.4.tar.xz) = ec9892519a2c1711005f7ab7cc4d7f98278ab4f3fcce0466fe57bd4e902b06b1 +SIZE (cloudlibc-0.4.tar.xz) = 633100 Modified: head/devel/cloudabi-cloudlibc/pkg-plist ============================================================================== --- head/devel/cloudabi-cloudlibc/pkg-plist Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-cloudlibc/pkg-plist Sun Aug 9 11:42:05 2015 (r393779) @@ -1,6 +1,7 @@ x86_64-unknown-cloudabi/include/_/arch/x86-64/fenv.h x86_64-unknown-cloudabi/include/_/arch/x86-64/setjmp.h x86_64-unknown-cloudabi/include/_/cdefs.h +x86_64-unknown-cloudabi/include/_/endian.h x86_64-unknown-cloudabi/include/_/limits.h x86_64-unknown-cloudabi/include/_/struct/in_addr.h x86_64-unknown-cloudabi/include/_/struct/iovec.h Modified: head/devel/cloudabi-compiler-rt/Makefile ============================================================================== --- head/devel/cloudabi-compiler-rt/Makefile Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-compiler-rt/Makefile Sun Aug 9 11:42:05 2015 (r393779) @@ -2,25 +2,16 @@ # $FreeBSD$ PORTNAME= compiler-rt -DISTVERSION= 0.242897 CATEGORIES= devel -MASTER_SITES= https://nuxi.nl/distfiles/compiler-rt/ -PKGNAMEPREFIX= cloudabi- MAINTAINER= ed@FreeBSD.org COMMENT= Compiler runtime library for CloudABI LICENSE= MIT -BUILD_DEPENDS= x86_64-unknown-cloudabi-ar:${PORTSDIR}/devel/cloudabi-binutils \ - x86_64-unknown-cloudabi-cc:${PORTSDIR}/lang/cloudabi-clang \ - ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc.a:${PORTSDIR}/devel/cloudabi-cloudlibc - -USES= tar:xz - PLIST_FILES= x86_64-unknown-cloudabi/lib/libcompiler_rt.a -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/lib/builtins +WRKSRC= ${WRKDIR}/${DISTNAME}/lib/builtins # Do not use the CMake build rules provided by compiler-rt. The CMake build # rules shipped with compiler-rt depend both on a standard C++ library and a @@ -69,4 +60,6 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/libcompiler_rt.a \ ${STAGEDIR}${PREFIX}/x86_64-unknown-cloudabi/lib/ +.include "${.CURDIR}/../cloudabi-libc++/Makefile.common" + .include Modified: head/devel/cloudabi-libc++/Makefile ============================================================================== --- head/devel/cloudabi-libc++/Makefile Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-libc++/Makefile Sun Aug 9 11:42:05 2015 (r393779) @@ -2,25 +2,16 @@ # $FreeBSD$ PORTNAME= libc++ -PORTVERSION= 0.242897 CATEGORIES= devel -MASTER_SITES= https://nuxi.nl/distfiles/libc++/:libcxx \ - https://nuxi.nl/distfiles/libc++abi/:libcxxabi -PKGNAMEPREFIX= cloudabi- -DISTFILES= libc++-${PORTVERSION}${EXTRACT_SUFX}:libcxx \ - libc++abi-${PORTVERSION}${EXTRACT_SUFX}:libcxxabi +DISTNAME= libcxx-${DISTVERSION}.src +DISTFILES= libcxx-${DISTVERSION}.src${EXTRACT_SUFX} \ + libcxxabi-${DISTVERSION}.src${EXTRACT_SUFX} MAINTAINER= ed@FreeBSD.org COMMENT= C++ standard template library for CloudABI LICENSE= MIT -BUILD_DEPENDS= x86_64-unknown-cloudabi-ar:${PORTSDIR}/devel/cloudabi-binutils \ - x86_64-unknown-cloudabi-c++:${PORTSDIR}/lang/cloudabi-clang \ - ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc.a:${PORTSDIR}/devel/cloudabi-cloudlibc - -USES= tar:xz - SRCFILES= algorithm bind chrono condition_variable debug exception \ future hash ios iostream locale memory mutex new optional \ random regex shared_mutex stdexcept string strstream \ @@ -30,7 +21,7 @@ do-build: .for f in ${SRCFILES} ${LOCALBASE}/bin/x86_64-unknown-cloudabi-c++ \ -g -O2 -nostdinc++ -std=c++11 -I${WRKSRC}/include \ - -I${WRKDIR}/libc++abi-${PORTVERSION}/include \ + -I${WRKDIR}/libcxxabi-${DISTVERSION}.src/include \ -D_LIBCPP_BUILD_STATIC -DLIBCXX_BUILDING_LIBCXXABI \ -c -o ${WRKSRC}/$f.o ${WRKSRC}/src/$f.cpp .endfor @@ -45,4 +36,6 @@ do-install: @${CP} -r ${WRKSRC}/include \ ${STAGEDIR}${PREFIX}/x86_64-unknown-cloudabi/include/c++/v1 +.include "${.CURDIR}/Makefile.common" + .include Added: head/devel/cloudabi-libc++/Makefile.common ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/cloudabi-libc++/Makefile.common Sun Aug 9 11:42:05 2015 (r393779) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +DISTVERSION= 3.7.0rc1 +MASTER_SITES= http://llvm.org/${PRE_}releases/${LLVM_RELEASE}/${RCDIR}/ +PKGNAMEPREFIX= cloudabi- +DISTNAME?= ${PORTNAME}-${DISTVERSION}.src +DISTINFO_FILE= ${.CURDIR}/../cloudabi-libc++/distinfo + +BUILD_DEPENDS+= x86_64-unknown-cloudabi-ar:${PORTSDIR}/devel/cloudabi-binutils \ + x86_64-unknown-cloudabi-c++:${PORTSDIR}/lang/cloudabi-clang \ + ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc.a:${PORTSDIR}/devel/cloudabi-cloudlibc + +LLVM_RELEASE= ${DISTVERSION:C/rc.*//} +RCDIR= ${DISTVERSION:S/${LLVM_RELEASE}//:C|(rc.*)|\1/|} +PRE_= ${DISTVERSION:C/.*rc.*/pre-/:N*[0-9]*} +LLVM_SUFFIX= ${DISTVERSION:R:S/.//} + +USES= tar:xz Modified: head/devel/cloudabi-libc++/distinfo ============================================================================== --- head/devel/cloudabi-libc++/distinfo Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-libc++/distinfo Sun Aug 9 11:42:05 2015 (r393779) @@ -1,4 +1,8 @@ -SHA256 (libc++-0.242897.tar.xz) = 74cb39fe8972bd4a8cc993719e1f3e18ff0fcef1deb61289bd9e1ad0270d48fb -SIZE (libc++-0.242897.tar.xz) = 966600 -SHA256 (libc++abi-0.242897.tar.xz) = f8a6502e5c2601fd1fad62ccb4b63639e21161bfe905d9b081628ce40baa3550 -SIZE (libc++abi-0.242897.tar.xz) = 506740 +SHA256 (compiler-rt-3.7.0rc1.src.tar.xz) = bafe3216bee62051ceed91d7eaaccd85f07b1a20e55c8adcfd8d7eea8d7bf211 +SIZE (compiler-rt-3.7.0rc1.src.tar.xz) = 1191260 +SHA256 (libcxx-3.7.0rc1.src.tar.xz) = 9207bb09c83fe8ab6262861f5e5294243763917635cc73579ea333efcf72e686 +SIZE (libcxx-3.7.0rc1.src.tar.xz) = 996500 +SHA256 (libcxxabi-3.7.0rc1.src.tar.xz) = db9bb2f2f71b3b46b91836541f3f55be4a53d977543ff64c2aefc9232d8c17ea +SIZE (libcxxabi-3.7.0rc1.src.tar.xz) = 507276 +SHA256 (libunwind-3.7.0rc1.src.tar.xz) = 2d52487c3fc4dc2968bb1295d2da541fe667c8e044be0fc1e661f0e49fd01247 +SIZE (libunwind-3.7.0rc1.src.tar.xz) = 59328 Modified: head/devel/cloudabi-libc++/pkg-plist ============================================================================== --- head/devel/cloudabi-libc++/pkg-plist Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-libc++/pkg-plist Sun Aug 9 11:42:05 2015 (r393779) @@ -54,7 +54,6 @@ x86_64-unknown-cloudabi/include/c++/v1/e x86_64-unknown-cloudabi/include/c++/v1/experimental/algorithm x86_64-unknown-cloudabi/include/c++/v1/experimental/chrono x86_64-unknown-cloudabi/include/c++/v1/experimental/dynarray -x86_64-unknown-cloudabi/include/c++/v1/experimental/functional x86_64-unknown-cloudabi/include/c++/v1/experimental/optional x86_64-unknown-cloudabi/include/c++/v1/experimental/ratio x86_64-unknown-cloudabi/include/c++/v1/experimental/string_view Modified: head/devel/cloudabi-libc++abi/Makefile ============================================================================== --- head/devel/cloudabi-libc++abi/Makefile Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-libc++abi/Makefile Sun Aug 9 11:42:05 2015 (r393779) @@ -2,25 +2,17 @@ # $FreeBSD$ PORTNAME= libc++abi -PORTVERSION= 0.242897 CATEGORIES= devel -MASTER_SITES= https://nuxi.nl/distfiles/libc++abi/:libcxxabi \ - https://nuxi.nl/distfiles/libunwind/:libunwind -PKGNAMEPREFIX= cloudabi- -DISTFILES= libc++abi-${PORTVERSION}${EXTRACT_SUFX}:libcxxabi \ - libunwind-${PORTVERSION}${EXTRACT_SUFX}:libunwind +DISTNAME= libcxxabi-${DISTVERSION}.src +DISTFILES= libcxxabi-${DISTVERSION}.src${EXTRACT_SUFX} \ + libunwind-${DISTVERSION}.src${EXTRACT_SUFX} MAINTAINER= ed@FreeBSD.org COMMENT= C++ standard library support for CloudABI LICENSE= MIT -BUILD_DEPENDS= x86_64-unknown-cloudabi-ar:${PORTSDIR}/devel/cloudabi-binutils \ - x86_64-unknown-cloudabi-c++:${PORTSDIR}/lang/cloudabi-clang \ - ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc.a:${PORTSDIR}/devel/cloudabi-cloudlibc \ - ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc++.a:${PORTSDIR}/devel/cloudabi-libc++ - -USES= tar:xz +BUILD_DEPENDS= ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc++.a:${PORTSDIR}/devel/cloudabi-libc++ PLIST_FILES= x86_64-unknown-cloudabi/lib/libc++abi.a @@ -34,7 +26,7 @@ do-build: .for f in ${SRCFILES} ${LOCALBASE}/bin/x86_64-unknown-cloudabi-c++ \ -O2 -std=c++11 -I${WRKSRC}/include \ - -I${WRKDIR}/libunwind-${PORTVERSION}/include \ + -I${WRKDIR}/libunwind-${DISTVERSION}.src/include \ -c -o ${WRKSRC}/$f.o ${WRKSRC}/src/$f.cpp .endfor cd ${WRKSRC}; ${LOCALBASE}/bin/x86_64-unknown-cloudabi-ar -rcs \ @@ -45,4 +37,6 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/libc++abi.a \ ${STAGEDIR}${PREFIX}/x86_64-unknown-cloudabi/lib/ +.include "${.CURDIR}/../cloudabi-libc++/Makefile.common" + .include Modified: head/devel/cloudabi-libunwind/Makefile ============================================================================== --- head/devel/cloudabi-libunwind/Makefile Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-libunwind/Makefile Sun Aug 9 11:42:05 2015 (r393779) @@ -2,25 +2,16 @@ # $FreeBSD$ PORTNAME= libunwind -PORTVERSION= 0.242897 CATEGORIES= devel -MASTER_SITES= https://nuxi.nl/distfiles/libc++abi/:libcxxabi \ - https://nuxi.nl/distfiles/libunwind/:libunwind -PKGNAMEPREFIX= cloudabi- -DISTFILES= libc++abi-${PORTVERSION}${EXTRACT_SUFX}:libcxxabi \ - libunwind-${PORTVERSION}${EXTRACT_SUFX}:libunwind +DISTFILES= libcxxabi-${DISTVERSION}.src${EXTRACT_SUFX} \ + libunwind-${DISTVERSION}.src${EXTRACT_SUFX} MAINTAINER= ed@FreeBSD.org -COMMENT= C++ standard library support for CloudABI +COMMENT= C++ exception handling for CloudABI LICENSE= MIT -BUILD_DEPENDS= x86_64-unknown-cloudabi-ar:${PORTSDIR}/devel/cloudabi-binutils \ - x86_64-unknown-cloudabi-c++:${PORTSDIR}/lang/cloudabi-clang \ - ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc.a:${PORTSDIR}/devel/cloudabi-cloudlibc \ - ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc++.a:${PORTSDIR}/devel/cloudabi-libc++ - -USES= tar:xz +BUILD_DEPENDS= ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc++.a:${PORTSDIR}/devel/cloudabi-libc++ PLIST_FILES= x86_64-unknown-cloudabi/lib/libunwind.a @@ -32,7 +23,7 @@ do-build: .for f in ${SRCFILES} ${LOCALBASE}/bin/x86_64-unknown-cloudabi-c++ \ -O2 -std=c++11 -I${WRKSRC}/include \ - -I${WRKDIR}/libc++abi-${PORTVERSION}/include \ + -I${WRKDIR}/libcxxabi-${DISTVERSION}.src/include \ -c -o ${WRKSRC}/$f.o ${WRKSRC}/src/$f .endfor cd ${WRKSRC}; ${LOCALBASE}/bin/x86_64-unknown-cloudabi-ar -rcs \ @@ -43,4 +34,6 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/libunwind.a \ ${STAGEDIR}${PREFIX}/x86_64-unknown-cloudabi/lib/ +.include "${.CURDIR}/../cloudabi-libc++/Makefile.common" + .include Modified: head/sysutils/cloudabi-utils/Makefile ============================================================================== --- head/sysutils/cloudabi-utils/Makefile Sun Aug 9 11:41:56 2015 (r393778) +++ head/sysutils/cloudabi-utils/Makefile Sun Aug 9 11:42:05 2015 (r393779) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cloudabi-utils -PORTVERSION= 0.3 +PORTVERSION= 0.4 CATEGORIES= sysutils MASTER_SITES= https://nuxi.nl/distfiles/cloudabi-utils/ Modified: head/sysutils/cloudabi-utils/distinfo ============================================================================== --- head/sysutils/cloudabi-utils/distinfo Sun Aug 9 11:41:56 2015 (r393778) +++ head/sysutils/cloudabi-utils/distinfo Sun Aug 9 11:42:05 2015 (r393779) @@ -1,2 +1,2 @@ -SHA256 (cloudabi-utils-0.3.tar.xz) = fd9349387ca48291e8d2fc23841bfbf5df6d312fec7d74ae91570c6cc78e1fc4 -SIZE (cloudabi-utils-0.3.tar.xz) = 13124 +SHA256 (cloudabi-utils-0.4.tar.xz) = e9e587b6aa6ec0e9059b003ffce5cfafe767daa35ddb6d93e2f2a809e2931e96 +SIZE (cloudabi-utils-0.4.tar.xz) = 13152 From owner-svn-ports-all@freebsd.org Sun Aug 9 11:53:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EB2B199D0D9; Sun, 9 Aug 2015 11:53:03 +0000 (UTC) (envelope-from freebsd@dns-lab.com) Received: from xs.unicycle.net.unicycle.net (unknown [IPv6:2001:67c:2464:200::15]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "srv23.ams1.unicycle.net", Issuer "srv23.ams1.unicycle.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F963CA7; Sun, 9 Aug 2015 11:53:01 +0000 (UTC) (envelope-from freebsd@dns-lab.com) Received: from xs.unicycle.net.unicycle.net (xs.unicycle.net [195.66.135.15]) by xs.unicycle.net.unicycle.net (8.14.9/8.14.7) with ESMTP id t79BqvfE052395 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 9 Aug 2015 11:52:57 GMT (envelope-from freebsd@dns-lab.com) Received: (from leo@localhost) by xs.unicycle.net.unicycle.net (8.14.9/8.14.7/Submit) id t79BqvP2052394; Sun, 9 Aug 2015 11:52:57 GMT (envelope-from freebsd@dns-lab.com) X-Authentication-Warning: xs.unicycle.net.unicycle.net: leo set sender to freebsd@dns-lab.com using -f Date: Sun, 9 Aug 2015 11:52:56 +0000 From: Leo Vandewoestijne To: Mathieu Arnold Cc: erwin@FreeBSD.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r393685 - in head/dns/knot2: . files Message-ID: <20150809115256.GA50813@relay7.ucia.gov> References: <201508070751.t777pjLs000674@repo.freebsd.org> <2CC2762BF6ABBED5C57AB963@atuin.in.mat.cc> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="IJpNTDwzlM2Ie8A6" Content-Disposition: inline In-Reply-To: <2CC2762BF6ABBED5C57AB963@atuin.in.mat.cc> X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 11:53:04 -0000 --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello, On Sat, 08 Aug 2015, Mathieu Arnold wrote: > +--On 7 ao??t 2015 07:51:45 +0000 Erwin Lansing wrote: > | Author: erwin > | Date: Fri Aug 7 07:51:44 2015 > | New Revision: 393685 > | URL: https://svnweb.freebsd.org/changeset/ports/393685 > | > | Log: > | Update to 2.0.0 > | > | PR: 201257 > | Submitted by: Leo Vandewoestijne > | Sponsored by: DK Hostmaster A/S > > After this, I get a build error: > > In file included from utils/kdig/kdig_main.c:20: > In file included from ../src/utils/kdig/kdig_params.h:38: > ../src/dnstap/reader.h:27:10: fatal error: 'fstrm.h' file not found > #include > ^ > 1 error generated. > *** [utils/kdig/kdig_main.o] Error code 1 > > https://pkg.absolight.fr/data/10amd64-pkgng/20150808T184208Z/logs/errors/knot2-2.0.0.log > > Odd I didn't catch that; only explanation I have is maybe my ports in poudriere was not in sync with the ports-tree I use for initial testing. So fstrm turns not only a dependency for dnstap anymore, but now also for the tools, so fails without dnstap option selected (the default). That's easily solved by making fstrm a main dependency. Attached my patch and logs. Leo Vandeweoestijne. --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="knot2_libfstrmProblem.diff.txt" --- knot2.old/Makefile 2015-08-09 13:15:46.121347405 +0000 +++ knot2/Makefile 2015-08-09 13:36:27.354806686 +0000 @@ -3,6 +3,7 @@ PORTNAME= knot DISTVERSION= 2.0.0 +PORTREVISION= 1 CATEGORIES= dns ipv6 MASTER_SITES= https://secure.nic.cz/files/knot-dns/ \ http://dns-lab.com/downloads/knot-dns/ @@ -13,7 +14,8 @@ LICENSE= GPLv3 -LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls \ +LIB_DEPENDS= libfstrm.so:${PORTSDIR}/devel/fstrm \ + libgnutls.so:${PORTSDIR}/security/gnutls \ libjansson.so:${PORTSDIR}/devel/jansson \ liblmdb.so:${PORTSDIR}/databases/lmdb \ libnettle.so:${PORTSDIR}/security/nettle \ @@ -48,8 +50,7 @@ DNSTAP_DESC= dnstap support (see dnstap.info) DNSTAP_CONFIGURE_ENABLE= dnstap -DNSTAP_LIB_DEPENDS= libfstrm.so:${PORTSDIR}/devel/fstrm \ - libprotobuf-c.so:${PORTSDIR}/devel/protobuf-c +DNSTAP_LIB_DEPENDS= libprotobuf-c.so:${PORTSDIR}/devel/protobuf-c FASTPARSER_DESC= Fast zone parser (demanding compilation) FASTPARSER_CONFIGURE_ENABLE= fastparser --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="10_knot2-2.0.0.log" Content-Transfer-Encoding: quoted-printable build started at Sun Aug 9 13:21:33 UTC 2015 port directory: /usr/ports/dns/knot2 building for: FreeBSD 101amd64-default 10.1-RELEASE-p9 FreeBSD 10.1-RELEASE= -p9 amd64 maintained by: freebsd@dns-lab.com Makefile ident: $FreeBSD: head/dns/knot2/Makefile 393685 2015-08-07 07= :51:44Z erwin $ Poudriere version: 3.1.7 Host OSVERSION: 1001000 Jail OSVERSION: 1001000 ---Begin Environment--- PKGREPOSITORY=3D/tmp/pkgs PACKAGES=3D/tmp/pkgs OSVERSION=3D1001000 UNAME_v=3DFreeBSD 10.1-RELEASE-p9 UNAME_r=3D10.1-RELEASE-p9 BLOCKSIZE=3DK MAIL=3D/var/mail/root STATUS=3D1 SAVED_TERM=3Dxterm-256color NO_WARNING_PKG_INSTALL_EOL=3Dyes MASTERMNT=3D/usr/local/poudriere/data/.m/101amd64-default/ref FORCE_PACKAGE=3Dyes PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/= bin:/root/bin POUDRIERE_BUILD_TYPE=3Dbulk OLDPWD=3D/ PWD=3D/usr/local/poudriere/data/.m/101amd64-default/ref/.p/pool MASTERNAME=3D101amd64-default SCRIPTPREFIX=3D/usr/local/share/poudriere USER=3Droot HOME=3D/root POUDRIERE_VERSION=3D3.1.7 SCRIPTPATH=3D/usr/local/share/poudriere/testport.sh TRYBROKEN=3Dyes LIBEXECPREFIX=3D/usr/local/libexec/poudriere LOCALBASE=3D/usr/local PACKAGE_BUILDING=3Dyes ---End Environment--- ---Begin OPTIONS List--- =3D=3D=3D> The following configuration options are available for knot2-2.0.= 0: DNSTAP=3Doff: dnstap support (see dnstap.info) FASTPARSER=3Doff: Fast zone parser (demanding compilation) IDN=3Doff: International Domain Names support =3D=3D=3D> Use 'make config' to modify these settings ---End OPTIONS List--- --CONFIGURE_ARGS-- --with-rundir=3D/var/run/knot --with-storage=3D/var/db/knot --with-pkgcon= figdir=3D/usr/local/libdata/pkgconfig --disable-silent-rules --disable-dnst= ap --disable-fastparser --without-libidn --prefix=3D/usr/local ${_LATE_CONF= IGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- PKG_CONFIG=3Dpkgconf XDG_DATA_HOME=3D/wrkdirs/usr/ports/dns/knot2/work XDG= _CONFIG_HOME=3D/wrkdirs/usr/ports/dns/knot2/work HOME=3D/wrkdirs/usr/ports= /dns/knot2/work TMPDIR=3D"/tmp" SHELL=3D/bin/sh CONFIG_SHELL=3D/bin/sh CONF= IG_SITE=3D/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=3D262144 --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=3D/wrkdirs/usr/ports/dns/knot2/work XDG_CONFIG_HOME=3D/wrkdi= rs/usr/ports/dns/knot2/work HOME=3D/wrkdirs/usr/ports/dns/knot2/work TMPDI= R=3D"/tmp" NO_PIE=3Dyes SHELL=3D/bin/sh NO_LINT=3DYES PREFIX=3D/usr/local = LOCALBASE=3D/usr/local LIBDIR=3D"/usr/lib" CC=3D"cc" CFLAGS=3D"-O2 -pipe = -fstack-protector -fno-strict-aliasing" CPP=3D"cpp" CPPFLAGS=3D"" LDFLAG= S=3D" -fstack-protector" LIBS=3D"" CXX=3D"c++" CXXFLAGS=3D"-O2 -pipe -fsta= ck-protector -fno-strict-aliasing " MANPREFIX=3D"/usr/local" BSD_INSTALL_P= ROGRAM=3D"install -s -m 555" BSD_INSTALL_LIB=3D"install -s -m 444" BSD_= INSTALL_SCRIPT=3D"install -m 555" BSD_INSTALL_DATA=3D"install -m 0644" = BSD_INSTALL_MAN=3D"install -m 444" --End MAKE_ENV-- --PLIST_SUB-- OSREL=3D10.1 PREFIX=3D%D LOCALBASE=3D/usr/local RESETPREFIX=3D/usr/local PORTDOCS=3D"" PORTEXAMPLES=3D"" LIB32DIR=3Dlib DOCSDIR=3D"share/doc/knot" EXAMPLESDIR=3D"share/examples/knot" DATADIR=3D"share/knot" WWWDIR=3D"www/knot" ETCDIR=3D"etc/knot" --End PLIST_SUB-- --SUB_LIST-- USERS=3D"knot" GROUPS=3D"knot" PREFIX=3D/usr/local LOCALBASE=3D/usr/local DATADIR=3D/usr/local/share/knot DOCSDIR=3D/usr/local/share/doc/knot EXAMPLESDIR=3D/usr/local/share/examples/knot WWWDIR=3D/usr/local/www/knot ETCDIR=3D/usr/local/etc/knot --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=3Dyes BATCH=3Dyes WRKDIRPREFIX=3D/wrkdirs PORTSDIR=3D/usr/ports PACKAGES=3D/packages DISTDIR=3D/distfiles ---End make.conf--- =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> License GPLv3 accepted by the user =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> knot2-2.0.0 depends on file: /usr/local/sbin/pkg - not found =3D=3D=3D> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports= -mgmt/pkg =3D=3D=3D> Installing existing package /packages/All/pkg-1.5.4.txz [101amd64-default] Installing pkg-1.5.4... [101amd64-default] Extracting pkg-1.5.4: .......... done Message for pkg-1.5.4: If you are upgrading from the old package format, first run: # pkg2ng =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> License GPLv3 accepted by the user =3D=3D=3D> knot2-2.0.0 depends on file: /usr/local/sbin/pkg - found =3D=3D=3D> Fetching all distfiles required by knot2-2.0.0 for building =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> License GPLv3 accepted by the user =3D=3D=3D> knot2-2.0.0 depends on file: /usr/local/sbin/pkg - found =3D=3D=3D> Fetching all distfiles required by knot2-2.0.0 for building =3D> SHA256 Checksum OK for knot-2.0.0.tar.xz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> License GPLv3 accepted by the user =3D=3D=3D> knot2-2.0.0 depends on file: /usr/local/sbin/pkg - found =3D=3D=3D> Fetching all distfiles required by knot2-2.0.0 for building =3D=3D=3D> Extracting for knot2-2.0.0 =3D> SHA256 Checksum OK for knot-2.0.0.tar.xz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Patching for knot2-2.0.0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> knot2-2.0.0 depends on executable: pkgconf - not found =3D=3D=3D> Verifying install for pkgconf in /usr/ports/devel/pkgconf =3D=3D=3D> Installing existing package /packages/All/pkgconf-0.9.11.txz [101amd64-default] Installing pkgconf-0.9.11... [101amd64-default] Extracting pkgconf-0.9.11: ....... done =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> knot2-2.0.0 depends on shared library: libfstrm.so - not found =3D=3D=3D> Verifying for libfstrm.so in /usr/ports/devel/fstrm =3D=3D=3D> Installing existing package /packages/All/fstrm-0.2.0.txz [101amd64-default] Installing fstrm-0.2.0... [101amd64-default] `-- Installing libevent2-2.0.22_1... [101amd64-default] `-- Extracting libevent2-2.0.22_1: .......... done [101amd64-default] Extracting fstrm-0.2.0: .......... done =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: libgnutls.so - not found =3D=3D=3D> Verifying for libgnutls.so in /usr/ports/security/gnutls =3D=3D=3D> Installing existing package /packages/All/gnutls-3.3.15.txz [101amd64-default] Installing gnutls-3.3.15... [101amd64-default] `-- Installing ca_root_nss-3.19.1_1... [101amd64-default] `-- Extracting ca_root_nss-3.19.1_1: ....... done [101amd64-default] `-- Installing gettext-runtime-0.19.4... [101amd64-default] | `-- Installing indexinfo-0.2.3... [101amd64-default] | `-- Extracting indexinfo-0.2.3: .... done [101amd64-default] `-- Extracting gettext-runtime-0.19.4: .......... done [101amd64-default] `-- Installing libidn-1.29... [101amd64-default] `-- Extracting libidn-1.29: .......... done [101amd64-default] `-- Installing libtasn1-4.5_1... [101amd64-default] `-- Extracting libtasn1-4.5_1: .......... done [101amd64-default] `-- Installing nettle-2.7.1... [101amd64-default] | `-- Installing gmp-5.1.3_2... [101amd64-default] | `-- Extracting gmp-5.1.3_2: .......... done [101amd64-default] `-- Extracting nettle-2.7.1: .......... done [101amd64-default] `-- Installing p11-kit-0.23.1... [101amd64-default] | `-- Installing libffi-3.2.1... [101amd64-default] | `-- Extracting libffi-3.2.1: .......... done [101amd64-default] `-- Extracting p11-kit-0.23.1: .......... done [101amd64-default] `-- Installing trousers-tddl-0.3.10_7... =3D=3D=3D> Creating users and/or groups. Creating group '_tss' with gid '601'. Creating user '_tss' with uid '601'. [101amd64-default] `-- Extracting trousers-tddl-0.3.10_7: .......... done [101amd64-default] Extracting gnutls-3.3.15: .......... done Message for ca_root_nss-3.19.1_1: ********************************* WARNING ********************************* FreeBSD does not, and can not warrant that the certification authorities whose certificates are included in this package have in any way been audited for trustworthiness or RFC 3647 compliance. Assessment and verification of trust is the complete responsibility of the system administrator. *********************************** NOTE ********************************** This package installs symlinks to support root certificates discovery by default for software that uses OpenSSL. This enables SSL Certificate Verification by client software without manual intervention. If you prefer to do this manually, replace the following symlinks with either an empty file or your site-local certificate bundle. * /etc/ssl/cert.pem * /usr/local/etc/ssl/cert.pem * /usr/local/openssl/cert.pem *************************************************************************** Message for trousers-tddl-0.3.10_7: To run tcsd automatically, add the following line to /etc/rc.conf tcsd_enable=3D"YES" You might want to edit /usr/local/etc/tcsd.conf to reflect your setup. To use TPM, add your_account to '_tss' group like following: # pw groupadd _tss -m your_account =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: libjansson.so - not fou= nd =3D=3D=3D> Verifying for libjansson.so in /usr/ports/devel/jansson =3D=3D=3D> Installing existing package /packages/All/jansson-2.7.txz [101amd64-default] Installing jansson-2.7... [101amd64-default] Extracting jansson-2.7: .......... done =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: liblmdb.so - not found =3D=3D=3D> Verifying for liblmdb.so in /usr/ports/databases/lmdb =3D=3D=3D> Installing existing package /packages/All/lmdb-0.9.14_1.txz [101amd64-default] Installing lmdb-0.9.14_1... [101amd64-default] Extracting lmdb-0.9.14_1: .......... done =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: libnettle.so - found (/= usr/local/lib/libnettle.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liburcu.so - not found =3D=3D=3D> Verifying for liburcu.so in /usr/ports/sysutils/liburcu =3D=3D=3D> Installing existing package /packages/All/liburcu-0.7.13.txz [101amd64-default] Installing liburcu-0.7.13... [101amd64-default] Extracting liburcu-0.7.13: .......... done =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D>> Recording filesystem state for prebuild... done =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> knot2-2.0.0 depends on executable: pkgconf - found =3D=3D=3D> knot2-2.0.0 depends on shared library: libfstrm.so - found (/u= sr/local/lib/libfstrm.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libgnutls.so - found (/= usr/local/lib/libgnutls.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libjansson.so - found (= /usr/local/lib/libjansson.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liblmdb.so - found (/us= r/local/lib/liblmdb.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libnettle.so - found (/= usr/local/lib/libnettle.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liburcu.so - found (/us= r/local/lib/liburcu.so) =3D=3D=3D> Configuring for knot2-2.0.0 configure: loading site script /usr/ports/Templates/config.site checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables... (cached) yes checking for style of include used by make... GNU checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables...=20 checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking whether cc understands -c and -o together... yes checking dependency style of cc... gcc3 checking how to run the C preprocessor... cpp checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for minix/config.h... (cached) no checking whether it is safe to define __EXTENSIONS__... yes checking build system type... amd64-portbld-freebsd10.1 checking host system type... amd64-portbld-freebsd10.1 checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for cc option to accept ISO C99... none needed checking for ar... ar checking the archiver (ar) interface... ar checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+=3D"... no checking how to convert amd64-portbld-freebsd10.1 file names to amd64-portb= ld-freebsd10.1 format... func_convert_file_noop checking how to convert amd64-portbld-freebsd10.1 file names to toolchain f= ormat... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... yes checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... y= es checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd10.1 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking pkg-config is at least version 0.9.0... yes checking whether C compiler has a LLVM backend... yes checking for gnutls... yes checking for jansson... yes checking for sendmmsg... no checking whether C compiler accepts "-fpredictive-commoning"... no checking for systemd... no checking for liburcu... yes checking for library containing urcu_init... no checking for library containing mdb_env_open... no checking for library containing mdb_env_open... no checking for library containing mdb_env_open... -llmdb checking lmdb.h usability... yes checking lmdb.h presence... yes checking for lmdb.h... yes checking for library containing pow... -lm checking for library containing pthread_create... -lpthread checking for library containing dlopen... none required checking for library containing clock_gettime... none required checking for library containing capng_apply... no checking for sys/types.h... (cached) yes checking for netinet/in.h... (cached) yes checking for arpa/nameser.h... (cached) yes checking for netdb.h... (cached) yes checking for resolv.h... (cached) yes checking for cap-ng.h... no checking for netinet/in_systm.h... yes checking for pthread_np.h... yes checking for signal.h... (cached) yes checking for sys/select.h... (cached) yes checking for sys/time.h... (cached) yes checking for sys/wait.h... (cached) yes checking for sys/uio.h... yes checking for inline... inline checking for pid_t... (cached) yes checking for size_t... (cached) yes checking for ssize_t... (cached) yes checking for clock_gettime... (cached) yes checking for gettimeofday... (cached) yes checking for fgetln... yes checking for getline... (cached) yes checking for madvise... yes checking for malloc_trim... no checking for poll... (cached) yes checking for posix_memalign... yes checking for pthread_setaffinity_np... yes checking for regcomp... yes checking for select... (cached) yes checking for setgroups... (cached) yes checking for strlcat... (cached) yes checking for strlcpy... (cached) yes checking for initgroups... yes checking for simple visibility declarations... yes checking for sphinx-build... no checking for sphinx-build-3... no configure: WARNING: Could not find the 'sphinx-build' executable, you will = be unable to regenerate documentation. checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating src/libknot.pc config.status: creating src/dnssec/libdnssec.pc config.status: creating src/zscanner/libzscanner.pc config.status: creating Makefile config.status: creating doc/Makefile config.status: creating samples/Makefile config.status: creating libtap/Makefile config.status: creating src/Makefile config.status: creating tests/Makefile config.status: creating tests-fuzz/Makefile config.status: creating src/dnstap/Makefile config.status: creating src/zscanner/Makefile config.status: creating src/dnssec/Makefile config.status: creating src/dnssec/tests/Makefile config.status: creating src/dnssec/utils/Makefile config.status: creating src/config.h config.status: executing depfiles commands config.status: executing libtool commands knot 2.0.0 Target: freebsd10.1 amd64 Compiler: cc CFLAGS: -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit=20 LIBS: -lpthread -lm -fstack-protector LibURCU: -L/usr/local/lib -lurcu -I/usr/local/include =20 GnuTLS: -lgnutls -L/usr/local/lib -lnettle -I/usr/local/include/p11= -kit-1 -I/usr/local/include =20 Jansson: -L/usr/local/lib -ljansson -I/usr/local/include =20 LMDB: shared -L/usr/local/lib -llmdb -I/usr/local/include Prefix: /usr/local Run dir: /var/run/knot Storage dir: /var/db/knot Config dir: ${prefix}/etc/knot Knot DNS libraries: yes Knot DNS daemon: yes Knot DNS utils: yes Knot DNS documentation: yes Fast zone parser: no Utilities with IDN: no Systemd integration: no Dnstap support: no Code coverage: no Bash completions: no Continue with 'make' command =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Building for knot2-2.0.0 Making all in libtap Making all in src --- all --- /usr/bin/make all-recursive --- all-recursive --- Making all in zscanner --- scanner.c --- cp ./scanner.c.t0 scanner.c --- all --- /usr/bin/make all-am --- libzscanner_la-error.lo --- --- libzscanner_la-functions.lo --- --- libzscanner_la-scanner.lo --- --- libzscanner_la-error.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I../../src -fvisibility=3Dhidde= n -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dforma= t-security -Werror=3Dimplicit -MT libzscanner_la-error.lo -MD -MP -MF .deps= /libzscanner_la-error.Tpo -c -o libzscanner_la-error.lo `test -f 'error.c' = || echo './'`error.c --- libzscanner_la-functions.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I../../src -fvisibility=3Dhidde= n -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dforma= t-security -Werror=3Dimplicit -MT libzscanner_la-functions.lo -MD -MP -MF .= deps/libzscanner_la-functions.Tpo -c -o libzscanner_la-functions.lo `test -= f 'functions.c' || echo './'`functions.c --- libzscanner_la-scanner.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I../../src -fvisibility=3Dhidde= n -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dforma= t-security -Werror=3Dimplicit -MT libzscanner_la-scanner.lo -MD -MP -MF .de= ps/libzscanner_la-scanner.Tpo -c -o libzscanner_la-scanner.lo `test -f 'sca= nner.c' || echo './'`scanner.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libzs= canner_la-scanner.lo -MD -MP -MF .deps/libzscanner_la-scanner.Tpo -c scanne= r.c -fPIC -DPIC -o .libs/libzscanner_la-scanner.o --- libzscanner_la-functions.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libzs= canner_la-functions.lo -MD -MP -MF .deps/libzscanner_la-functions.Tpo -c fu= nctions.c -fPIC -DPIC -o .libs/libzscanner_la-functions.o --- libzscanner_la-error.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libzs= canner_la-error.lo -MD -MP -MF .deps/libzscanner_la-error.Tpo -c error.c -= fPIC -DPIC -o .libs/libzscanner_la-error.o libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libzs= canner_la-error.lo -MD -MP -MF .deps/libzscanner_la-error.Tpo -c error.c -o= libzscanner_la-error.o >/dev/null 2>&1 --- libzscanner_la-functions.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libzs= canner_la-functions.lo -MD -MP -MF .deps/libzscanner_la-functions.Tpo -c fu= nctions.c -o libzscanner_la-functions.o >/dev/null 2>&1 --- libzscanner_la-error.lo --- mv -f .deps/libzscanner_la-error.Tpo .deps/libzscanner_la-error.Plo --- libzscanner_la-functions.lo --- mv -f .deps/libzscanner_la-functions.Tpo .deps/libzscanner_la-functions.Plo --- libzscanner_la-scanner.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libzs= canner_la-scanner.lo -MD -MP -MF .deps/libzscanner_la-scanner.Tpo -c scanne= r.c -o libzscanner_la-scanner.o >/dev/null 2>&1 mv -f .deps/libzscanner_la-scanner.Tpo .deps/libzscanner_la-scanner.Plo --- libzscanner.la --- /bin/sh ../../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -version-info 0:1:0 -fstack-protector -o libzscanner.la -rpath /u= sr/local/lib libzscanner_la-error.lo libzscanner_la-functions.lo libzscan= ner_la-scanner.lo -lpthread -lm libtool: link: cc -shared -fPIC -DPIC .libs/libzscanner_la-error.o .libs/= libzscanner_la-functions.o .libs/libzscanner_la-scanner.o -lpthread -lm = -O2 -fstack-protector -fstack-protector -Wl,-soname -Wl,libzscanner.so.0 = -o .libs/libzscanner.so.0.0.1 libtool: link: (cd ".libs" && rm -f "libzscanner.so.0" && ln -s "libzscanne= r.so.0.0.1" "libzscanner.so.0") libtool: link: (cd ".libs" && rm -f "libzscanner.so" && ln -s "libzscanner.= so.0.0.1" "libzscanner.so") libtool: link: ar cru .libs/libzscanner.a libzscanner_la-error.o libzscann= er_la-functions.o libzscanner_la-scanner.o libtool: link: ranlib .libs/libzscanner.a libtool: link: ( cd ".libs" && rm -f "libzscanner.la" && ln -s "../libzscan= ner.la" "libzscanner.la" ) Making all in dnssec --- all-recursive --- Making all in . --- lib/.dirstamp --- --- lib/.deps/.dirstamp --- --- lib/event/action/.dirstamp --- --- lib/event/action/.deps/.dirstamp --- --- lib/event/.dirstamp --- --- lib/event/.deps/.dirstamp --- --- lib/kasp/dir/.dirstamp --- --- lib/kasp/dir/.deps/.dirstamp --- --- lib/kasp/.dirstamp --- --- lib/kasp/.deps/.dirstamp --- --- lib/key/.dirstamp --- --- lib/key/.deps/.dirstamp --- --- lib/keystore/.dirstamp --- --- lib/keystore/.deps/.dirstamp --- --- lib/list/.dirstamp --- --- lib/list/.deps/.dirstamp --- --- lib/nsec/.dirstamp --- --- lib/nsec/.deps/.dirstamp --- --- lib/sign/.dirstamp --- --- lib/sign/.deps/.dirstamp --- --- shared/.dirstamp --- --- shared/.deps/.dirstamp --- --- lib/libdnssec_la-binary.lo --- --- lib/libdnssec_la-crypto.lo --- --- lib/libdnssec_la-error.lo --- --- lib/libdnssec_la-binary.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/libdnssec_la-binary.lo -MD -MP -MF lib/.deps/libdnssec_la-binary.Tpo -c = -o lib/libdnssec_la-binary.lo `test -f 'lib/binary.c' || echo './'`lib/bina= ry.c --- lib/libdnssec_la-crypto.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/libdnssec_la-crypto.lo -MD -MP -MF lib/.deps/libdnssec_la-crypto.Tpo -c = -o lib/libdnssec_la-crypto.lo `test -f 'lib/crypto.c' || echo './'`lib/cryp= to.c --- lib/libdnssec_la-error.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/libdnssec_la-error.lo -MD -MP -MF lib/.deps/libdnssec_la-error.Tpo -c -o= lib/libdnssec_la-error.lo `test -f 'lib/error.c' || echo './'`lib/error.c --- lib/event/action/libdnssec_la-initial_key.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/event/action/libdnssec_la-initial_key.lo -MD -MP -MF lib/event/action/.d= eps/libdnssec_la-initial_key.Tpo -c -o lib/event/action/libdnssec_la-initia= l_key.lo `test -f 'lib/event/action/initial_key.c' || echo './'`lib/event/a= ction/initial_key.c --- lib/libdnssec_la-binary.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-binary.lo -MD -MP -MF lib/.deps= /libdnssec_la-binary.Tpo -c lib/binary.c -fPIC -DPIC -o lib/.libs/libdnsse= c_la-binary.o --- lib/libdnssec_la-error.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-error.lo -MD -MP -MF lib/.deps/= libdnssec_la-error.Tpo -c lib/error.c -fPIC -DPIC -o lib/.libs/libdnssec_l= a-error.o --- lib/event/action/libdnssec_la-initial_key.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/event/action/libdnssec_la-initial_key.lo -MD= -MP -MF lib/event/action/.deps/libdnssec_la-initial_key.Tpo -c lib/event/a= ction/initial_key.c -fPIC -DPIC -o lib/event/action/.libs/libdnssec_la-ini= tial_key.o --- lib/libdnssec_la-crypto.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-crypto.lo -MD -MP -MF lib/.deps= /libdnssec_la-crypto.Tpo -c lib/crypto.c -fPIC -DPIC -o lib/.libs/libdnsse= c_la-crypto.o --- lib/libdnssec_la-error.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-error.lo -MD -MP -MF lib/.deps/= libdnssec_la-error.Tpo -c lib/error.c -o lib/libdnssec_la-error.o >/dev/nul= l 2>&1 --- lib/libdnssec_la-crypto.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibi