Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-python/htmlgen
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/htmlgen/ChangeLog,v 1.10 2008/08/19 01:11:58 neurogeek Exp $
18 Aug 2008; Jesus Rivero
Minor enhancements to the ebuild. Thanks to Necoro
#233646
12 Jul 2006; Aron Griffis
Mark 2.2.2 stable on ia64
01 Apr 2006; Aron Griffis
Mark 2.2.2 ~ia64
16 Jul 2005; Joseph Jezak
Marked ppc stable.
31 May 2005; Stephanie Lockwood-Childs
htmlgen-2.2.2.ebuild:
mark ~ppc
30 Dec 2004; Ciaran McCreesh
Change encoding to UTF-8 for GLEP 31 compliance
19 Jul 2004; Bryan Østergaard
dev-python/Imaging renamed to dev-python/imaging.
*htmlgen-2.2.2 (08 Mar 2003)
25 Mar 2003; Alastair Tse
bump to stable
08 Mar 2003; Alastair Tse
initial ebuild. solves #10653.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
DIST HTMLgen.tgz 316415 RMD160 bb32b2822f7ce8e49eb42853aff330429df073de SHA1 a34b9c1f9cf5536a548c66522213ac9fee1b43cd SHA256 f3b39b4b07b5dd318780ad0e9b8b3c524a54138537697dd7966223f314d2177d
EBUILD htmlgen-2.2.2.ebuild 1478 RMD160 59495211503935b510b9cfa32b099e020e03d695 SHA1 985ec4a4a5cddda8a2b5df6023ffcc4dc9e395e2 SHA256 88a42d7628e0f16610b15c49ab4e5de6d7f3f35cd350d75b5cace6af5487c8fd
MISC ChangeLog 1213 RMD160 ed0401500888b5d896025c017a26812ebb9b36e0 SHA1 6d6d2739b277a8eca8b604c9c1248568b863ff77 SHA256 ea860d0cb694c37cf8c22a251ed8ce1308b2c713ed360683dec4ccf6d02f2810
MISC metadata.xml 159 RMD160 900a8c55d7a7d2f6312594769aaf941bf9e99c7f SHA1 c8e604d56dae898258b5254d78cfeac0b981e288 SHA256 9f01104d3484792496faff4805eed0ecea2352a897151f3397d49a13800037b4
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (GNU/Linux)
iEYEARECAAYFAkip3p4ACgkQdIssYB9vBoOX9QCfc9oD6cFgNF+dCdWND1P8p8aN
gmsAniVNAfZDpzPFUcn+OLdebUo/yBxi
=b6F/
-----END PGP SIGNATURE-----
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/htmlgen/htmlgen-2.2.2.ebuild,v 1.13 2008/08/19 01:11:58 neurogeek Exp $
inherit python
MY_P="HTMLgen"
DESCRIPTION="HTMLgen - Python modules for the generation of HTML documents"
HOMEPAGE="http://starship.python.net/crew/friedrich/HTMLgen/html/main.html"
SRC_URI="http://starship.python.net/crew/friedrich/${MY_P}.tgz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="ia64 ppc x86"
IUSE="doc"
DEPEND="virtual/python
dev-python/imaging"
S="${WORKDIR}/${MY_P}"
src_install() {
# doing this manually because their build scripts suck
local files="HTMLgen.py HTMLcolors.py HTMLutil.py HTMLcalendar.py \
barchart.py colorcube.py imgsize.py NavLinks.py Formtools.py \
ImageH.py ImageFileH.py ImagePaletteH.py GifImagePluginH.py \
JpegImagePluginH.py PngImagePluginH.py"
touch __init__.py
insinto $(python_get_sitedir)/htmlgen
doins $files __init__.py || die "doins failed"
if use doc; then
# fix the image locations in the docs
sed -i -e "s;../image/;image/;g" html/* || die "sed failed"
dohtml html/*
dohtml -r image
fi
dodoc README
}
pkg_postinst() {
python_mod_optimize $(python_get_sitedir)/htmlgen
ewarn "htmlgen now resides in its own subdirectory"
ewarn "so you need to do \"from htmlgen import HTMLgen\" instead of \"import HTMLgen\""
}
pkg_postrm () {
python_mod_cleanup $(python_get_sitedir)/htmlgen
}