From owner-svn-ports-all@freebsd.org Sat Dec 17 12:57:04 2016 Return-Path: Delivered-To: svn-ports-all@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 C14C5C844DB; Sat, 17 Dec 2016 12:57:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 8A0DF18E5; Sat, 17 Dec 2016 12:57:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBHCv3p7077642; Sat, 17 Dec 2016 12:57:03 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBHCv3cj077641; Sat, 17 Dec 2016 12:57:03 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201612171257.uBHCv3cj077641@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 17 Dec 2016 12:57:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428732 - head/devel/editline X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Dec 2016 12:57:04 -0000 Author: sunpoet Date: Sat Dec 17 12:57:03 2016 New Revision: 428732 URL: https://svnweb.freebsd.org/changeset/ports/428732 Log: - Add LICENSE_FILE - Silence patch message - Cosmetic change Modified: head/devel/editline/Makefile Modified: head/devel/editline/Makefile ============================================================================== --- head/devel/editline/Makefile Sat Dec 17 12:56:56 2016 (r428731) +++ head/devel/editline/Makefile Sat Dec 17 12:57:03 2016 (r428732) @@ -8,20 +8,21 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Minix editline: A free readline() for UNIX LICENSE= BSD4CLAUSE - -USES= autoreconf libtool ncurses pathfix -USE_GITHUB= yes -GH_ACCOUNT= troglobit - -USE_LDCONFIG= yes +LICENSE_FILE= ${WRKSRC}/LICENSE GNU_CONFIGURE= yes INSTALL_TARGET= install-strip +USE_LDCONFIG= yes +USES= autoreconf libtool ncurses pathfix + PORTDOCS= * +GH_ACCOUNT= troglobit +USE_GITHUB= yes + +# Rename to libeditline.3 to avoid conflict with libedit post-patch: - # rename to libeditline.3 to avoid conflict with libedit - ${REINPLACE_CMD} 's|editline.3|lib&|' ${WRKSRC}/man/Makefile.am - cd ${WRKSRC}/man; ${MV} editline.3 libeditline.3 + @${REINPLACE_CMD} 's|editline.3|lib&|' ${WRKSRC}/man/Makefile.am + @${MV} ${WRKSRC}/man/editline.3 ${WRKSRC}/man/libeditline.3 .include