diff options
author | bouyer <bouyer> | 2003-03-17 17:58:13 +0000 |
---|---|---|
committer | bouyer <bouyer> | 2003-03-17 17:58:13 +0000 |
commit | 171d1c931aed15f38f2e11547f0e322a8f76b2db (patch) | |
tree | f8af5d55e4c8032db5afca165f38fb5857fb7f58 /www/horde/Makefile | |
parent | 765d2ce7b9c60280557727f068c8f3fe290e0872 (diff) | |
download | pkgsrc-171d1c931aed15f38f2e11547f0e322a8f76b2db.tar.gz |
Update to 2.2.1.
Main changes since 2.0:
Add various translations
Add a preference to allow maintenance ops with no confirmation screen
Allow setting the number of columns in the summary screen as a user
preference (Brian Keifer <brian@valinor.net>).
Make text, icon, or both menus a user preference
Add a Horde preferences screen, and a preference to refresh the summary
screen.
Add text/enriched MIME_Viewer
See share/doc/horde/CHANGES for details.
Diffstat (limited to 'www/horde/Makefile')
-rw-r--r-- | www/horde/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/www/horde/Makefile b/www/horde/Makefile index 4ccf1bc4482..e68b653ca94 100644 --- a/www/horde/Makefile +++ b/www/horde/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.21 2003/01/28 22:04:29 jlam Exp $ +# $NetBSD: Makefile,v 1.22 2003/03/17 17:58:13 bouyer Exp $ -DISTNAME= horde-2.0 +DISTNAME= horde-2.2.1 CATEGORIES= www MASTER_SITES= ftp://ftp.horde.org/pub/horde/tarballs/ @@ -24,7 +24,7 @@ MESSAGE_SUBST+= HORDEDIR=${HORDEDIR} PKG_SYSCONFSUBDIR?= httpd -USE_PKGINSTALL= yes +USE_PKGINSTALL= YES CONF_FILES= ${EGDIR}/horde.conf ${PKG_SYSCONFDIR}/horde.conf CONF_FILES+= ${HORDEDIR}/config/horde.php.dist ${HORDEDIR}/config/horde.php SUPPORT_FILES+= ${HORDEDIR}/config/html.php.dist ${HORDEDIR}/config/html.php @@ -32,14 +32,15 @@ SUPPORT_FILES+= ${HORDEDIR}/config/lang.php.dist ${HORDEDIR}/config/lang.php SUPPORT_FILES+= ${HORDEDIR}/config/mime_drivers.php.dist ${HORDEDIR}/config/mime_drivers.php SUPPORT_FILES+= ${HORDEDIR}/config/mime_mapping.php.dist ${HORDEDIR}/config/mime_mapping.php SUPPORT_FILES+= ${HORDEDIR}/config/motd.php.dist ${HORDEDIR}/config/motd.php +SUPPORT_FILES+= ${HORDEDIR}/config/prefs.php.dist ${HORDEDIR}/config/prefs.php SUPPORT_FILES+= ${HORDEDIR}/config/registry.php.dist ${HORDEDIR}/config/registry.php post-patch: cd ${WRKSRC}/scripts; \ - for file in mime_mapping/convert.pl; do \ - ${MV} -f $${file} $${file}.orig; \ + for FILE in mime_mapping/convert.pl; do \ + ${MV} -f $${FILE} $${FILE}.orig; \ ${SED} -e "s|/usr/bin/perl|${PERL5}|g" \ - $${file}.orig > $${file}; \ + $${FILE}.orig > $${FILE}; \ done do-build: @@ -56,7 +57,7 @@ do-install: ${INSTALL_DATA_DIR} ${DOCDIR} ${EGDIR} ${HORDEDIR} cd ${WRKDIR}; ${INSTALL_DATA} horde.conf.dist ${EGDIR}/horde.conf cd ${WRKSRC}; ${INSTALL_DATA} COPYING README docs/* ${DOCDIR} - cd ${WRKSRC}; ${CP} -R admin graphics lib locale po scripts templates util ${HORDEDIR} + cd ${WRKSRC}; ${CP} -R graphics lib locale po scripts templates util ${HORDEDIR} ${INSTALL_DATA_DIR} ${HORDEDIR}/config cd ${WRKSRC}/config; ${INSTALL_DATA} * ${HORDEDIR}/config cd ${WRKSRC}; ${INSTALL_DATA} *.php ${HORDEDIR} |