blob: 39781cc106d838ecad2138109fececa9cc0fff28 (
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
44
45
46
47
48
49
50
51
|
# Ports collection Makefile for: Grail
# Date created: 1/11/1999
# Whom: nectar@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= grail
PORTVERSION= 0.6
PORTREVISION= 1
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR=grail
EXTRACT_SUFX= .tgz
MAINTAINER= ports@freebsd.org
COMMENT= An extensible Internet browser written entirely in Python
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter
IGNORE= "Doesn't seem to work with Python 2.x"
USE_PYTHON= yes
GRAILSUBDIR= share/grail
GRAILDIR= ${PREFIX}/${GRAILSUBDIR}
DIRS_CMD= ${SED} -e '/^@dirrm/bok' -e 'D' -e ':ok' -e 's,@dirrm ,,' < ${PLIST}
FILES_CMD= ${SED} -e '/^share\//bok' -e 'D' -e ':ok' -e 's,${GRAILSUBDIR}/,,' < ${PLIST}
PYTHON?=python
do-build:
${PYTHON} -u -c 'from compileall import compile_dir; compile_dir("${WRKSRC}")'
do-install:
@${ECHO_MSG} === Creating directories...
@for dir in `${DIRS_CMD}`; do \
${ECHO_MSG} ${PREFIX}/$$dir; \
${MKDIR} ${PREFIX}/$$dir; \
done
@${ECHO_MSG} === Installing grail files ...
@for file in `${FILES_CMD}`; do \
${ECHO_MSG} ${GRAILDIR}/$$file; \
${INSTALL_DATA} ${WRKSRC}/$$file ${GRAILDIR}/$$file; \
done
@${ECHO_MSG} === Installing grail script...
@${SED} 's,%%GRAILDIR%%,${GRAILDIR},g' <${FILESDIR}/grail > \
${WRKDIR}/grail.tmp
@${INSTALL_SCRIPT} ${WRKDIR}/grail.tmp ${PREFIX}/bin/grail
@${RM} ${WRKDIR}/grail.tmp
.include <bsd.port.mk>
|