Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Jul 2014 17:37:42 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r360062 - in head: archivers/zutils audio/emms deskutils/planner.el devel/magit/files devel/xtla editors/slime graphics/gauche-gl graphics/geomview mail/vm math/ess math/eukleides news/...
Message-ID:  <201407011737.s61Hbgpt098373@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Tue Jul  1 17:37:41 2014
New Revision: 360062
URL: http://svnweb.freebsd.org/changeset/ports/360062
QAT: https://qat.redports.org/buildarchive/r360062/

Log:
  Make those ports more likely to build with texinfo from ports
  
  With hat:	portmgr

Modified:
  head/archivers/zutils/Makefile
  head/audio/emms/Makefile
  head/deskutils/planner.el/Makefile
  head/devel/magit/files/patch-Makefile
  head/devel/xtla/Makefile
  head/editors/slime/Makefile
  head/graphics/gauche-gl/Makefile
  head/graphics/geomview/Makefile
  head/mail/vm/Makefile
  head/math/ess/Makefile
  head/math/eukleides/Makefile
  head/news/husky-bsopack/Makefile
  head/news/husky-hpt/Makefile
  head/news/husky-hpucode/Makefile
  head/news/husky-htick/Makefile
  head/news/husky-msged/Makefile

Modified: head/archivers/zutils/Makefile
==============================================================================
--- head/archivers/zutils/Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/archivers/zutils/Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -28,6 +28,6 @@ post-patch:
 	@${REINPLACE_CMD} '24,27d' ${WRKSRC}/configure
 
 post-install:
-	@${RM} ${STAGEDIR}${PREFIX}/info/dir
+	@-${RM} ${STAGEDIR}${PREFIX}/info/dir
 
 .include <bsd.port.mk>

Modified: head/audio/emms/Makefile
==============================================================================
--- head/audio/emms/Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/audio/emms/Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -12,7 +12,7 @@ COMMENT=	The Emacs Multi-Media System
 
 LICENSE=	GPLv3
 
-USES=		gmake
+USES=		gmake makeinfo
 USE_EMACS=	yes
 MAKE_ENV+=	EMMSPREFIX=${STAGEDIR}${PREFIX} LOCALBASE=${LOCALBASE} \
 		EMACS_SITE_LISPDIR=${EMACS_SITE_LISPDIR}

Modified: head/deskutils/planner.el/Makefile
==============================================================================
--- head/deskutils/planner.el/Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/deskutils/planner.el/Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -14,7 +14,7 @@ MAINTAINER=	ports@FreeBSD.org
 COMMENT=	PlannerMode is an organizer and day planner for Emacs
 
 USE_EMACS=	yes
-USES=	gmake
+USES=		gmake makeinfo
 
 BUILD_DEPENDS+=	${LOCALBASE}/${EMACS_SITE_LISPDIR}/muse/muse.el:${PORTSDIR}/textproc/muse
 

Modified: head/devel/magit/files/patch-Makefile
==============================================================================
--- head/devel/magit/files/patch-Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/devel/magit/files/patch-Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -1,5 +1,5 @@
---- Makefile.orig	2012-09-25 04:41:19.000000000 +0900
-+++ Makefile	2013-09-21 23:01:04.000000000 +0900
+--- ./Makefile.orig	2012-09-24 19:41:19.000000000 +0000
++++ ./Makefile	2014-07-01 17:24:01.000000000 +0000
 @@ -1,5 +1,5 @@
  VERSION=1.2.0
 -EMACS=emacs
@@ -7,7 +7,16 @@
  PREFIX=/usr/local
  SYSCONFDIR=/etc
  ELS=magit.el magit-svn.el magit-topgit.el magit-stgit.el magit-key-mode.el magit-bisect.el magit-wip.el rebase-mode.el magit-blame.el
-@@ -64,15 +64,13 @@
+@@ -40,7 +40,7 @@
+ magit.elc: magit.el
+ 
+ dir: magit.info
+-	install-info --dir=$@ $<
++	touch $@
+ 
+ magit.info:
+ 
+@@ -64,15 +64,12 @@
  install: install_core install_docs
  
  install_core: core
@@ -24,7 +33,6 @@
 -	install-info --info-dir=$(DESTDIR)$(PREFIX)/share/info $(DESTDIR)$(PREFIX)/share/info/magit.info
 +	mkdir -p $(INFODIR)
 +	install -m 644 magit.info $(INFODIR)
-+	install-info --info-dir=$(INFODIR) $(INFODIR)/magit.info
  
  install_contrib: contrib
  	mkdir -p $(DESTDIR)$(PREFIX)/share/emacs/site-lisp

Modified: head/devel/xtla/Makefile
==============================================================================
--- head/devel/xtla/Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/devel/xtla/Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -23,7 +23,7 @@ LISPDIR=	${STAGEDIR}${PREFIX}/${EMACS_VE
 
 HAS_CONFIGURE=	yes
 CONFIGURE_ARGS+=	--with-emacs=${EMACS_NAME} --with-diff=gdiff --with-patch=gpatch
-USES=		gmake
+USES=		gmake makeinfo
 INFO=		xtla
 
 OPTIONS_DEFINE=	DOCS

Modified: head/editors/slime/Makefile
==============================================================================
--- head/editors/slime/Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/editors/slime/Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -9,7 +9,7 @@ MASTER_SITES=	https://codeload.github.co
 MAINTAINER=	joe@thrallingpenguin.com
 COMMENT=	Superior Lisp Interaction Mode for Emacs
 
-USES=		gmake
+USES=		gmake makeinfo
 USE_EMACS=	yes
 
 SLIME_LISPDIR=	${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/slime

Modified: head/graphics/gauche-gl/Makefile
==============================================================================
--- head/graphics/gauche-gl/Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/graphics/gauche-gl/Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -26,6 +26,7 @@ DOCSDIR=	${PREFIX}/share/doc/gauche/${PO
 PLIST_SUB=	TARGET="${CONFIGURE_TARGET}"
 
 .if !defined(NOPORTDOCS)
+USES=		makeinfo
 INFO=		gauche-gl-refe gauche-gl-refj
 .endif
 

Modified: head/graphics/geomview/Makefile
==============================================================================
--- head/graphics/geomview/Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/graphics/geomview/Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -13,7 +13,7 @@ LICENSE=	LGPL21
 
 RUN_DEPENDS=	xdg-open:${PORTSDIR}/devel/xdg-utils
 
-USES=		libtool motif tar:bzip2
+USES=		libtool makeinfo motif tar:bzip2
 USE_GL=		glu
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-htmlbrowser=xdg-open --with-pdfviewer=xdg-open \
@@ -38,7 +38,7 @@ post-patch:
 		${WRKSRC}/src/bin/geomview/x11/Makefile.in
 
 post-build:
-	@(cd ${WRKSRC}/doc && /usr/bin/makeinfo --no-split --no-validate \
+	@(cd ${WRKSRC}/doc && makeinfo --no-split --no-validate \
 		-o geomview.info geomview.texi)
 
 post-install:

Modified: head/mail/vm/Makefile
==============================================================================
--- head/mail/vm/Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/mail/vm/Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -14,7 +14,7 @@ COMMENT=	A mail reader running inside Em
 
 GNU_CONFIGURE=	yes
 USE_EMACS=	yes
-USES=		gmake
+USES=		gmake makeinfo
 CONFIGURE_ARGS+=	--with-emacs=${EMACS_CMD}
 MAKE_ARGS=	prefix=${PREFIX} \
 		lispdir=${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} \

Modified: head/math/ess/Makefile
==============================================================================
--- head/math/ess/Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/math/ess/Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -23,6 +23,7 @@ OPTIONS_DEFINE=	DOCS
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MDOCS}
+USES+=	makeinfo
 INFO=	ess
 .endif
 

Modified: head/math/eukleides/Makefile
==============================================================================
--- head/math/eukleides/Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/math/eukleides/Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -23,6 +23,7 @@ OPTIONS_DEFINE=	DOCS
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MDOCS}
+USES+=		makeinfo
 USE_TEX+=	pdftex:build
 PORTDOCS=	de.pdf fr.pdf
 INFO=		eukleides

Modified: head/news/husky-bsopack/Makefile
==============================================================================
--- head/news/husky-bsopack/Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/news/husky-bsopack/Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -13,6 +13,7 @@ COMMENT=	Binkley-style outbound netmail 
 
 LIB_DEPENDS=	fidoconfig.0:${PORTSDIR}/news/husky-fidoconf
 
+USES=		makeinfo
 MAN1=		bsopack.1
 MANCOMPRESSED=	yes
 INFO=		bsopack

Modified: head/news/husky-hpt/Makefile
==============================================================================
--- head/news/husky-hpt/Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/news/husky-hpt/Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -22,6 +22,7 @@ USES=		perl5
 MAKE_ARGS+=	PERL=0
 .endif
 
+USES+=		makeinfo
 MAN1=		hpt.1 hptlink.1 hpttree.1 txt2pkt.1
 MANCOMPRESSED=	yes
 INFO=		hpt

Modified: head/news/husky-hpucode/Makefile
==============================================================================
--- head/news/husky-hpucode/Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/news/husky-hpucode/Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -13,6 +13,7 @@ COMMENT=	Scan for UUE in message base
 
 LIB_DEPENDS=	fidoconfig.0:${PORTSDIR}/news/husky-fidoconf
 
+USES=		makeinfo
 MAN1=		hpucode.1
 MANCOMPRESSED=	yes
 INFO=		hpucode

Modified: head/news/husky-htick/Makefile
==============================================================================
--- head/news/husky-htick/Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/news/husky-htick/Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -15,6 +15,7 @@ LIB_DEPENDS=	fidoconfig.0:${PORTSDIR}/ne
 
 CONFLICTS=	husky-htick-devel-[0-9]*
 
+USES=		makeinfo
 MAN1=		htick.1
 INFO=		htick
 

Modified: head/news/husky-msged/Makefile
==============================================================================
--- head/news/husky-msged/Makefile	Tue Jul  1 17:32:18 2014	(r360061)
+++ head/news/husky-msged/Makefile	Tue Jul  1 17:37:41 2014	(r360062)
@@ -14,6 +14,7 @@ COMMENT=	Msged/TE (full-featured FTN mai
 
 LIB_DEPENDS=	libfidoconfig.so:${PORTSDIR}/news/husky-fidoconf
 
+USES=		makeinfo
 MAKE_ARGS=	MSGEDCFG="\\\"~/.msged\\\""
 
 INFO=		msged



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