From owner-freebsd-apache@FreeBSD.ORG Sun Apr 6 17:40:01 2014 Return-Path: Delivered-To: apache@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B7708D76 for ; Sun, 6 Apr 2014 17:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 A585C3E9 for ; Sun, 6 Apr 2014 17:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s36He1NV069218 for ; Sun, 6 Apr 2014 17:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s36He1fT069217; Sun, 6 Apr 2014 17:40:01 GMT (envelope-from gnats) Date: Sun, 6 Apr 2014 17:40:01 GMT Message-Id: <201404061740.s36He1fT069217@freefall.freebsd.org> To: apache@FreeBSD.org From: olli hauer Subject: Re: ports/188171: devel/subversion package broken X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: olli hauer List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2014 17:40:01 -0000 The following reply was made to PR ports/188171; it has been noted by GNATS. From: olli hauer To: bug-followup@FreeBSD.org, jonas.bulow@gmail.com Cc: Subject: Re: ports/188171: devel/subversion package broken Date: Sun, 06 Apr 2014 19:35:38 +0200 In case your FreeBSD-10 is not customized (src.conf) there is even a quicker way the rebuild the system from source. 1. get the 10-RELEASE base.txz 2. remove schg flags with this command or with the script [1] You may receive an error for /var/empty because it also has schg set but thats OK. #> find / -type f -flags schg | xargs chflags noschg 3. cleanup freebsd-update #> rm -rf /var/db/freebsd-update/* 4. update the system to 10-RELEASE #> tar --exclude=^./etc --unlink -xpf base.txz -C / 5. reboot 6. freebsd-update fetch && freebsd-update install [1] remove schg flags #!/bin/sh SCHGDIRS="bin lib libexec sbin usr/bin usr/lib usr/libexec usr/sbin var/empty" echo "remove schg flag from" for DIR in ${SCHGDIRS}; do find ${DESTDIR:-/}${DIR}/ -flags schg -maxdepth 1 | xargs chflags -v noschg done I update all my systems this way since FreeBSD-5 beta with some extra steps for /etc the kernel and ZFS in case it is used on the boot partition. Please report back when your issue is fixed, then we can close the PR. -- Regards, olli