88ebbf7724
last stable release. - add an explicit note about AllowOverride, you get some strange problems if this is set incorrectly which robert@ ran into. ok ajacoutot@
41 lines
994 B
Makefile
41 lines
994 B
Makefile
# $OpenBSD: Makefile,v 1.19 2009/10/13 17:00:59 sthen Exp $
|
|
|
|
COMMENT = imap4 webmail client
|
|
|
|
#DISTNAME = roundcubemail-0.3-stable
|
|
#PKGNAME = ${DISTNAME:S/-stable//}
|
|
DISTNAME = roundcubemail-0.3.0.3038
|
|
CATEGORIES = mail www
|
|
HOMEPAGE = http://www.roundcube.net/
|
|
|
|
MAINTAINER = Stuart Henderson <sthen@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
#MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=roundcubemail/}
|
|
# svn export
|
|
MASTER_SITES = http://spacehopper.org/mirrors/
|
|
|
|
NO_BUILD = Yes
|
|
NO_REGRESS = Yes
|
|
PKG_ARCH = *
|
|
|
|
PREFIX = /var/www
|
|
INSTDIR = ${PREFIX}/roundcubemail
|
|
SUBST_VARS = INSTDIR
|
|
|
|
RUN_DEPENDS = :php5-core-*:www/php5/core \
|
|
:php5-mbstring-*:www/php5/extensions,-mbstring
|
|
|
|
do-install:
|
|
cp -Rp ${WRKDIST} ${INSTDIR}
|
|
mv ${INSTDIR}/config/mimetypes.php ${INSTDIR}/config/mimetypes.php.dist
|
|
chown -R ${SHAREOWN}:${SHAREGRP} ${INSTDIR}
|
|
find ${INSTDIR} -name \*.orig -exec rm -f {} \;
|
|
|
|
.include <bsd.port.mk>
|