# Copyright 1999-2005 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Plugins for PyBlosxom." SRC_URI="" HOMEPAGE="http://pyblosxom.sourceforge.net/" LICENSE="MIT" KEYWORDS="~x86" SLOT="0" IUSE="" RDEPEND="virtual/python dev-python/pyxml dev-python/imaging media-fonts/freefonts www-apps/pyblosxom" src_install() { PLUGIN_DIR=${D}/usr/share/pyblosxom-${PV}/plugins mkdir -p ${PLUGIN_DIR} PLUGINS="comments.py nospam.py session.py hardcodedates.py getstamps.py rss2renderer.py pycategories.py contact.py logrequest.py pyguest.py wbglast10summary.py" for plg in ${PLUGINS} do cp ${FILESDIR}/${plg} ${PLUGIN_DIR} done dodoc ${FILESDIR}/rss2renderer.py.html dodoc ${FILESDIR}/wbglast10summary.py.html }