From abc7c35911afd4aee5979a35985094a60268e6f9 Mon Sep 17 00:00:00 2001 From: roam Date: Tue, 8 Jun 2004 19:20:55 +0000 Subject: Add the PROGRAM_PREFIX option which allows installation of texi2html under a different name, e.g. ntexi2html, to avoid conflicts with similarly-named programs from other packages. PR: 62607 Submitted by: Kimura Fuyuki --- textproc/texi2html/Makefile | 17 +++++++++++++++-- textproc/texi2html/pkg-plist | 2 +- 2 files changed, 16 insertions(+), 3 deletions(-) (limited to 'textproc/texi2html') diff --git a/textproc/texi2html/Makefile b/textproc/texi2html/Makefile index f87f83d0a0bf..e5dd3be3a8f4 100644 --- a/textproc/texi2html/Makefile +++ b/textproc/texi2html/Makefile @@ -7,7 +7,7 @@ PORTNAME= texi2html PORTVERSION= 1.66 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= http://www.cvshome.org/files/70/10/ @@ -20,7 +20,20 @@ USE_AUTOCONF_VER= 253 AUTOMAKE_ARGS= -a USE_GMAKE= yes -MAN1= texi2html.1 +PROGRAM_PREFIX?= +PLIST_SUB= PROGRAM_PREFIX=${PROGRAM_PREFIX} + +.if !empty(PROGRAM_PREFIX) +CONFIGURE_ARGS= --program-prefix="${PROGRAM_PREFIX}" +.endif + +MAN1= ${PROGRAM_PREFIX}texi2html.1 INFO= texi2html +pre-everything:: + @${ECHO} "" + @${ECHO} "You can define the PROGRAM_PREFIX variable to change the name that" + @${ECHO} "the texi2html program is installed as." + @${ECHO} "" + .include diff --git a/textproc/texi2html/pkg-plist b/textproc/texi2html/pkg-plist index 3b60bb5c6aef..8bf70d3069d8 100644 --- a/textproc/texi2html/pkg-plist +++ b/textproc/texi2html/pkg-plist @@ -1,3 +1,3 @@ -bin/texi2html +bin/%%PROGRAM_PREFIX%%texi2html %%DOCSDIR%%/texi2html.html @dirrm %%DOCSDIR%% -- cgit