From owner-svn-ports-head@FreeBSD.ORG Sun Jan 26 14:07:35 2014 Return-Path: Delivered-To: svn-ports-head@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 35184ED; Sun, 26 Jan 2014 14:07:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 21CB719D2; Sun, 26 Jan 2014 14:07:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0QE7Z9x062173; Sun, 26 Jan 2014 14:07:35 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0QE7Ykr062167; Sun, 26 Jan 2014 14:07:34 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401261407.s0QE7Ykr062167@svn.freebsd.org> From: Martin Wilke Date: Sun, 26 Jan 2014 14:07:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341177 - in head/x11-fm: tdfsb xcruise xplore X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Jan 2014 14:07:35 -0000 Author: miwi Date: Sun Jan 26 14:07:33 2014 New Revision: 341177 URL: http://svnweb.freebsd.org/changeset/ports/341177 QAT: https://qat.redports.org/buildarchive/r341177/ Log: - Stage support Modified: head/x11-fm/tdfsb/Makefile head/x11-fm/xcruise/Makefile head/x11-fm/xcruise/pkg-plist head/x11-fm/xplore/Makefile head/x11-fm/xplore/pkg-plist Modified: head/x11-fm/tdfsb/Makefile ============================================================================== --- head/x11-fm/tdfsb/Makefile Sun Jan 26 14:06:33 2014 (r341176) +++ head/x11-fm/tdfsb/Makefile Sun Jan 26 14:07:33 2014 (r341177) @@ -29,7 +29,6 @@ LDFLAGS+= `${LOCALBASE}/bin/pkgconf --li `${LOCALBASE}/bin/smpeg-config --libs` \ -L ${LOCALBASE}/lib -lGLU -lglut -lm -NO_STAGE= yes .include do-build: @@ -37,10 +36,10 @@ do-build: -o ${PORTNAME} ${LDFLAGS}) do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin .if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .endif .include Modified: head/x11-fm/xcruise/Makefile ============================================================================== --- head/x11-fm/xcruise/Makefile Sun Jan 26 14:06:33 2014 (r341176) +++ head/x11-fm/xcruise/Makefile Sun Jan 26 14:07:33 2014 (r341177) @@ -3,7 +3,7 @@ PORTNAME= xcruiser PORTVERSION= 0.30 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-fm MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -12,11 +12,9 @@ COMMENT= Navigate through a three-dimens USES= imake USE_XORG= ice sm x11 xaw xext xmu xpm xt -MAN1= xcruiser.1 -NO_STAGE= yes post-install: - @${MKDIR} ${PREFIX}/share/doc/xcruise - ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xcruise + @${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/xcruise + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${PREFIX}/share/doc/xcruise .include Modified: head/x11-fm/xcruise/pkg-plist ============================================================================== --- head/x11-fm/xcruise/pkg-plist Sun Jan 26 14:06:33 2014 (r341176) +++ head/x11-fm/xcruise/pkg-plist Sun Jan 26 14:07:33 2014 (r341177) @@ -1,4 +1,5 @@ bin/xcruiser share/doc/xcruise/README lib/X11/app-defaults/XCruiser +man/man1/xcruiser.1.gz @dirrm share/doc/xcruise Modified: head/x11-fm/xplore/Makefile ============================================================================== --- head/x11-fm/xplore/Makefile Sun Jan 26 14:06:33 2014 (r341176) +++ head/x11-fm/xplore/Makefile Sun Jan 26 14:07:33 2014 (r341177) @@ -3,7 +3,7 @@ PORTNAME= xplore PORTVERSION= 1.2a -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-fm MASTER_SITES= http://www.musikwissenschaft.uni-mainz.de/~ag/${PORTNAME}/ @@ -17,9 +17,6 @@ USE_XORG= xpm MAKE_JOBS_UNSAFE=yes CFLAGS+= -Wno-return-type -MAN1= xplore.1 xploretype.1 - -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's| read| read dummy|g' ${WRKSRC}/system.xplorerc Modified: head/x11-fm/xplore/pkg-plist ============================================================================== --- head/x11-fm/xplore/pkg-plist Sun Jan 26 14:06:33 2014 (r341176) +++ head/x11-fm/xplore/pkg-plist Sun Jan 26 14:07:33 2014 (r341177) @@ -333,6 +333,8 @@ lib/X11/xplore/schemes/Xplore.ad lib/X11/xplore/setup lib/X11/xplore/startup lib/X11/xplore/system.xplorerc +man/man1/xplore.1.gz +man/man1/xploretype.1.gz @dirrm lib/X11/xplore/shelf/Trash @dirrm lib/X11/xplore/shelf/Programs @dirrm lib/X11/xplore/shelf/Desk