Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 May 2015 13:08:05 +0000 (UTC)
From:      Bartek Rutkowski <robak@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r386149 - in head/devel/rlwrap: . files
Message-ID:  <201505121308.t4CD85vP055980@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: robak
Date: Tue May 12 13:08:04 2015
New Revision: 386149
URL: https://svnweb.freebsd.org/changeset/ports/386149

Log:
  devel/rlwrap: update 0.37 -> 0.42
  
  - Convert to use GH
  
  PR:		199155
  Submitted by:	Danilo G. Baio <dbaio@bsd.com.br>
  Approved by:	Martinko <gamato@users.sf.net> (maintainer)

Added:
  head/devel/rlwrap/files/patch-configure.ac   (contents, props changed)
Modified:
  head/devel/rlwrap/Makefile
  head/devel/rlwrap/distinfo

Modified: head/devel/rlwrap/Makefile
==============================================================================
--- head/devel/rlwrap/Makefile	Tue May 12 12:50:56 2015	(r386148)
+++ head/devel/rlwrap/Makefile	Tue May 12 13:08:04 2015	(r386149)
@@ -2,26 +2,27 @@
 # $FreeBSD$
 
 PORTNAME=	rlwrap
-PORTVERSION=	0.37
+PORTVERSION=	0.42
+DISTVERSIONPREFIX=	v
 CATEGORIES=	devel
-MASTER_SITES=	http://utopia.knoware.nl/~hlub/uck/rlwrap/ \
-		${MASTER_SITE_LOCAL} \
-		http://dryice.name/computer/FreeBSD/distfiles/
-MASTER_SITE_SUBDIR=	dryice
 
 MAINTAINER=	gamato@users.sf.net
 COMMENT=	Readline wrapper
 
-USES=		readline
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	hanslub42
+GH_PROJECT=	${PORTNAME}
+
+USES=		readline autoreconf
 GNU_CONFIGURE=	yes
 
 PORTDOCS=	AUTHORS BUGS NEWS PLEA README TODO
 
 OPTIONS_DEFINE=	DOCS
 
-post-patch:	.SILENT
-	${REINPLACE_CMD} 's|/dev/ptmx|${NONEXISTENT}|' ${WRKSRC}/configure
-
 post-install:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 .for i in ${PORTDOCS}

Modified: head/devel/rlwrap/distinfo
==============================================================================
--- head/devel/rlwrap/distinfo	Tue May 12 12:50:56 2015	(r386148)
+++ head/devel/rlwrap/distinfo	Tue May 12 13:08:04 2015	(r386149)
@@ -1,2 +1,2 @@
-SHA256 (rlwrap-0.37.tar.gz) = 8403a2c184a33ee293a30637afd1362e7dbe0ee642c33b54b2fca68162498bbd
-SIZE (rlwrap-0.37.tar.gz) = 251438
+SHA256 (hanslub42-rlwrap-v0.42_GH0.tar.gz) = fff56c24341f0c717cf3a8f0ebbf2cba415b1952e1591168ca69ed13638b20f3
+SIZE (hanslub42-rlwrap-v0.42_GH0.tar.gz) = 139838

Added: head/devel/rlwrap/files/patch-configure.ac
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rlwrap/files/patch-configure.ac	Tue May 12 13:08:04 2015	(r386149)
@@ -0,0 +1,20 @@
+--- configure.ac.orig	2014-11-14 14:48:11 UTC
++++ configure.ac
+@@ -212,7 +212,7 @@ AC_CACHE_CHECK(for pty/tty type, ptyttyl
+     AC_CHECK_HEADERS([pty.h])    
+  else if test x$ac_cv_func__getpty = xyes; then
+     ptyttylib_cv_ptys=SGI4
+- else if test -c /dev/ttyp20 -a ! -c /dev/ptmx; then 
++ else if test -c /dev/ttyp20 -a ! -c /nonexistent; then 
+    ptyttylib_cv_ptys=SCO
+  else if test -c /dev/ptym/clone; then
+     ptyttylib_cv_ptys=HPUX
+@@ -222,7 +222,7 @@ AC_CACHE_CHECK(for pty/tty type, ptyttyl
+     ptyttylib_cv_ptys=PTC
+  else if test -c /dev/ptc -a -d /dev/pts; then
+     ptyttylib_cv_ptys=PTC
+- else if test -c /dev/ptmx -a -c /dev/pts/0; then
++ else if test -c /nonexistent -a -c /dev/pts/0; then
+     ptyttylib_cv_ptys=STREAMS
+  else case "$host_os" in
+          *cygwin*) ptyttylib_cv_ptys=STREAMS ;;



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