Path to this page:
./
www/geeklog,
PHP/MySQL based application for managing dynamic web content
Branch: pkgsrc-2009Q1,
Version: 1.5.2.4,
Package name: geeklog-1.5.2.4,
Maintainer: tacaGeeklog is a PHP/MySQL based application for managing dynamic web content.
"Out of the box", it is a blog engine, or a CMS with support for comments,
trackbacks, multiple syndication formats, spam protection, and all the
other vital features of such a system.
DEINSTALL [+/-]# $NetBSD: DEINSTALL,v 1.4.20.1 2009/05/30 21:14:02 tron Exp $
GEEKLOG_PUBDIR="${PREFIX}/@GEEKLOG_PUB@"
GEEKLOG_DIR="${PREFIX}/@GEEKLOG_BASE@"
GEEKLOG_TMPL_DIR="${PREFIX}/@GL_TMPL@"
GEEKLOG_TMPL_SUB="@GL_TMPL_SUB@"
case ${STAGE} in
DEINSTALL)
(cd ${GEEKLOG_DIR}; \
if [ ! -s logs/error.log ]; then
rm -f logs/error.log
fi
)
(cd ${GEEKLOG_PUBDIR}; ${RM} -fr admin)
(cd ${GEEKLOG_TMPL_DIR}
${FIND} ${GEEKLOG_TMPL_SUB} -type f -print | \
while read f; do
file="${GEEKLOG_PUBDIR}/$f"
if ${TEST} -f ${file} -a -f ${f} && \
${CMP} -s ${file} ${f}; then
${RM} -f ${file}
fi
done
cd ${GEEKLOG_PUBDIR}
${FIND} -d ${GEEKLOG_TMPL_SUB} -type d -print |
while read d; do
${RMDIR} ${d} 2>/dev/null
done
)
;;
esac
Required to run:[
databases/php-mysql] [
www/ap-php]
Required to build:[
lang/perl5] [
www/apache22]
Master sites:
SHA1: fa0e1e97a8d3fa7ccdff0835eb0bd0e963d5bc24
RMD160: a218749173c0c4e1aba322759f7ee32d20ec166d
Filesize: 4393.635 KB
Version history: (Expand)
- (2009-07-05) Updated to version: geeklog-1.5.2.4
- (2009-04-06) Package added to pkgsrc.se, version geeklog-1.4.1nb4 (created)
CVS history: (Expand)
2009-05-30 23:14:02 by Matthias Scheler | Files touched by this commit (16) | |
Log message:
Pullup ticket #2782 - requested by taca
geeklog: security update
Revisions pulled up:
- www/geeklog/DEINSTALL 1.5
- www/geeklog/INSTALL 1.4
- www/geeklog/Makefile 1.22
- www/geeklog/Makefile.common 1.7
- www/geeklog/PLIST 1.8
- www/geeklog/distinfo 1.9
- www/geeklog/files/README 1.4
- www/geeklog/files/createdb.php delete
- www/geeklog/files/geeklog.conf 1.2
- www/geeklog/patches/patch-aa 1.3
- www/geeklog/patches/patch-ab delete
- www/geeklog/patches/patch-ac delete
- www/geeklog/patches/patch-ag delete
- www/geeklog/patches/patch-ah delete
- www/geeklog/patches/patch-ai delete
- www/geeklog/patches/patch-aj 1.1
---
Module Name: pkgsrc
Committed By: taca
Date: Tue May 26 14:19:29 UTC 2009
Modified Files:
pkgsrc/www/geeklog: DEINSTALL INSTALL Makefile Makefile.common PLIST
distinfo
pkgsrc/www/geeklog/files: README geeklog.conf
pkgsrc/www/geeklog/patches: patch-aa
Added Files:
pkgsrc/www/geeklog/patches: patch-aj
Removed Files:
pkgsrc/www/geeklog/files: createdb.php
pkgsrc/www/geeklog/patches: patch-ab patch-ac patch-ag patch-ah
patch-ai
Log message:
Update geeklog package from 1.4.1nb4 to 1.5.2.4 (1.5.2sr4).
pkgsrc changes: overhaul this package.
* Add LICENSE.
* Clean up bmake's macros, such as addition of PRINT_PLIST_AWK.
Geeklog changes: too many chagnes to write here.
* New user-friendly installation.
* New Configuration GUI.
* New Webservice GUI.
* And more.
Please refer http://www.geeklog.net/docs/english/changes.html
for more information.
Fixed some security problems about SQL injection vulnerability.
|