0b4cb4ff83
(See http://www.mantisbt.org/forums/viewtopic.php?f=3&t=4146 for details) Fix found by Mischa Diehm.
38 lines
807 B
Makefile
38 lines
807 B
Makefile
# $OpenBSD: Makefile,v 1.10 2008/12/23 10:51:02 mbalmer Exp $
|
|
|
|
COMMENT= web based bug tracking
|
|
|
|
V= 1.1.6
|
|
DISTNAME= mantisbt-${V}
|
|
PKGNAME= mantis-${V}p1
|
|
CATEGORIES= www
|
|
HOMEPAGE= http://www.mantisbt.org/
|
|
|
|
MAINTAINER= Marc Balmer <mbalmer@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mantisbt/}
|
|
|
|
NO_BUILD= Yes
|
|
NO_REGRESS= Yes
|
|
PKG_ARCH= *
|
|
|
|
PREFIX= /var/www
|
|
INSTDIR= /var/www/mantis
|
|
SUBST_VARS= INSTDIR
|
|
|
|
RUN_DEPENDS= ::mail/femail,-chroot
|
|
|
|
do-install:
|
|
@-test ! -d ${PREFIX}/mantis && mkdir ${PREFIX}/mantis
|
|
@cd ${WRKDIST}; tar cf - . | (cd ${PREFIX}/mantis; tar xf -)
|
|
@echo "<?php \$$g_placeholder = 'yes'; ?>" > \
|
|
${PREFIX}/mantis/config_inc.php.placeholder
|
|
|
|
.include <bsd.port.mk>
|