Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Sep 2015 07:00:09 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r396249 - head/editors/mp
Message-ID:  <201509070700.t87709vF092427@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.pre.mk>
-
-.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
-BROKEN=		Does not compile on ia64, powerpc, or sparc64
-.endif
-
 post-patch:
 	@${REINPLACE_CMD} -e \
 		's|<ncursesw/|<| ; \
@@ -101,4 +95,4 @@ do-install:
 	(cd ${WRKSRC} && ${INSTALL_DATA} ${doc} ${STAGEDIR}${DOCSDIR})
 .endfor
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509070700.t87709vF092427>