ports/79216: Maintainer update: devel/flyspray 0.9.5 -> 0.9.7

Nick Hilliard nick at foobar.org
Fri Mar 25 00:30:04 UTC 2005


>Number:         79216
>Category:       ports
>Synopsis:       Maintainer update: devel/flyspray 0.9.5 -> 0.9.7
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Mar 25 00:30:03 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator:     Nick Hilliard
>Release:        FreeBSD 5.1-RELEASE-p16 i386
>Organization:
Network Ability Ltd
>Environment:
FreeBSD 5.1

>Description:

Here's an upgrade from Flyspray 0.9.5 to 0.9.7.  Lots of new features, and
prettier too!

>How-To-Repeat:
>Fix:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	flyspray
#	flyspray/files
#	flyspray/files/README.FreeBSD
#	flyspray/files/patch-sql::install-0.9.7.php
#	flyspray/Makefile
#	flyspray/distinfo
#	flyspray/pkg-deinstall
#	flyspray/pkg-descr
#	flyspray/pkg-plist
#	flyspray/pkg-message
#
echo c - flyspray
mkdir -p flyspray > /dev/null 2>&1
echo c - flyspray/files
mkdir -p flyspray/files > /dev/null 2>&1
echo x - flyspray/files/README.FreeBSD
sed 's/^X//' >flyspray/files/README.FreeBSD << 'END-of-flyspray/files/README.FreeBSD'
XConfiguration Instructions for Flyspray
X=======================================
X
X0) If you are upgrading from a previous version of flyspray, please skip to
X   the Upgrading section below.
X
X1) Create a mysql database for Flyspray to use.  Here is one way to do that,
X   from the unix/linux command line, entering your mysql root password when
X   prompted:
X
X# mysqladmin -u root -p create flyspray
X
X2) Import the Flyspray database tables into your new empty database. Here is
X   the unix/linux command line method; be sure to enter your mysql root
X   password when prompted:
X
X# mysql -u root -p flyspray < flyspray-version.sql
X
X3) Insert the following configuration command into your httpd.conf:
X
X	Alias "/flyspray/" "/usr/local/share/flyspray/"
X
X4) Point your browser to http://yourserver.com/flyspray/ and you should
X   see the Flyspray setup script!
X
X5) If you are upgrading from an old version of Flyspray, skip to note 10
X   below.  Otherwise, create youself a new user, and put this user into the
X   Admin group.
X
X6) CHANGE THE PASSWORD FOR THE super/super ACCOUNT by clicking the 'Change
X   Password' link near the top of the page.  You might like to disable the
X   account entirely, or it will appear in the list of members to be assigned
X   tasks.
X
X7) Click on the admin links to set up your Options and lists.
X
X8) Close the sample task, and begin adding your own.
X
X9) Report any bugs you find back to http://flyspray.rocks.cc/?p=Support or the
X   mailing list linked from the Flyspray homepage.
X
X
XUpgrading from Previous Versions of Flyspray
X============================================
X
XYou can upgrade from a previous version of Flyspray by doing the following:
X
X0) read /usr/local/share/doc/flyspray/UPGRADING.txt.
X
X1) back up your old flyspray task database using "mysqldump".  No, really,
X   you seriously run the risk of losing ALL your data if you don't do this.
X
X2) load http://yourserver.com/flyspray/ in your browser,  set up the
X   database access parameters and click the "continue to next page" button. 
X   DO NOT click "Continue to next page" a second time (i.e. on the page
X   which reads "Next, we are going to try setting up your database...")
X
X3) If you are upgrading from 0.9.5, you will need to upgrade your database
X   settings to 0.9.6 before going to 0.9.7.  You can do this by loading the
X   upgrade script on:
X
X      http://yourserver.com/flyspray/sql/upgrade_0.9.5_to_0.9.6-mysql.php
X
X   You will need to click "Perform upgrade now!".
X
X4) To upgrade your database structure from 0.9.6 format to 0.9.7 load the
X   following URL into your browser:
X
X      http://yourserver.com/flyspray/sql/upgrade_0.9.6_to_0.9.7.php
X
X   You will need to click "Take me to Flyspray 0.9.7 now!"
X
X5) That's it! flyspray has been upgraded to 0.9.7.  If you messed up the
X   sequence of commands, you will probably have lost data in the process,
X   and may need to re-install your database from your backup.  You did
X   take a backup, right?
END-of-flyspray/files/README.FreeBSD
echo x - flyspray/files/patch-sql::install-0.9.7.php
sed 's/^X//' >flyspray/files/patch-sql::install-0.9.7.php << 'END-of-flyspray/files/patch-sql::install-0.9.7.php'
X--- sql/install-0.9.7.php.orig	Thu Mar 24 17:26:47 2005
X+++ sql/install-0.9.7.php	Thu Mar 24 17:28:09 2005
X@@ -75,7 +75,7 @@
X // This line gets the operating system so that we know which way to put slashes in the path
X strstr( PHP_OS, "WIN") ? $slash = "\\" : $slash = "/";
X $basedir = realpath('../') . $slash;
X-$adodbpath = $basedir . 'adodb' . $slash . 'adodb.inc.php';
X+$adodbpath = '%%LOCALBASE%%' . $slash . 'adodb' . $slash . 'adodb.inc.php';
X 
X if (!isset($_SESSION['basedir'])) {
X    $_SESSION['basedir'] = $basedir;
END-of-flyspray/files/patch-sql::install-0.9.7.php
echo x - flyspray/Makefile
sed 's/^X//' >flyspray/Makefile << 'END-of-flyspray/Makefile'
X# New ports collection makefile for:	flyspray
X# Date created:			2003.08.28
X# Whom:				Nick Hilliard <nick at foobar.org>
X#
X# $FreeBSD: ports/devel/flyspray/Makefile,v 1.3 2004/08/20 20:47:01 pav Exp $
X#
X
XPORTNAME=	flyspray
XPORTVERSION=	0.9.7
XCATEGORIES=	devel
XMASTER_SITES=	http://flyspray.rocks.cc/files/
X
XMAINTAINER=	nick at foobar.org
XCOMMENT=	A simple, easy-to-use web based bug tracking system
X
XRUN_DEPENDS=	${LOCALBASE}/share/adodb/adodb.inc.php:${PORTSDIR}/databases/adodb
X
XUSE_REINPLACE=	yes
XUSE_PHP=	mysql pcre session
XWANT_PHP_WEB=	yes
X
XNO_BUILD=	yes
X
XDBDIR=		/var/db
X
XDOC_FILES=	AUTHORS.txt BUGS.txt CHANGELOG.txt INSTALL.txt README.txt \
X		TODO.txt UPGRADING.txt README.FreeBSD \
X		 licences/ADOdb.licence.txt \
X		licences/Flyspray.licence.txt \
X		licences/NuvolaIcons.licence.txt \
X		licences/jsCalendar.licence.txt \
X		licences/phpMarkdown.licence.txt
X
XFLYSPRAY_FILES=	favicon.ico header.php includes index.php lang scripts sql themes
X
Xpost-patch:
X	${CP} ${PKGDIR}/files/README.FreeBSD ${WRKSRC}/docs/
X	${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${PREFIX}/share|g;" \
X		${WRKSRC}/sql/install-0.9.7.php
X	${RM} ${WRKSRC}/sql/install-0.9.7.php.bak \
X		${WRKSRC}/sql/install-0.9.7.php.orig
X
Xdo-install:
X	${MKDIR} ${PREFIX}/share/${PORTNAME}
X	${CHMOD} 755 ${PREFIX}/share/${PORTNAME}
X	${INSTALL_DATA} ${WRKSRC}/header.php ${PREFIX}/share/${PORTNAME}/header.php-dist
X	cd ${WRKSRC} && \
X		tar cf - ${FLYSPRAY_FILES} | \
X		(cd ${PREFIX}/share/${PORTNAME} && tar -xf -)
X	${LN} -s ${DBDIR}/${PORTNAME}/attachments ${PREFIX}/share/${PORTNAME}/attachments
X	${MKDIR} ${DBDIR}/${PORTNAME}/attachments
X	${CHMOD} 750 ${DBDIR}/${PORTNAME}/attachments
X	${CHOWN} www:www ${DBDIR}/${PORTNAME}/attachments
X	${CHOWN} www:www ${PREFIX}/share/${PORTNAME}
X
Xpost-install: install-doc
X	@${CAT} ${PKGMESSAGE}
X
Xinstall-doc:
X.if !defined(NOPORTDOCS)
X	@${MKDIR} ${DOCSDIR}
X.for file in ${DOC_FILES}
X	@${INSTALL_DATA} ${WRKSRC}/docs/${file} ${DOCSDIR}
X.endfor
X.endif
X
X.include <bsd.port.mk>
END-of-flyspray/Makefile
echo x - flyspray/distinfo
sed 's/^X//' >flyspray/distinfo << 'END-of-flyspray/distinfo'
XMD5 (flyspray-0.9.7.tar.gz) = ab686864412a0fb4590560ee360bb1f5
XSIZE (flyspray-0.9.7.tar.gz) = 347443
END-of-flyspray/distinfo
echo x - flyspray/pkg-deinstall
sed 's/^X//' >flyspray/pkg-deinstall << 'END-of-flyspray/pkg-deinstall'
X#!/bin/sh
X
Xcase $2 in
XDEINSTALL)
X#	/bin/rm -f /usr/local/share/flyspray/flyspray.conf.php
X#	/bin/rmdir /usr/local/share/flyspray/
X	echo "--"
X	echo "The Flyspray program has been deleted but the bug tracking database has"
X	echo "not been touched. To delete all the bug tracking information, execute the"
X	echo "following commands:"
X	echo ""
X	echo "# rm -rf /var/db/flyspray"
X	echo "# mysqladmin -u root -p drop flyspray"
X	echo ""
X	echo "Thanks for using Flyspray!"
X	echo "--"
X;;
Xesac
END-of-flyspray/pkg-deinstall
echo x - flyspray/pkg-descr
sed 's/^X//' >flyspray/pkg-descr << 'END-of-flyspray/pkg-descr'
XNeed a bug tracking system for your programming project? Having trouble
Xfinding something that suits your needs? Tried installing Bugzilla, but
Xfound it too complex?
X
XFlyspray is an easy to use bug tracking system for those who don't require
Xall the complexities of something like Bugzilla.
X
XInitially developed for the Psi project, Flyspray is now available for
Xeveryone to download and use for their own projects.
X
XWWW: http://flyspray.rocks.cc/
END-of-flyspray/pkg-descr
echo x - flyspray/pkg-plist
sed 's/^X//' >flyspray/pkg-plist << 'END-of-flyspray/pkg-plist'
Xshare/flyspray/attachments
Xshare/flyspray/flyspray.conf.php
Xshare/flyspray/header.php-dist
Xshare/flyspray/favicon.ico
Xshare/flyspray/header.php
Xshare/flyspray/includes/styleswitcher.js
Xshare/flyspray/includes/regexp.php
Xshare/flyspray/includes/functions.js
Xshare/flyspray/includes/jscalendar/lang/calendar-ko-utf8.js
Xshare/flyspray/includes/jscalendar/lang/calendar-fi.js
Xshare/flyspray/includes/jscalendar/lang/calendar-es.js
Xshare/flyspray/includes/jscalendar/lang/calendar-du.js
Xshare/flyspray/includes/jscalendar/lang/calendar-ko.js
Xshare/flyspray/includes/jscalendar/lang/calendar-si.js
Xshare/flyspray/includes/jscalendar/lang/calendar-no.js
Xshare/flyspray/includes/jscalendar/lang/calendar-hu.js
Xshare/flyspray/includes/jscalendar/lang/calendar-sk.js
Xshare/flyspray/includes/jscalendar/lang/calendar-ro.js
Xshare/flyspray/includes/jscalendar/lang/calendar-ru.js
Xshare/flyspray/includes/jscalendar/lang/calendar-af.js
Xshare/flyspray/includes/jscalendar/lang/calendar-hr-utf8.js
Xshare/flyspray/includes/jscalendar/lang/calendar-pl-utf8.js
Xshare/flyspray/includes/jscalendar/lang/calendar-cs-win.js
Xshare/flyspray/includes/jscalendar/lang/calendar-el.js
Xshare/flyspray/includes/jscalendar/lang/calendar-en.js
Xshare/flyspray/includes/jscalendar/lang/calendar-br.js
Xshare/flyspray/includes/jscalendar/lang/calendar-lt-utf8.js
Xshare/flyspray/includes/jscalendar/lang/calendar-fr.js
Xshare/flyspray/includes/jscalendar/lang/calendar-nl.js
Xshare/flyspray/includes/jscalendar/lang/calendar-hr.js
Xshare/flyspray/includes/jscalendar/lang/calendar-jp.js
Xshare/flyspray/includes/jscalendar/lang/calendar-pl.js
Xshare/flyspray/includes/jscalendar/lang/calendar-it.js
Xshare/flyspray/includes/jscalendar/lang/calendar-lt.js
Xshare/flyspray/includes/jscalendar/lang/calendar-zh.js
Xshare/flyspray/includes/jscalendar/lang/calendar-sp.js
Xshare/flyspray/includes/jscalendar/lang/calendar-ca.js
Xshare/flyspray/includes/jscalendar/lang/calendar-pt.js
Xshare/flyspray/includes/jscalendar/lang/calendar-da.js
Xshare/flyspray/includes/jscalendar/lang/calendar-tr.js
Xshare/flyspray/includes/jscalendar/lang/calendar-sv.js
Xshare/flyspray/includes/jscalendar/lang/calendar-de.js
Xshare/flyspray/includes/jscalendar/img.gif
Xshare/flyspray/includes/jscalendar/calendar-system.css
Xshare/flyspray/includes/jscalendar/calendar-setup.js
Xshare/flyspray/includes/jscalendar/menuarrow.gif
Xshare/flyspray/includes/jscalendar/test-position.html
Xshare/flyspray/includes/jscalendar/calendar.js
Xshare/flyspray/includes/jscalendar/calendar-brown.css
Xshare/flyspray/includes/jscalendar/calendar-blue.css
Xshare/flyspray/includes/jscalendar/calendar-tas.css
Xshare/flyspray/includes/jscalendar/calendar-win2k-1.css
Xshare/flyspray/includes/jscalendar/calendar-win2k-2.css
Xshare/flyspray/includes/jscalendar/ChangeLog
Xshare/flyspray/includes/jscalendar/simple-1.html
Xshare/flyspray/includes/jscalendar/simple-2.html
Xshare/flyspray/includes/jscalendar/simple-3.html
Xshare/flyspray/includes/jscalendar/README
Xshare/flyspray/includes/jscalendar/calendar.php
Xshare/flyspray/includes/jscalendar/calendar-setup_stripped.js
Xshare/flyspray/includes/jscalendar/calendar-green.css
Xshare/flyspray/includes/jscalendar/calendar_stripped.js
Xshare/flyspray/includes/jscalendar/menuarrow2.gif
Xshare/flyspray/includes/jscalendar/test.php
Xshare/flyspray/includes/jscalendar/calendar-blue2.css
Xshare/flyspray/includes/jscalendar/calendar-win2k-cold-1.css
Xshare/flyspray/includes/jscalendar/calendar-win2k-cold-2.css
Xshare/flyspray/includes/jscalendar/release-notes.html
Xshare/flyspray/includes/jscalendar/index.html
Xshare/flyspray/includes/jscalendar/bugtest-hidden-selects.html
Xshare/flyspray/includes/functions.inc.php
Xshare/flyspray/includes/markdown.php
Xshare/flyspray/includes/gzip_compress.php
Xshare/flyspray/index.php
Xshare/flyspray/lang/en/authenticate.php
Xshare/flyspray/lang/en/reports.php
Xshare/flyspray/lang/en/newgroup.php
Xshare/flyspray/lang/en/index.php
Xshare/flyspray/lang/en/severity.php
Xshare/flyspray/lang/en/newtask.php
Xshare/flyspray/lang/en/functions.inc.php
Xshare/flyspray/lang/en/newproject.php
Xshare/flyspray/lang/en/chpass.php
Xshare/flyspray/lang/en/loginbox.php
Xshare/flyspray/lang/en/priority.php
Xshare/flyspray/lang/en/status.php
Xshare/flyspray/lang/en/main.php
Xshare/flyspray/lang/en/register.php
Xshare/flyspray/lang/en/details.php
Xshare/flyspray/lang/en/modify.php
Xshare/flyspray/lang/en/newuser.php
Xshare/flyspray/lang/en/admin.php
Xshare/flyspray/lang/ptbr/authenticate.php
Xshare/flyspray/lang/ptbr/newgroup.php
Xshare/flyspray/lang/ptbr/index.php
Xshare/flyspray/lang/ptbr/severity.php
Xshare/flyspray/lang/ptbr/newtask.php
Xshare/flyspray/lang/ptbr/functions.inc.php
Xshare/flyspray/lang/ptbr/newproject.php
Xshare/flyspray/lang/ptbr/loginbox.php
Xshare/flyspray/lang/ptbr/chpass.php
Xshare/flyspray/lang/ptbr/status.php
Xshare/flyspray/lang/ptbr/main.php
Xshare/flyspray/lang/ptbr/register.php
Xshare/flyspray/lang/ptbr/details.php
Xshare/flyspray/lang/ptbr/readme.txt
Xshare/flyspray/lang/ptbr/modify.php
Xshare/flyspray/lang/ptbr/newuser.php
Xshare/flyspray/lang/ptbr/admin.php
Xshare/flyspray/lang/langdiff.php
Xshare/flyspray/lang/fr/authenticate.php
Xshare/flyspray/lang/fr/reports.php
Xshare/flyspray/lang/fr/newgroup.php
Xshare/flyspray/lang/fr/index.php
Xshare/flyspray/lang/fr/severity.php
Xshare/flyspray/lang/fr/newtask.php
Xshare/flyspray/lang/fr/functions.inc.php
Xshare/flyspray/lang/fr/newproject.php
Xshare/flyspray/lang/fr/loginbox.php
Xshare/flyspray/lang/fr/chpass.php
Xshare/flyspray/lang/fr/priority.php
Xshare/flyspray/lang/fr/status.php
Xshare/flyspray/lang/fr/register.php
Xshare/flyspray/lang/fr/main.php
Xshare/flyspray/lang/fr/details.php
Xshare/flyspray/lang/fr/modify.php
Xshare/flyspray/lang/fr/admin.php
Xshare/flyspray/lang/fr/newuser.php
Xshare/flyspray/lang/es/authenticate.php
Xshare/flyspray/lang/es/newgroup.php
Xshare/flyspray/lang/es/index.php
Xshare/flyspray/lang/es/severity.php
Xshare/flyspray/lang/es/newtask.php
Xshare/flyspray/lang/es/functions.inc.php
Xshare/flyspray/lang/es/newproject.php
Xshare/flyspray/lang/es/loginbox.php
Xshare/flyspray/lang/es/chpass.php
Xshare/flyspray/lang/es/status.php
Xshare/flyspray/lang/es/main.php
Xshare/flyspray/lang/es/register.php
Xshare/flyspray/lang/es/details.php
Xshare/flyspray/lang/es/modify.php
Xshare/flyspray/lang/es/newuser.php
Xshare/flyspray/lang/es/admin.php
Xshare/flyspray/lang/de/authenticate.php
Xshare/flyspray/lang/de/reports.php
Xshare/flyspray/lang/de/newgroup.php
Xshare/flyspray/lang/de/index.php
Xshare/flyspray/lang/de/severity.php
Xshare/flyspray/lang/de/newtask.php
Xshare/flyspray/lang/de/functions.inc.php
Xshare/flyspray/lang/de/newproject.php
Xshare/flyspray/lang/de/loginbox.php
Xshare/flyspray/lang/de/priority.php
Xshare/flyspray/lang/de/chpass.php
Xshare/flyspray/lang/de/status.php
Xshare/flyspray/lang/de/register.php
Xshare/flyspray/lang/de/main.php
Xshare/flyspray/lang/de/details.php
Xshare/flyspray/lang/de/modify.php
Xshare/flyspray/lang/de/newuser.php
Xshare/flyspray/lang/de/admin.php
Xshare/flyspray/lang/nl/authenticate.php
Xshare/flyspray/lang/nl/reports.php
Xshare/flyspray/lang/nl/newgroup.php
Xshare/flyspray/lang/nl/index.php
Xshare/flyspray/lang/nl/severity.php
Xshare/flyspray/lang/nl/newtask.php
Xshare/flyspray/lang/nl/functions.inc.php
Xshare/flyspray/lang/nl/newproject.php
Xshare/flyspray/lang/nl/loginbox.php
Xshare/flyspray/lang/nl/chpass.php
Xshare/flyspray/lang/nl/priority.php
Xshare/flyspray/lang/nl/status.php
Xshare/flyspray/lang/nl/register.php
Xshare/flyspray/lang/nl/main.php
Xshare/flyspray/lang/nl/details.php
Xshare/flyspray/lang/nl/modify.php
Xshare/flyspray/lang/nl/admin.php
Xshare/flyspray/lang/nl/newuser.php
Xshare/flyspray/lang/pl/authenticate.php
Xshare/flyspray/lang/pl/reports.php
Xshare/flyspray/lang/pl/newgroup.php
Xshare/flyspray/lang/pl/index.php
Xshare/flyspray/lang/pl/severity.php
Xshare/flyspray/lang/pl/newtask.php
Xshare/flyspray/lang/pl/functions.inc.php
Xshare/flyspray/lang/pl/newproject.php
Xshare/flyspray/lang/pl/loginbox.php
Xshare/flyspray/lang/pl/chpass.php
Xshare/flyspray/lang/pl/priority.php
Xshare/flyspray/lang/pl/status.php
Xshare/flyspray/lang/pl/register.php
Xshare/flyspray/lang/pl/main.php
Xshare/flyspray/lang/pl/details.php
Xshare/flyspray/lang/pl/modify.php
Xshare/flyspray/lang/pl/admin.php
Xshare/flyspray/lang/pl/newuser.php
Xshare/flyspray/lang/it/authenticate.php
Xshare/flyspray/lang/it/reports.php
Xshare/flyspray/lang/it/newgroup.php
Xshare/flyspray/lang/it/index.php
Xshare/flyspray/lang/it/severity.php
Xshare/flyspray/lang/it/newtask.php
Xshare/flyspray/lang/it/functions.inc.php
Xshare/flyspray/lang/it/newproject.php
Xshare/flyspray/lang/it/chpass.php
Xshare/flyspray/lang/it/loginbox.php
Xshare/flyspray/lang/it/priority.php
Xshare/flyspray/lang/it/status.php
Xshare/flyspray/lang/it/register.php
Xshare/flyspray/lang/it/main.php
Xshare/flyspray/lang/it/details.php
Xshare/flyspray/lang/it/modify.php
Xshare/flyspray/lang/it/admin.php
Xshare/flyspray/lang/it/newuser.php
Xshare/flyspray/lang/dk/authenticate.php
Xshare/flyspray/lang/dk/newgroup.php
Xshare/flyspray/lang/dk/index.php
Xshare/flyspray/lang/dk/severity.php
Xshare/flyspray/lang/dk/newtask.php
Xshare/flyspray/lang/dk/functions.inc.php
Xshare/flyspray/lang/dk/newproject.php
Xshare/flyspray/lang/dk/chpass.php
Xshare/flyspray/lang/dk/loginbox.php
Xshare/flyspray/lang/dk/status.php
Xshare/flyspray/lang/dk/register.php
Xshare/flyspray/lang/dk/main.php
Xshare/flyspray/lang/dk/details.php
Xshare/flyspray/lang/dk/modify.php
Xshare/flyspray/lang/dk/newuser.php
Xshare/flyspray/lang/dk/admin.php
Xshare/flyspray/scripts/authenticate.php
Xshare/flyspray/scripts/reports.php
Xshare/flyspray/scripts/newgroup.php
Xshare/flyspray/scripts/rss.php
Xshare/flyspray/scripts/index.php
Xshare/flyspray/scripts/newtask.php
Xshare/flyspray/scripts/newproject.php
Xshare/flyspray/scripts/chproject.php
Xshare/flyspray/scripts/loginbox.php
Xshare/flyspray/scripts/schrem.php
Xshare/flyspray/scripts/register.php
Xshare/flyspray/scripts/details.php
Xshare/flyspray/scripts/modify.php
Xshare/flyspray/scripts/admin.php
Xshare/flyspray/scripts/newuser.php
Xshare/flyspray/sql/upgrade_0.9.5_to_0.9.6-pgsql.php
Xshare/flyspray/sql/upgrade_0.9.6_to_0.9.7.mysql
Xshare/flyspray/sql/flyspray-0.9.7.mysql
Xshare/flyspray/sql/mysql2pgsql.pl
Xshare/flyspray/sql/flyspray.conf.skel
Xshare/flyspray/sql/install-0.9.7.php
Xshare/flyspray/sql/upgrade_0.9.3.1_to_0.9.4-mysql.php
Xshare/flyspray/sql/upgrade_0.9.6_to_0.9.7.pgsql
Xshare/flyspray/sql/upgrade_0.9.4_to_0.9.5-mysql.php
Xshare/flyspray/sql/upgrade_0.9.6_to_0.9.7.php
Xshare/flyspray/sql/upgrade_0.9.5_to_0.9.6-mysql.php
Xshare/flyspray/sql/flyspray-0.9.7.pgsql
Xshare/flyspray/themes/Bluey/tab-notactive.png
Xshare/flyspray/themes/Bluey/percent-0.png
Xshare/flyspray/themes/Bluey/percent-100.png
Xshare/flyspray/themes/Bluey/mime/application/octet-stream.png
Xshare/flyspray/themes/Bluey/mime/application/x-gzip.png
Xshare/flyspray/themes/Bluey/mime/application/pdf.png
Xshare/flyspray/themes/Bluey/mime/text/html.png
Xshare/flyspray/themes/Bluey/mime/audio.png
Xshare/flyspray/themes/Bluey/mime/image.png
Xshare/flyspray/themes/Bluey/mime/application.png
Xshare/flyspray/themes/Bluey/mime/text.png
Xshare/flyspray/themes/Bluey/mime/video.png
Xshare/flyspray/themes/Bluey/menu/projectprefs.png
Xshare/flyspray/themes/Bluey/menu/newtask.png
Xshare/flyspray/themes/Bluey/menu/reports.png
Xshare/flyspray/themes/Bluey/menu/lists.png
Xshare/flyspray/themes/Bluey/menu/comment.png
Xshare/flyspray/themes/Bluey/menu/editmydetails.png
Xshare/flyspray/themes/Bluey/menu/search.png
Xshare/flyspray/themes/Bluey/menu/usersandgroups.png
Xshare/flyspray/themes/Bluey/menu/logout.png
Xshare/flyspray/themes/Bluey/menu/options.png
Xshare/flyspray/themes/Bluey/comment.png
Xshare/flyspray/themes/Bluey/percent-10.png
Xshare/flyspray/themes/Bluey/theme.css
Xshare/flyspray/themes/Bluey/asc.png
Xshare/flyspray/themes/Bluey/calendar.png
Xshare/flyspray/themes/Bluey/smile.png
Xshare/flyspray/themes/Bluey/button.png
Xshare/flyspray/themes/Bluey/desc.png
Xshare/flyspray/themes/Bluey/percent-20.png
Xshare/flyspray/themes/Bluey/tab-active.png
Xshare/flyspray/themes/Bluey/percent-30.png
Xshare/flyspray/themes/Bluey/title.png
Xshare/flyspray/themes/Bluey/percent-40.png
Xshare/flyspray/themes/Bluey/percent-50.png
Xshare/flyspray/themes/Bluey/percent-60.png
Xshare/flyspray/themes/Bluey/percent-70.png
Xshare/flyspray/themes/Bluey/button-over.png
Xshare/flyspray/themes/Bluey/percent-80.png
Xshare/flyspray/themes/Bluey/percent-90.png
Xshare/flyspray/themes/Bluey/index.html
Xshare/flyspray/themes/Bluey/attachment.png
Xshare/flyspray/themes/Bluey/frown.png
X%%PORTDOCS%%%%DOCSDIR%%/AUTHORS.txt
X%%PORTDOCS%%%%DOCSDIR%%/BUGS.txt
X%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.txt
X%%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt
X%%PORTDOCS%%%%DOCSDIR%%/README.txt
X%%PORTDOCS%%%%DOCSDIR%%/TODO.txt
X%%PORTDOCS%%%%DOCSDIR%%/UPGRADING.txt
X%%PORTDOCS%%%%DOCSDIR%%/ADOdb.licence.txt
X%%PORTDOCS%%%%DOCSDIR%%/Flyspray.licence.txt
X%%PORTDOCS%%%%DOCSDIR%%/NuvolaIcons.licence.txt
X%%PORTDOCS%%%%DOCSDIR%%/jsCalendar.licence.txt
X%%PORTDOCS%%%%DOCSDIR%%/phpMarkdown.licence.txt
X%%PORTDOCS%%%%DOCSDIR%%/README.FreeBSD
X%%PORTDOCS%%@dirrm %%DOCSDIR%%
X at dirrm share/flyspray/includes/jscalendar/lang
X at dirrm share/flyspray/includes/jscalendar
X at dirrm share/flyspray/includes
X at dirrm share/flyspray/lang/en
X at dirrm share/flyspray/lang/ptbr
X at dirrm share/flyspray/lang/fr
X at dirrm share/flyspray/lang/es
X at dirrm share/flyspray/lang/de
X at dirrm share/flyspray/lang/nl
X at dirrm share/flyspray/lang/pl
X at dirrm share/flyspray/lang/it
X at dirrm share/flyspray/lang/dk
X at dirrm share/flyspray/lang
X at dirrm share/flyspray/scripts
X at dirrm share/flyspray/sql
X at dirrm share/flyspray/themes/Bluey/mime/audio
X at dirrm share/flyspray/themes/Bluey/mime/image
X at dirrm share/flyspray/themes/Bluey/mime/application
X at dirrm share/flyspray/themes/Bluey/mime/text
X at dirrm share/flyspray/themes/Bluey/mime/video
X at dirrm share/flyspray/themes/Bluey/mime
X at dirrm share/flyspray/themes/Bluey/menu
X at dirrm share/flyspray/themes/Bluey
X at dirrm share/flyspray/themes
X at dirrm share/flyspray
END-of-flyspray/pkg-plist
echo x - flyspray/pkg-message
sed 's/^X//' >flyspray/pkg-message << 'END-of-flyspray/pkg-message'
X##
X
XPlease read the installation instructions in:
X
X	/usr/local/share/doc/flyspray/README.FreeBSD
X
X##
END-of-flyspray/pkg-message
exit


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list