From owner-svn-ports-head@freebsd.org Fri Oct 16 21:25:38 2015 Return-Path: Delivered-To: svn-ports-head@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 10C13A1778B; Fri, 16 Oct 2015 21:25:38 +0000 (UTC) (envelope-from marino@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 CC265192C; Fri, 16 Oct 2015 21:25:37 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9GLPaGO082611; Fri, 16 Oct 2015 21:25:36 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9GLPapv082610; Fri, 16 Oct 2015 21:25:36 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510162125.t9GLPapv082610@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 16 Oct 2015 21:25:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399523 - head/devel/autogen X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Oct 2015 21:25:38 -0000 Author: marino Date: Fri Oct 16 21:25:36 2015 New Revision: 399523 URL: https://svnweb.freebsd.org/changeset/ports/399523 Log: devel/autogen: Fix stage-qa failure The autoopts-config script needs bash, so it's been added as a run dependences and the shebang wsa fixed. While here, add the GPLv2 LICENSE and improve the COMMENT. PR: 203672 Submitted by: Yuri (rawbw.com) Modified: head/devel/autogen/Makefile Modified: head/devel/autogen/Makefile ============================================================================== --- head/devel/autogen/Makefile Fri Oct 16 21:17:01 2015 (r399522) +++ head/devel/autogen/Makefile Fri Oct 16 21:25:36 2015 (r399523) @@ -3,15 +3,18 @@ PORTNAME= autogen PORTVERSION= 5.18.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= GNU/${PORTNAME}/rel${PORTVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:DEFAULT,gnu MAINTAINER= ports@FreeBSD.org -COMMENT= The Automated Program Generator +COMMENT= Tool designed to simplify the creation and maintenance of programs + +LICENSE= GPLv2 BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash +RUN_DEPENDS= bash:${PORTSDIR}/shells/bash LIB_DEPENDS= libguile-2.0.so:${PORTSDIR}/lang/guile2 USES= gmake libtool pathfix perl5 pkgconfig shebangfix tar:xz @@ -19,7 +22,7 @@ USE_PERL5= build USE_GNOME= libxml2 GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-libguile=yes --with-libxml2=yes \ - --datadir=${PREFIX}/share + --datadir=${PREFIX}/share CONFIG_SHELL=${PREFIX}/bin/bash USE_LDCONFIG= yes SHEBANG_FILES= autoopts/tpl/*.pl INSTALL_TARGET= install-strip