From owner-svn-ports-head@FreeBSD.ORG Thu Mar 5 04:29:57 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 848549E1; Thu, 5 Mar 2015 04:29:57 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 557F57A9; Thu, 5 Mar 2015 04:29:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t254Tv2g096060; Thu, 5 Mar 2015 04:29:57 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t254Tud5096058; Thu, 5 Mar 2015 04:29:56 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201503050429.t254Tud5096058@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 5 Mar 2015 04:29:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r380476 - in head/editors/xed: . 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.18-1 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: Thu, 05 Mar 2015 04:29:57 -0000 Author: amdmi3 Date: Thu Mar 5 04:29:56 2015 New Revision: 380476 URL: https://svnweb.freebsd.org/changeset/ports/380476 QAT: https://qat.redports.org/buildarchive/r380476/ Log: - Simplify MASTER_SITES - Add LICENSE - Fix references to STAGEDIR MFH: 2015Q1 Added: head/editors/xed/files/ head/editors/xed/files/patch-Imakefile (contents, props changed) Modified: head/editors/xed/Makefile Modified: head/editors/xed/Makefile ============================================================================== --- head/editors/xed/Makefile Thu Mar 5 04:12:57 2015 (r380475) +++ head/editors/xed/Makefile Thu Mar 5 04:29:56 2015 (r380476) @@ -3,19 +3,24 @@ PORTNAME= xed PORTVERSION= 1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= editors -MASTER_SITES= ${MASTER_SITE_XCONTRIB} -MASTER_SITE_SUBDIR= editors +MASTER_SITES= XCONTRIB/editors DISTNAME= ${PORTNAME}${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Text editor for X +LICENSE= MIT + USES= imake tar:Z USE_XORG= xaw +MAKE_ARGS= BINDIR=${PREFIX}/bin \ + LIBDIR=${PREFIX}/lib/X11 \ + MANPATH=${PREFIX}/man pre-build: @${FIND} ${WRKSRC} -type f | ${XARGS} ${REINPLACE_CMD} -e \ 's|extern char \*malloc();|/\* extern char \*malloc(); \*/|g' + .include Added: head/editors/xed/files/patch-Imakefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/xed/files/patch-Imakefile Thu Mar 5 04:29:56 2015 (r380476) @@ -0,0 +1,19 @@ +--- Imakefile.orig 2015-03-05 04:17:04.000000000 +0300 ++++ Imakefile 2015-03-05 04:18:12.000000000 +0300 +@@ -1,4 +1,4 @@ +- DEFINES = -DHELPFILE=\"$(DESTDIR)${LIBDIR}/xed/xed.help\" ++ DEFINES = -DHELPFILE=\"${LIBDIR}/xed/xed.help\" + + XCOMM Please check for some aditional DEFINES + XCOMM -DSCROLLBREAK -DUSEGETCWD -DNORENAME -DUSEDIRENT -DUSE_CSH_SYSTEM +@@ -30,8 +30,8 @@ + + xed.help: helpfile + $(RM) $@ +- cat helpfile | sed "s@@$(DESTDIR)$(LIBDIR)/xed/xed.commands@g" | \ +- sed "s@@$(DESTDIR)$(XAPPLOADDIR)/Xed@g" > xed.help ++ cat helpfile | sed "s@@$(LIBDIR)/xed/xed.commands@g" | \ ++ sed "s@@$(XAPPLOADDIR)/Xed@g" > xed.help + + + InstallNonExecFile(xed.help,$(LIBDIR)/xed)