blob: 8b0a0a08b8cc3da3870a8b6256a5a31db48fab38 (
plain) (
blame)
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
|
# Ports collection Makefile for: Grail
# Version required: 0.4
# Date created: 6/11/1998
# Whom: n@nectar.com
#
# $Id: Makefile,v 1.4 1998/08/07 23:56:48 asami Exp $
#
DISTNAME= grail-0.4
CATEGORIES= www
MASTER_SITES= http://monty.cnri.reston.va.us/grail-0.4/source/
DISTFILES= grail_04.tgz
MAINTAINER= nectar@freebsd.org
BUILD_DEPENDS= python:${PORTSDIR}/lang/python
RUN_DEPENDS= python:${PORTSDIR}/lang/python
LIB_DEPENDS= tk80.1:${PORTSDIR}/x11-toolkits/tk80
CHOWN?=chown
CHMOD?=chmod
FIND?=find
PYTHON?=python
GREP?=grep
SED?=sed
do-build:
${PYTHON} -c 'from compileall import compile_dir; compile_dir("${WRKSRC}")'
do-install:
${MKDIR} ${PREFIX}/lib/grail
(cd ${WRKSRC} && tar --exclude '.cvsignore' \
--exclude '*.orig' -cf - .) | \
(cd ${PREFIX}/lib/grail && tar xf -)
(sed 's|%%PREFIX%%|${PREFIX}|g' <${FILESDIR}/grail \
>${WRKDIR}/grail.$$$$ && \
${INSTALL_SCRIPT} ${WRKDIR}/grail.$$$$ ${PREFIX}/bin/grail && \
${RM} ${WRKDIR}/grail.$$$$)
${CHOWN} -R ${BINOWN}.${BINGRP} ${PREFIX}/lib/grail
${FIND} ${PREFIX}/lib/grail -type f -exec ${CHMOD} 0444 {} \;
${FIND} ${PREFIX}/lib/grail -type d -exec ${CHMOD} 0555 {} \;
.include <bsd.port.mk>
|