diff options
author | Chuck Short <zul@gentoo.org> | 2003-08-23 00:57:10 +0000 |
---|---|---|
committer | Chuck Short <zul@gentoo.org> | 2003-08-23 00:57:10 +0000 |
commit | befc3b1d5230dee7424957a4fb58bb5d3634404b (patch) | |
tree | 220daa3bf1d5f4bc80b6ea22737eabd68efabf35 /app-text/cedilla/cedilla-0.3.ebuild | |
parent | Initial Version. Closes #22067 (diff) | |
download | gentoo-2-befc3b1d5230dee7424957a4fb58bb5d3634404b.tar.gz gentoo-2-befc3b1d5230dee7424957a4fb58bb5d3634404b.tar.bz2 gentoo-2-befc3b1d5230dee7424957a4fb58bb5d3634404b.zip |
Initial Version. Closes #22067
Diffstat (limited to 'app-text/cedilla/cedilla-0.3.ebuild')
-rw-r--r-- | app-text/cedilla/cedilla-0.3.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app-text/cedilla/cedilla-0.3.ebuild b/app-text/cedilla/cedilla-0.3.ebuild new file mode 100644 index 000000000000..c227867bfcf4 --- /dev/null +++ b/app-text/cedilla/cedilla-0.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/cedilla/cedilla-0.3.ebuild,v 1.1 2003/08/23 00:57:00 zul Exp $ + +DESCRIPTION="Utf-8 to postscript converter." +HOMEPAGE="http://www.pps.jussieu.fr/~jch/software/cedilla/" + +SRC_URI="http://www.pps.jussieu.fr/~jch/software/files/${P}.tar.gz" + +KEYWORDS="~x86" +SLOT="0" +LICENSE="GPL-2" +IUSE="" + +DEPEND=">=dev-lisp/clisp-2.29" +RDEPEND="" + +S="${WORKDIR}/${P}" +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/cedilla-gentoo.patch +} +src_compile() { + ./compile-cedilla || die "Compile failed" +} + +src_install() { + ./install-cedilla || die "Install failed" + + newman cedilla.man cedilla.1 + dodoc COPYING NEWS README + +} |