From owner-svn-ports-head@FreeBSD.ORG Wed Feb 19 12:52:06 2014 Return-Path: Delivered-To: svn-ports-head@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 A2DD58F8; Wed, 19 Feb 2014 12:52:06 +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 8E7C6136F; Wed, 19 Feb 2014 12:52:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1JCq6Nl033746; Wed, 19 Feb 2014 12:52:06 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1JCq61B033744; Wed, 19 Feb 2014 12:52:06 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201402191252.s1JCq61B033744@svn.freebsd.org> From: Emanuel Haupt Date: Wed, 19 Feb 2014 12:52:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345089 - in head/editors/bitedit: . 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-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: Wed, 19 Feb 2014 12:52:06 -0000 Author: ehaupt Date: Wed Feb 19 12:52:05 2014 New Revision: 345089 URL: http://svnweb.freebsd.org/changeset/ports/345089 QAT: https://qat.redports.org/buildarchive/r345089/ Log: - Support staging - Define LICENSE - Respect CFLAGS Added: head/editors/bitedit/files/ head/editors/bitedit/files/patch-Makefile (contents, props changed) Modified: head/editors/bitedit/Makefile Modified: head/editors/bitedit/Makefile ============================================================================== --- head/editors/bitedit/Makefile Wed Feb 19 12:47:06 2014 (r345088) +++ head/editors/bitedit/Makefile Wed Feb 19 12:52:05 2014 (r345089) @@ -9,16 +9,17 @@ MASTER_SITES= http://freebsdcluster.org/ MAINTAINER= mich@FreeBSD.org COMMENT= Bitedit is a simple ncurses program for editing a file +LICENSE= GPLv2 + MAKE_ARGS= CFLAGS="${CFLAGS} -DVERSION=\\\"${PORTVERSION}\\\"" DOCSDIR= ${PREFIX}/share/doc/${PORTNAME} -NO_STAGE= yes +OPTIONS_DEFINE= DOCS + do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bitedit ${PREFIX}/bin/ -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/bitedit.txt ${DOCSDIR}/bitedit.txt -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/bitedit ${STAGEDIR}${PREFIX}/bin + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/bitedit.txt ${STAGEDIR}${DOCSDIR}/bitedit.txt .include Added: head/editors/bitedit/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/bitedit/files/patch-Makefile Wed Feb 19 12:52:05 2014 (r345089) @@ -0,0 +1,13 @@ +--- ./Makefile.orig 2003-05-27 14:23:25.000000000 +0200 ++++ ./Makefile 2014-02-19 13:50:29.293943342 +0100 +@@ -9,8 +9,8 @@ + DISTFILE=bitedit-$(VERSION).tar.gz + + DEFINES=-DVERSION=\"$(VERSION)\" +-CFLAGS=-g -Wall $(DEFINES) +-LD=$(CC) -g -Wall ++CFLAGS+=-Wall $(DEFINES) ++LD=$(CC) -Wall + + + all: $(TARGETS)