svn commit: r378055 - head/devel/fossil

Baptiste Daroussin bapt at FreeBSD.org
Wed Jan 28 11:05:04 UTC 2015


Author: bapt
Date: Wed Jan 28 11:05:03 2015
New Revision: 378055
URL: https://svnweb.freebsd.org/changeset/ports/378055
QAT: https://qat.redports.org/buildarchive/r378055/

Log:
  Explicitly disable lineedit
  
  This prevent from magically linking to libreadline if already installed,
  which would:
  1/ alter the license
  2/ prevent static compilation
  
  PR:		197153
  Reported by:	Nikola Kolev <koue at chaosophia.net>

Modified:
  head/devel/fossil/Makefile

Modified: head/devel/fossil/Makefile
==============================================================================
--- head/devel/fossil/Makefile	Wed Jan 28 11:03:45 2015	(r378054)
+++ head/devel/fossil/Makefile	Wed Jan 28 11:05:03 2015	(r378055)
@@ -3,6 +3,7 @@
 PORTNAME=	fossil
 PORTVERSION=	1.30
 DISTVERSION=	20150119112900
+PORTREVISION=	1
 PORTEPOCH=	2
 CATEGORIES=	devel www
 MASTER_SITES=	http://www.fossil-scm.org/download/
@@ -21,6 +22,8 @@ CONFIGURE_ARGS=	--prefix=${PREFIX}
 USE_OPENSSL=	yes
 USE_RC_SUBR=	fossil
 
+CONFIGURE_ARGS=	--disable-lineedit
+
 OPTIONS_DEFINE=	JSON FUSE STATIC
 OPTIONS_DEFAULT=	JSON
 JSON_DESC=	JSON API support


More information about the svn-ports-all mailing list