From owner-svn-ports-head@freebsd.org Mon Sep 7 07:00:10 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2ED289CC739; Mon, 7 Sep 2015 07:00:10 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.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 07572F04; Mon, 7 Sep 2015 07:00:10 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t87709OC092429; Mon, 7 Sep 2015 07:00:09 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t87709vF092427; Mon, 7 Sep 2015 07:00:09 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201509070700.t87709vF092427@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 7 Sep 2015 07:00:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r396249 - head/editors/mp 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.20 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: Mon, 07 Sep 2015 07:00:10 -0000 Author: danfe Date: Mon Sep 7 07:00:08 2015 New Revision: 396249 URL: https://svnweb.freebsd.org/changeset/ports/396249 Log: - Stop lying about the port being broken on Tier-2 architectures - Move OPTIONS block lower in the Makefile where it's typically found - Augment port description text while I'm here Tested on: flame (sparc64), eris (ia64), local Mac mini G4 (powerpc) Modified: head/editors/mp/Makefile head/editors/mp/pkg-descr Modified: head/editors/mp/Makefile ============================================================================== --- head/editors/mp/Makefile Mon Sep 7 06:25:10 2015 (r396248) +++ head/editors/mp/Makefile Mon Sep 7 07:00:08 2015 (r396249) @@ -11,12 +11,6 @@ COMMENT= Programming text editor LICENSE= GPLv2 # (or later) -OPTIONS_DEFINE= NLS PCRE DOCS -OPTIONS_RADIO= GUI -OPTIONS_RADIO_GUI= GTK3 GTK2 QT4 -OPTIONS_DEFAULT= PCRE -OPTIONS_SUB= yes - USES= iconv ncurses HAS_CONFIGURE= yes CONFIGURE_SCRIPT= config.sh @@ -24,6 +18,12 @@ CONFIGURE_ARGS= --prefix=${PREFIX} --wit DATADIR= ${PREFIX}/share/mp-5 +OPTIONS_DEFINE= NLS PCRE DOCS +OPTIONS_RADIO= GUI +OPTIONS_RADIO_GUI= GTK3 GTK2 QT4 +OPTIONS_DEFAULT= PCRE +OPTIONS_SUB= yes + NLS_USES= gettext NLS_CONFIGURE_WITH= gettext @@ -55,12 +55,6 @@ CONFOPT_GTK= 0 QT_NONSTANDARD= yes .endif -.include - -.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" -BROKEN= Does not compile on ia64, powerpc, or sparc64 -.endif - post-patch: @${REINPLACE_CMD} -e \ 's| +.include Modified: head/editors/mp/pkg-descr ============================================================================== --- head/editors/mp/pkg-descr Mon Sep 7 06:25:10 2015 (r396248) +++ head/editors/mp/pkg-descr Mon Sep 7 07:00:08 2015 (r396249) @@ -1,4 +1,13 @@ -MP is an easy to use programmer's text editor. It supports automatic -syntax highlighting, macros and ctags and also has online help. +Minimum Profit is an easy to use programmer's text editor. Its features: + + - Syntax highlighting for many popular languages and file formats + - Fully scriptable using a C-like scripting language + - Unlimited undo levels; configurable keys, menus, and colors + - Can edit multiple files at the same time (shared copy/paste buffer) + - Creative use of tags, symbol name auto-completion + - Intelligent, context-dependent help system + - Automatic indentation, word wrapping, internal grep, etc. + - Spellchecking support (via the ispell package) + - Multilingual; has complete Unicode support WWW: http://www.triptico.com/software/mp.html