diff options
author | 2008-08-08 13:21:56 +0000 | |
---|---|---|
committer | 2008-08-08 13:21:56 +0000 | |
commit | 487d24eeefffb97d8a882d0da1ad3e0384b21043 (patch) | |
tree | b7081ae8a8841ea4cd2b730d20f5c4d453835aeb /eclass | |
parent | Added a kolabified version of the horde-webmail package. (diff) | |
download | historical-487d24eeefffb97d8a882d0da1ad3e0384b21043.tar.gz historical-487d24eeefffb97d8a882d0da1ad3e0384b21043.tar.bz2 historical-487d24eeefffb97d8a882d0da1ad3e0384b21043.zip |
Allow specifiying hook scripts and post installation instructions in horde ebuilds.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/horde.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/horde.eclass b/eclass/horde.eclass index df9cc6aa4343..9e80b5781b32 100644 --- a/eclass/horde.eclass +++ b/eclass/horde.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/horde.eclass,v 1.36 2008/08/07 18:53:18 wrobel Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/horde.eclass,v 1.37 2008/08/08 13:21:56 wrobel Exp $ # # Help manage the horde project http://www.horde.org/ # @@ -142,6 +142,9 @@ horde_src_install() { fi done + [[ -n ${HORDE_RECONFIG} ]] && webapp_hook_script ${HORDE_RECONFIG} + [[ -n ${HORDE_POSTINST} ]] && webapp_postinst_txt en ${HORDE_POSTINST} + webapp_src_install } |