Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 Nov 2013 22:14:45 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r333941 - head/devel/cxref
Message-ID:  <201311152214.rAFMEjpl004610@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Fri Nov 15 22:14:44 2013
New Revision: 333941
URL: http://svnweb.freebsd.org/changeset/ports/333941

Log:
  Support stage
  USE_GMAKE->USES=gmake
  Use shebangfix

Modified:
  head/devel/cxref/Makefile

Modified: head/devel/cxref/Makefile
==============================================================================
--- head/devel/cxref/Makefile	Fri Nov 15 22:13:24 2013	(r333940)
+++ head/devel/cxref/Makefile	Fri Nov 15 22:14:44 2013	(r333941)
@@ -13,18 +13,16 @@ COMMENT=	C program cross-referencing & d
 
 LICENSE=	GPLv2
 
-USE_GMAKE=	yes
+USES=		gmake shebangfix
+SHEBANG_FILES=	contrib/xrgr.pl
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--without-cxref-cpp
 ALL_TARGET=	programs
 
-MAN1=		cxref.1 cxref-query.1
-
-NO_STAGE=	yes
 post-install:
-	@${MKDIR} ${DATADIR}
-	@${INSTALL_SCRIPT} ${WRKSRC}/contrib/*.pl ${DATADIR}
-	@${INSTALL_DATA} ${WRKSRC}/contrib/*.el ${DATADIR}
-	@${INSTALL_DATA} ${WRKSRC}/contrib/README* ${DATADIR}
+	${MKDIR} ${STAGEDIR}${DATADIR}
+	${INSTALL_SCRIPT} ${WRKSRC}/contrib/*.pl ${STAGEDIR}${DATADIR}
+	${INSTALL_DATA} ${WRKSRC}/contrib/*.el ${STAGEDIR}${DATADIR}
+	${INSTALL_DATA} ${WRKSRC}/contrib/README* ${STAGEDIR}${DATADIR}
 
 .include <bsd.port.mk>



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