blob: f21617770d4114d89b2b190b022fefa6ffb35419 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# New ports collection makefile for: marc-search
# Version required: 4.3
# Date created: 25 November 1998
# Whom: Sheldon Hearn <axl@iafrica.com>
#
# $FreeBSD$
#
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>
|