summaryrefslogtreecommitdiff
path: root/www/openacs/Makefile
blob: a05f42e0d51ab04a0729ef5311e889a5d612d2d4 (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
# $NetBSD: Makefile,v 1.1.1.1 2001/07/19 04:35:59 cjones Exp $
#

DISTNAME=		openacs-3.2.5
CATEGORIES=		www
MASTER_SITES=		# none
EXTRACT_SUFX=		.tgz

MAINTAINER=		cjones@netbsd.org
HOMEPAGE=		http://www.openacs.org/
COMMENT=		TCL-based web programming environment

# Would also work with AOLServer, but there's no package for that.
DEPENDS+=		ap-aolserver-1.1:../../www/ap-aolserver
DEPENDS+=		postgresql-lib>=7:../../databases/postgresql-lib
DEPENDS+=		ImageMagick:../../graphics/ImageMagick
DEPENDS+=		unzip:../../archivers/unzip
BUILD_DEPENDS+=		postgresql-client>=7:../../databases/postgresql-client

NO_CONFIGURE=	# set
NO_BUILD=	# set

MESSAGE_SUBST+=	PREFIX=${PREFIX}

do-fetch:
	@if [ ! -f ${DISTDIR}/${DISTFILES} ] ; then \
		${ECHO} "Please fetch ${DISTFILES} into ${DISTDIR}" ; \
		${ECHO} "from ${HOMEPAGE} ." ; \
		exit 1 ; \
	fi

SEDFILES=${WRKSRC}/parameters/ad.tcl \
	${WRKSRC}/bin/aolserver-errors.pl \
	${WRKSRC}/bin/queue-message.pl \
	${WRKSRC}/www/doc/sql/postgres.sql \
	${WRKDIR}/install-openacs
# This intentionally clobbers the .orig files:
post-patch:
	${CP} ${FILESDIR}/install-openacs ${WRKDIR}
	for F in ${SEDFILES} ; do \
	${SED} "s,@PREFIX@,${PREFIX},g" < $$F > $$F.orig ; \
	${MV} $$F.orig $$F ; \
	done

do-install:
	${INSTALL_SCRIPT} ${WRKDIR}/install-openacs ${PREFIX}/bin
	${INSTALL_DATA_DIR} ${PREFIX}/share/openacs
	( cd ${WRKSRC} ; tar cf - . ) | \
		( cd ${PREFIX}/share/openacs ; tar xf - )

.include "../../mk/bsd.pkg.mk"