diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-03-29 20:47:42 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-03-29 20:47:42 +0000 |
commit | 1e2c11a11bcb07c46241be3cd8ddec82b960728e (patch) | |
tree | a2f04147f6318e181d406be23867a2f6b7fa0a7d /app-text/pylize | |
parent | Version bump dev-db/couchdb-0.11.0. (diff) | |
download | historical-1e2c11a11bcb07c46241be3cd8ddec82b960728e.tar.gz historical-1e2c11a11bcb07c46241be3cd8ddec82b960728e.tar.bz2 historical-1e2c11a11bcb07c46241be3cd8ddec82b960728e.zip |
Delete older ebuild.
Diffstat (limited to 'app-text/pylize')
-rw-r--r-- | app-text/pylize/pylize-1.1b.ebuild | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/app-text/pylize/pylize-1.1b.ebuild b/app-text/pylize/pylize-1.1b.ebuild deleted file mode 100644 index e724d800ee03..000000000000 --- a/app-text/pylize/pylize-1.1b.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/pylize/pylize-1.1b.ebuild,v 1.9 2005/07/16 16:22:33 josejx Exp $ - -DESCRIPTION="Python HTML Slideshow Generator using HTML and CSS" -HOMEPAGE="http://www.chrisarndt.de/en/software/pylize/" -SRC_URI="http://www.chrisarndt.de/en/software/pylize/download/${P}.tar.bz2" - -IUSE="" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="ppc x86" - -DEPEND="virtual/python - dev-python/imaging - >=dev-python/htmlgen-2.2.2" - -src_compile() { - einfo "no need to compile" -} - -src_install() { - python install.py ${D}/usr || die - - # Fix Data dir in code - cat ${D}/usr/bin/pylize | sed -e "s:^sys_libdir.*:sys_libdir = \'/usr/share/pylize\':" > ${D}/usr/bin/pylize.new || die - mv ${D}/usr/bin/pylize.new ${D}/usr/bin/pylize || die - chmod 755 ${D}/usr/bin/pylize - - PYTHON_VER=$(python -V 2>&1 | sed -e 's:Python \([0-9].[0-9]\).*:\1:') - insinto /usr/lib/python${PYTHON_VER}/site-packages - doins lib/roman.py - - dodoc README -} |