Bug 184055 - [maintainer update] net/xrdp, net/xrdp-devel: Fix mistake in options
Summary: [maintainer update] net/xrdp, net/xrdp-devel: Fix mistake in options
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Steve Wills
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-11-18 16:40 UTC by Koichiro Iwao
Modified: 2013-12-17 16:00 UTC (History)
0 users

See Also:


Attachments
patch.txt (968 bytes, text/plain)
2013-11-18 16:47 UTC, Koichiro Iwao
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Koichiro Iwao freebsd_committer freebsd_triage 2013-11-18 16:40:00 UTC
- Fix mistake in options: KEYMAP options are at least 0 choise, not 1
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-11-18 16:40:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->swills

swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Comment 2 Koichiro Iwao freebsd_committer freebsd_triage 2013-11-18 16:47:54 UTC

-- 
`whois vmeta.jp | nkf -w`
meta <meta@vmeta.jp>
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-12-17 15:50:08 UTC
Author: swills
Date: Tue Dec 17 15:50:00 2013
New Revision: 336734
URL: http://svnweb.freebsd.org/changeset/ports/336734

Log:
  - Fix mistake in options: KEYMAP options are at least 0 choise, not 1
  
  PR:		ports/184055
  Submitted by:	Koichiro IWAO <meta+ports@vmeta.jp>

Modified:
  head/net/xrdp-devel/Makefile
  head/net/xrdp/Makefile

Modified: head/net/xrdp-devel/Makefile
==============================================================================
--- head/net/xrdp-devel/Makefile	Tue Dec 17 15:00:17 2013	(r336733)
+++ head/net/xrdp-devel/Makefile	Tue Dec 17 15:50:00 2013	(r336734)
@@ -39,8 +39,8 @@ LIB_DEPENDS+=	jpeg:${PORTSDIR}/graphics/
 
 OPTIONS_DEFINE=	DEBUG SOUND
 OPTIONS_DEFAULT=	TIGERVNC JP106
-OPTIONS_MULTI=	KEYMAP
-OPTIONS_MULTI_KEYMAP= JP106
+OPTIONS_GROUP=	KEYMAP
+OPTIONS_GROUP_KEYMAP= JP106
 OPTIONS_RADIO=	XVNC
 OPTIONS_RADIO_XVNC=	REALVNC TIGERVNC TIGHTVNC TRIDIAVNC
 REALVNC_DESC=	Use RealVNC

Modified: head/net/xrdp/Makefile
==============================================================================
--- head/net/xrdp/Makefile	Tue Dec 17 15:00:17 2013	(r336733)
+++ head/net/xrdp/Makefile	Tue Dec 17 15:50:00 2013	(r336734)
@@ -36,8 +36,8 @@ BUILD_DEPENDS+=	freerdp>=1.0.2:${PORTSDI
 
 OPTIONS_DEFINE=	DEBUG
 OPTIONS_DEFAULT=	JP106 TIGERVNC
-OPTIONS_MULTI=	KEYMAP
-OPTIONS_MULTI_KEYMAP= JP106
+OPTIONS_GROUP=	KEYMAP
+OPTIONS_GROUP_KEYMAP= JP106
 OPTIONS_RADIO=	XVNC
 OPTIONS_RADIO_XVNC=	REALVNC TIGERVNC TIGHTVNC TRIDIAVNC
 REALVNC_DESC=	Use RealVNC
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 4 Steve Wills freebsd_committer freebsd_triage 2013-12-17 15:50:17 UTC
State Changed
From-To: open->closed

Committed. Thanks!