diff options
author | Renat Lumpau <rl03@gentoo.org> | 2004-08-28 11:31:02 +0000 |
---|---|---|
committer | Renat Lumpau <rl03@gentoo.org> | 2004-08-28 11:31:02 +0000 |
commit | aa350bd9600f83e07738f03356c791a7d94d3f5f (patch) | |
tree | 0dfe09c75e2ad7506c7d0ce942d9a32192d8c773 /www-apps/polarblog/files | |
parent | (Manifest recommit) (diff) | |
download | gentoo-2-aa350bd9600f83e07738f03356c791a7d94d3f5f.tar.gz gentoo-2-aa350bd9600f83e07738f03356c791a7d94d3f5f.tar.bz2 gentoo-2-aa350bd9600f83e07738f03356c791a7d94d3f5f.zip |
Initial ebuild, requested in #61001
Diffstat (limited to 'www-apps/polarblog/files')
-rw-r--r-- | www-apps/polarblog/files/digest-polarblog-1.02 | 1 | ||||
-rw-r--r-- | www-apps/polarblog/files/postinstall-en.txt | 12 | ||||
-rw-r--r-- | www-apps/polarblog/files/reconfig | 6 |
3 files changed, 19 insertions, 0 deletions
diff --git a/www-apps/polarblog/files/digest-polarblog-1.02 b/www-apps/polarblog/files/digest-polarblog-1.02 new file mode 100644 index 000000000000..0f01c1f87e41 --- /dev/null +++ b/www-apps/polarblog/files/digest-polarblog-1.02 @@ -0,0 +1 @@ +MD5 1fd9cb6bc07f057699455f21a86f0540 pb_v102.tgz 88720 diff --git a/www-apps/polarblog/files/postinstall-en.txt b/www-apps/polarblog/files/postinstall-en.txt new file mode 100644 index 000000000000..8d3aaec4ba5c --- /dev/null +++ b/www-apps/polarblog/files/postinstall-en.txt @@ -0,0 +1,12 @@ + +Now execute: + +cp ${MY_INSTALLDIR}/css/<one_of_css_files>.css.dist ${MY_INSTALLDIR}/css/<one_of_css_files>.css +cp ${MY_INSTALLDIR}/config/config.php.dist ${MY_INSTALLDIR}/config/config.php +and edit them. As a minimum, set LIB_PATH, DB_PREFIX, DB_HOST, DB_NAME, +DB_USER, DB_PASSWORD, CSS. + +Then go to http://${VHOST_HOSTNAME}/polarblog/install.php to finish the installation. +Don't forget to delete ${MY_INSTALLDIR}/install.php when you are done. + +Read the docs at http://polarblog.polarlava.com/docs/ diff --git a/www-apps/polarblog/files/reconfig b/www-apps/polarblog/files/reconfig new file mode 100644 index 000000000000..b7a2f6583eb4 --- /dev/null +++ b/www-apps/polarblog/files/reconfig @@ -0,0 +1,6 @@ +#!/bin/bash +if [ $1 = "start" -o $1 = "install" ]; then + # enable RSS + chmod 777 ${MY_INSTALLDIR} + sed -e "s|/your/path/to/public_html/polarblog|${MY_INSTALLDIR}|" -i ${MY_INSTALLDIR}/config/config.php.dist +fi |