summaryrefslogblamecommitdiff
path: root/www/marc-search/Makefile
blob: d3cdd19c328e628cc081f960535a34ebd090505f (plain) (tree)
1
2
3
4
5
6




                                                       
                                                     






                                                                       
                                    


















                                                                                                 

                                                                                   
                 




























                                                                          
# New ports collection makefile for:	marc-search
# Version required:	4.3
# Date created:		25 November 1998
# Whom:			Sheldon Hearn <axl@iafrica.com>
#
# $Id: Makefile,v 1.3 1999/08/23 04:23:55 mharo Exp $
#

DISTNAME=	marc-search.4.3
PKGNAME=	marc-search-4.3
CATEGORIES=	www
MASTER_SITES=	http://www.oac.uci.edu/indiv/ehood/contrib/marc-search/

MAINTAINER=	sheldonh@FreeBSD.org

RUN_DEPENDS=	mhonarc:${PORTSDIR}/www/mhonarc \
		${PREFIX}/lib/perl5/site_perl/${PERL_VER}/CGI_Lite.pm:${PORTSDIR}/www/p5-CGI_Lite

USE_PERL5=	YES
NO_BUILD=	YES
NO_PACKAGE=	requires site-specific configuration at build time
IS_INTERACTIVE= requires site-specific configuration at build time

# You must tailor these variables to match your sites config
# PUB_HTML=public_html		# subdir name for "~user" usage
# DOCROOT=${PREFIX}/www/data	# web page hierarchy root
# SCRIPTDIR=/cgi-bin		# script directory name
HOSTNAME!= hostname

MARC_LIBS= 	Marc.pm Marc/Form.pm Marc/Search.pm

do-configure:
.if !defined(PUB_HTML) || !defined(DOCROOT) || !defined(SCRIPTDIR)
	@${ECHO_MSG} "You must tailor the port Makefile and set PUB_HTML, DOCROOT,"
	@${ECHO_MSG} "and SCRIPTDIR to match your site configuration."
	@${FALSE}
.else
	${CP} ${FILESDIR}/marc-search.conf ${WRKSRC}/
	for i in marc-search.cgi marc-search.conf ; do \
		${SED} -e 's#XX_PERL_PATH_XX#${PERL}#' \
	    	-e 's#XX_PERL_VER_XX#${PERL_VER}#' \
	    	-e 's#XX_PREFIX_XX#${PREFIX}#' \
	    	-e 's#XX_PUB_HTML_XX#${PUB_HTML}#' \
	    	-e 's#XX_HOSTNAME_XX#${HOSTNAME}#' \
	    	-e 's#XX_DOCROOT_XX#${DOCROOT}#' \
	    	-e 's#XX_SCRIPTDIR_XX#${SCRIPTDIR}#' \
	    	< ${WRKSRC}/$${i} \
	    	> ${WRKSRC}/$${i}.tmp \
	    	&& ${MV} ${WRKSRC}/$${i}.tmp ${WRKSRC}/$${i} ; \
	done
.endif

do-install:
	${MKDIR} ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/Marc \
	    ${PREFIX}/share/doc/marc-search
.for i in ${MARC_LIBS}
	${INSTALL_DATA} ${WRKSRC}/${i} \
		${PREFIX}/lib/perl5/site_perl/${PERL_VER}/${i}
.endfor
	${INSTALL_SCRIPT} ${WRKSRC}/marc-search.cgi ${PREFIX}/www/cgi-bin
	${INSTALL_DATA} ${WRKSRC}/marc-search.conf ${PREFIX}/etc
	${INSTALL_DATA} ${WRKSRC}/docs/marc-search.html ${PREFIX}/www/data
	${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/marc-search/

.include <bsd.port.mk>