From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 1 22:40:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D6A4A0C for ; Sun, 1 Dec 2013 22: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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E8F991E06 for ; Sun, 1 Dec 2013 22:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB1Me0Y4045325 for ; Sun, 1 Dec 2013 22:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB1Me0xi045324; Sun, 1 Dec 2013 22:40:00 GMT (envelope-from gnats) Resent-Date: Sun, 1 Dec 2013 22:40:00 GMT Resent-Message-Id: <201312012240.rB1Me0xi045324@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Rodrigo Osorio Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 91B989DE for ; Sun, 1 Dec 2013 22:37:25 +0000 (UTC) Received: from smtp4-g21.free.fr (smtp4-g21.free.fr [IPv6:2a01:e0c:1:1599::13]) by mx1.freebsd.org (Postfix) with ESMTP id 290DD1DF3 for ; Sun, 1 Dec 2013 22:37:23 +0000 (UTC) Received: from q.workgroup (unknown [82.227.164.69]) by smtp4-g21.free.fr (Postfix) with ESMTP id ED9D44C814D for ; Sun, 1 Dec 2013 23:37:18 +0100 (CET) Received: from q.workgroup (localhost [127.0.0.1]) by q.workgroup (8.14.7/8.14.7) with ESMTP id rB1MabQH086519 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Sun, 1 Dec 2013 23:36:37 +0100 (CET) (envelope-from rodrigo@q.workgroup) Received: (from root@localhost) by q.workgroup (8.14.7/8.14.7/Submit) id rB1MabAd086518; Sun, 1 Dec 2013 23:36:37 +0100 (CET) (envelope-from rodrigo) Message-Id: <201312012236.rB1MabAd086518@q.workgroup> Date: Sun, 1 Dec 2013 23:36:37 +0100 (CET) From: Rodrigo Osorio To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/184422: www/dfileserver fix stage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list Reply-To: Rodrigo Osorio List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Dec 2013 22:40:01 -0000 >Number: 184422 >Category: ports >Synopsis: www/dfileserver fix stage >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Dec 01 22:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Rodrigo Osorio >Release: FreeBSD 10.0-BETA3 i386 >Organization: >Environment: System: FreeBSD q 10.0-BETA3 FreeBSD 10.0-BETA3 #0 r257580: Sun Nov 3 21:15:32 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386 >Description: Fix dfileserver port for staging - remove no_stage - Add licence - Add an alternative WWW for the port >How-To-Repeat: >Fix: --- dfileserver.diff begins here --- Index: Makefile =================================================================== --- Makefile (revision 335354) +++ Makefile (working copy) @@ -10,11 +10,12 @@ MAINTAINER= rodrigo@bebik.net COMMENT= Compact webserver designed to make sharing files easy +LICENSE= BSD + PLIST_FILES= bin/dfileserver WRKSRC= ${WRKDIR}/${PORTNAME} -NO_STAGE= yes post-patch: ${REINPLACE_CMD} 's,g++,${CXX},;s,$$GCCFLAGS,${CXXFLAGS},; \ s,strip,${STRIP_CMD},' ${WRKSRC}/build.sh @@ -24,6 +25,6 @@ ${SETENV} ${MAKE_ENV} ./build.sh) do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/DFileServer.x86 ${PREFIX}/bin/dfileserver + ${INSTALL_PROGRAM} ${WRKSRC}/DFileServer.x86 ${STAGEDIR}${PREFIX}/bin/dfileserver .include Index: pkg-descr =================================================================== --- pkg-descr (revision 335354) +++ pkg-descr (working copy) @@ -3,6 +3,6 @@ By default, it shares whatever folder it was executed from on port 2000. While simple, a good deal of flexibility is exposed when you read the -documentation and look at the optional configuration files, provided -separately here: -http://harpy.soarwitheagles.net/~dashy/DFileServer-1.1.2-documentation.tar.gz +documentation and look at the optional configuration files. + +WWW: http://www.bebik.net/doku.php?id=software:dfileserver Service unavailableService unavailableService unavailable --- dfileserver.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: