diff options
author | Stuart Herbert <stuart@gentoo.org> | 2004-04-14 16:02:37 +0000 |
---|---|---|
committer | Stuart Herbert <stuart@gentoo.org> | 2004-04-14 16:02:37 +0000 |
commit | 6c4d9d9f16fa5f404e9305a26a81cd0dd137642d (patch) | |
tree | 0c88b544a61f90458a0de6996c75adc9d6a84df5 /eclass/webapp.eclass | |
parent | just shoot me (Manifest recommit) (diff) | |
download | gentoo-2-6c4d9d9f16fa5f404e9305a26a81cd0dd137642d.tar.gz gentoo-2-6c4d9d9f16fa5f404e9305a26a81cd0dd137642d.tar.bz2 gentoo-2-6c4d9d9f16fa5f404e9305a26a81cd0dd137642d.zip |
Bump to eclass for webapp-config-1.1
Diffstat (limited to 'eclass/webapp.eclass')
-rw-r--r-- | eclass/webapp.eclass | 43 |
1 files changed, 29 insertions, 14 deletions
diff --git a/eclass/webapp.eclass b/eclass/webapp.eclass index 823e120b4dc6..c343f72e2cde 100644 --- a/eclass/webapp.eclass +++ b/eclass/webapp.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.4 2004/03/03 18:44:34 stuart Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.5 2004/04/14 16:02:37 stuart Exp $ # # eclass/webapp.eclass # Eclass for installing applications to run under a web server @@ -20,15 +20,14 @@ ECLASS=webapp INHERITED="$INHERITED $ECLASS" SLOT="${PVR}" IUSE="$IUSE vhosts" -G_HASCONFIG=1 -if [ -f /etc/conf.d/webapp-config ] ; then - . /etc/conf.d/webapp-config +if [ -f /etc/vhosts/webapp-config ] ; then + . /etc/vhosts/webapp-config else - G_HASCONFIG=0 + die "Unable to open /etc/vhosts/webapp-config file" fi -EXPORT_FUNCTIONS pkg_config pkg_setup src_install +EXPORT_FUNCTIONS pkg_postinst pkg_setup src_install # ------------------------------------------------------------------------ # INTERNAL FUNCTION - USED BY THIS ECLASS ONLY @@ -106,6 +105,23 @@ function webapp_configfile () # ------------------------------------------------------------------------ # EXPORTED FUNCTION - FOR USE IN EBUILDS # +# Install a text file containing post-installation instructions. +# +# @param $1 - language code (use 'en' for now) +# @param $2 - the file to install +# ------------------------------------------------------------------------ + +function webapp_postinst_txt +{ + webapp_checkfileexists "$2" + + einfo "(rtfm) $2 (lang: $1)" + cp "$2" "${MY_APPDIR}/postinst-$1.txt" +} + +# ------------------------------------------------------------------------ +# EXPORTED FUNCTION - FOR USE IN EBUILDS +# # Identify a script file (usually, but not always PHP or Perl) which is # # Files in this list may be modified to #! the required CGI engine when @@ -205,6 +221,10 @@ function webapp_src_install () chown -R root:root ${D}/ chmod -R u-s ${D}/ chmod -R g-s ${D}/ + + keepdir ${MY_PERSISTDIR} + fowners root:root ${MY_PERSISTDIR} + fperms 755 ${MY_PERSISTDIR} } # ------------------------------------------------------------------------ @@ -217,12 +237,6 @@ function webapp_src_install () function webapp_pkg_setup () { - # we do have the config file, right? - - if [ "$G_HASCONFIG" = "0" ]; then - die "/etc/conf.d/webapp-config missing" - fi - # are we emerging something that is already installed? if [ -d "${MY_APPROOT}/${MY_APPSUFFIX}" ]; then @@ -241,7 +255,8 @@ function webapp_pkg_setup () mkdir -p ${MY_SQLSCRIPTSDIR} } -function webapp_pkg_config () +function webapp_pkg_postinst () { - use vhosts || webapp-config -u root -d /var/www/localhost/htdocs/${PN}/ ${PN} + G_HOSTNAME="${VHOST_HOSTNAME}" + use vhosts || /usr/sbin/webapp-config -I -u root -d "${VHOST_ROOT}/htdocs/${PN}/" ${PN} ${PVR} } |