diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-06-15 03:50:38 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-06-15 03:50:38 +0000 |
commit | 455e18b26c9ec6b1d650c2f80d5443afe1042f43 (patch) | |
tree | 18e82e0295db91aa69c1d9454abb712a29fa7f2d /www-apps/lxr/files | |
parent | Drop acronym in description. (diff) | |
download | gentoo-2-455e18b26c9ec6b1d650c2f80d5443afe1042f43.tar.gz gentoo-2-455e18b26c9ec6b1d650c2f80d5443afe1042f43.tar.bz2 gentoo-2-455e18b26c9ec6b1d650c2f80d5443afe1042f43.zip |
Version bump and webapp-config cleanups.
(Portage version: 2.1)
Diffstat (limited to 'www-apps/lxr/files')
-rw-r--r-- | www-apps/lxr/files/digest-lxr-0.9.5 | 3 | ||||
-rw-r--r-- | www-apps/lxr/files/postinstall-en.txt | 7 | ||||
-rw-r--r-- | www-apps/lxr/files/reconfig | 17 |
3 files changed, 18 insertions, 9 deletions
diff --git a/www-apps/lxr/files/digest-lxr-0.9.5 b/www-apps/lxr/files/digest-lxr-0.9.5 new file mode 100644 index 000000000000..66e0a8905a4e --- /dev/null +++ b/www-apps/lxr/files/digest-lxr-0.9.5 @@ -0,0 +1,3 @@ +MD5 b4eb6428ef27e4fe3923dfe8abf5cb94 lxr-0.9.5.tgz 105230 +RMD160 fd6e8ae9c9940083e0550872fb8ac729342aad89 lxr-0.9.5.tgz 105230 +SHA256 5b126b8180a1c56fef5a89b9335a0b5d6e467850bf62b29a9f44b12107a74c8e lxr-0.9.5.tgz 105230 diff --git a/www-apps/lxr/files/postinstall-en.txt b/www-apps/lxr/files/postinstall-en.txt index 8da1468851dc..07412c4da554 100644 --- a/www-apps/lxr/files/postinstall-en.txt +++ b/www-apps/lxr/files/postinstall-en.txt @@ -1,4 +1,5 @@ 0. Create a db for lxr: + MySQL: run mysql and read in the initdb file using: \. ${MY_SQLSCRIPTSDIR}/mysql/${PVR}_create.sql @@ -6,7 +7,7 @@ createuser lxr createdb -U lxr lxr psql -U lxr lxr - \i ${MY_SQLSCRIPTSDIR}/postgressql/${PVR}_create.sql + \i ${MY_SQLSCRIPTSDIR}/postgresql/${PVR}_create.sql 1. Edit ${MY_INSTALLDIR}/lxr.conf and set: - db settings @@ -38,6 +39,6 @@ you must take special care not to make lxr.conf visible to the world. If you are not using mod_perl, use .htaccess_cgi instead. 5. Create the index: - ${MY_INSTALLDIR}/genxref --url http://${VHOST_HOSTNAME}/${VHOST_APPDIR} + ${MY_INSTALLDIR}/genxref --url http://${VHOST_HOSTNAME}${VHOST_APPDIR} -6. Browse to http://${VHOST_HOSTNAME}/${VHOST_APPDIR}/source +6. Browse to http://${VHOST_HOSTNAME}${VHOST_APPDIR}/source diff --git a/www-apps/lxr/files/reconfig b/www-apps/lxr/files/reconfig index bf90b9f92657..e9e2f47b3f69 100644 --- a/www-apps/lxr/files/reconfig +++ b/www-apps/lxr/files/reconfig @@ -2,15 +2,20 @@ die() { echo "#####" - echo $1 + echo "$@" echo "#####" exit 1 } -if [ $1 = "install" ]; then - sed -e "s|/lxr|/${VHOST_APPDIR}| - s|http://192.168.1.3/lxr|${VHOST_HOSTNAME}/${VHOST_APPDIR}|" -i ${MY_INSTALLDIR}/lxr.conf || die - -elif [ $1 = "clean" ]; then +if [[ $1 == "install" ]] ; then + cd "${MY_INSTALLDIR}" || die + files="lxr.conf $(ls ._cfg*lxr.conf 2>/dev/null)" + sed -i \ + -e "s|/lxr|${VHOST_APPDIR}|" \ + -e "s|192.168.1.3/lxr|${VHOST_HOSTNAME}${VHOST_APPDIR}|" \ + ${files} || die +elif [[ $1 = "clean" ]] ; then echo $1 fi + +exit 0 |