diff options
-rw-r--r-- | app-text/pylize/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/pylize/files/digest-pylize-1.1b | 1 | ||||
-rw-r--r-- | app-text/pylize/pylize-1.1b.ebuild | 35 |
3 files changed, 45 insertions, 0 deletions
diff --git a/app-text/pylize/ChangeLog b/app-text/pylize/ChangeLog new file mode 100644 index 000000000000..0c3e53761837 --- /dev/null +++ b/app-text/pylize/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-text/pylize +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/pylize/ChangeLog,v 1.1 2003/03/08 15:33:52 liquidx Exp $ + +*pylize-1.1b (08 Mar 2003) + + 08 Mar 2003; Alastair Tse <liquidx@gentoo.org> pylize-1.1b.ebuild: + intial import. bug #10655. + diff --git a/app-text/pylize/files/digest-pylize-1.1b b/app-text/pylize/files/digest-pylize-1.1b new file mode 100644 index 000000000000..d11ad7849c5e --- /dev/null +++ b/app-text/pylize/files/digest-pylize-1.1b @@ -0,0 +1 @@ +MD5 ce2f0e9aa37ce4ba262527b49355a6f1 pylize-1.1b.tar.bz2 52914 diff --git a/app-text/pylize/pylize-1.1b.ebuild b/app-text/pylize/pylize-1.1b.ebuild new file mode 100644 index 000000000000..350ac8d31bb0 --- /dev/null +++ b/app-text/pylize/pylize-1.1b.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# 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.1 2003/03/08 15:33:52 liquidx 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="~x86" + +DEPEND="virtual/python + dev-python/Imaging + >=dev-python/htmlgen-2.2.2" + +S="${WORKDIR}/${P}" + +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 +} |