svn commit: r399523 - head/devel/autogen

John Marino marino at FreeBSD.org
Fri Oct 16 21:25:38 UTC 2015


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 at 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


More information about the svn-ports-all mailing list