diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-text/cedilla | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-text/cedilla')
-rw-r--r-- | app-text/cedilla/Manifest | 1 | ||||
-rw-r--r-- | app-text/cedilla/cedilla-0.6.ebuild | 34 | ||||
-rw-r--r-- | app-text/cedilla/files/cedilla-gentoo-r1.patch | 22 | ||||
-rw-r--r-- | app-text/cedilla/files/cedilla-gentoo.patch | 22 | ||||
-rw-r--r-- | app-text/cedilla/metadata.xml | 12 |
5 files changed, 91 insertions, 0 deletions
diff --git a/app-text/cedilla/Manifest b/app-text/cedilla/Manifest new file mode 100644 index 000000000000..613b0f29f49b --- /dev/null +++ b/app-text/cedilla/Manifest @@ -0,0 +1 @@ +DIST cedilla-0.6.tar.gz 130676 SHA256 c5840c3e125fab29af844540239dfb475b59c6ecd67270736898608de743df43 SHA512 95d98fd4ab95b48023f635d61133ea1a8138a797cd1c414da0d4907531eb067ac147e8d612a528373da425d37fee7c1139dc7f0019308938c096e37caebf4e38 WHIRLPOOL fff84c8c7e2e1c1452dfbaf6bf58d97d405c1f56269cadb0d852ba7c183dec0b73906dfa62ca732e84a7eeb472d4ee2d66adebdd1fc224e56a5c45792a5f1117 diff --git a/app-text/cedilla/cedilla-0.6.ebuild b/app-text/cedilla/cedilla-0.6.ebuild new file mode 100644 index 000000000000..f9dc5040f2dd --- /dev/null +++ b/app-text/cedilla/cedilla-0.6.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +inherit eutils + +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="amd64 x86" +SLOT="0" +LICENSE="GPL-2" +IUSE="" + +DEPEND="dev-lisp/clisp" +RDEPEND="${DEPEND}" + +src_prepare() { + epatch "${FILESDIR}"/cedilla-gentoo-r1.patch +} + +src_compile() { + ./compile-cedilla || die "Compile failed." +} + +src_install() { + sed -i "s#${ED%/}##g" cedilla || die "sed failed" + newman cedilla.man cedilla.1 + ./install-cedilla || die "Install failed." + dodoc NEWS README +} diff --git a/app-text/cedilla/files/cedilla-gentoo-r1.patch b/app-text/cedilla/files/cedilla-gentoo-r1.patch new file mode 100644 index 000000000000..af9c92a8ee7b --- /dev/null +++ b/app-text/cedilla/files/cedilla-gentoo-r1.patch @@ -0,0 +1,22 @@ +diff -Naur cedilla-0.3.orig/cedilla-config cedilla-0.3/cedilla-config +--- cedilla-0.3.orig/cedilla-config 2002-02-18 11:53:39.000000000 +0000 ++++ cedilla-0.3/cedilla-config 2003-06-02 20:36:44.000000000 +0000 +@@ -2,14 +2,14 @@ + CLISP=/usr/bin/clisp + + # Where the main Cedilla binary will be installed +-BINDIR=/usr/bin ++BINDIR=${ED%/}/usr/bin + + # Where the cedilla-config.lisp file lives +-ETCDIR=/etc ++ETCDIR=${ED%/}/etc + + # Where Cedilla's FASL files will be kept +-LIBDIR=/usr/lib/cedilla ++LIBDIR=${ED%/}/usr/lib/cedilla + + # Where the cedilla(1) manual page will be installed +-MANDIR=/usr/share/man/man1 ++MANDIR=${ED%/}/usr/share/man/man1 + diff --git a/app-text/cedilla/files/cedilla-gentoo.patch b/app-text/cedilla/files/cedilla-gentoo.patch new file mode 100644 index 000000000000..20646d76b9fd --- /dev/null +++ b/app-text/cedilla/files/cedilla-gentoo.patch @@ -0,0 +1,22 @@ +diff -Naur cedilla-0.3.orig/cedilla-config cedilla-0.3/cedilla-config +--- cedilla-0.3.orig/cedilla-config 2002-02-18 11:53:39.000000000 +0000 ++++ cedilla-0.3/cedilla-config 2003-06-02 20:36:44.000000000 +0000 +@@ -2,14 +2,14 @@ + CLISP=/usr/bin/clisp + + # Where the main Cedilla binary will be installed +-BINDIR=/usr/bin ++BINDIR=${D}/usr/bin + + # Where the cedilla-config.lisp file lives +-ETCDIR=/etc ++ETCDIR=${D}/etc + + # Where Cedilla's FASL files will be kept +-LIBDIR=/usr/lib/cedilla ++LIBDIR=${D}/usr/lib/cedilla + + # Where the cedilla(1) manual page will be installed +-MANDIR=/usr/share/man/man1 ++MANDIR=${D}/usr/share/man/man1 + diff --git a/app-text/cedilla/metadata.xml b/app-text/cedilla/metadata.xml new file mode 100644 index 000000000000..9dd77881a9b9 --- /dev/null +++ b/app-text/cedilla/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>idella4@gentoo.org</email> + <name>Ian Delaney</name> + </maintainer> + <maintainer> + <email>titanofold@gentoo.org</email> + <name>Aaron W. Swenson</name> + </maintainer> +</pkgmetadata> |