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 /dev-perl/tkispell | |
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 'dev-perl/tkispell')
-rw-r--r-- | dev-perl/tkispell/Manifest | 1 | ||||
-rw-r--r-- | dev-perl/tkispell/files/tkispell-0.180.0-aspell.patch | 31 | ||||
-rw-r--r-- | dev-perl/tkispell/metadata.xml | 5 | ||||
-rw-r--r-- | dev-perl/tkispell/tkispell-0.180.0.ebuild | 24 |
4 files changed, 61 insertions, 0 deletions
diff --git a/dev-perl/tkispell/Manifest b/dev-perl/tkispell/Manifest new file mode 100644 index 000000000000..a32e49d511e7 --- /dev/null +++ b/dev-perl/tkispell/Manifest @@ -0,0 +1 @@ +DIST tkispell-0.18.tar.gz 16067 SHA256 45c3cc1fd08af220ca0b841293a2f0eb46d5050e369447583cc63f76211a6bc1 SHA512 15a32367c53b36217a5c57d1b109b304c5b97e4c46b4ab64cbce66c99c46a651af5d376a8219e35c6ec909250040e7be1e4d073546a893ff25650187ca561e08 WHIRLPOOL 6ee116f8bf2a88e6a49c3d76298ccdfec34b6006ead48f32090da36f358bcb991030029143e1c6aadb723397bc5882324c0ff6c9b61c00ce17f280fd5b60a277 diff --git a/dev-perl/tkispell/files/tkispell-0.180.0-aspell.patch b/dev-perl/tkispell/files/tkispell-0.180.0-aspell.patch new file mode 100644 index 000000000000..1db7bd291eff --- /dev/null +++ b/dev-perl/tkispell/files/tkispell-0.180.0-aspell.patch @@ -0,0 +1,31 @@ +diff -ruN tkispell-0.18.orig/Makefile.PL tkispell-0.18/Makefile.PL +--- tkispell-0.18.orig/Makefile.PL 2004-02-28 20:38:46.000000000 +0100 ++++ tkispell-0.18/Makefile.PL 2014-10-11 10:43:09.372002632 +0200 +@@ -1,11 +1,11 @@ + use ExtUtils::MakeMaker; + +-my $ispell_bin = `which ispell`; ++my $ispell_bin = `which ispell-aspell`; + # The first match is for Solaris which. The second is for + # Linux which. +-if (($ispell_bin =~ /no ispell/) || (length($ispell_bin) == 0)) { +- print "Could not find locate ispell. Make sure that\n"; +- print "the ispell program is installed in a directory\n"; ++if (($ispell_bin =~ /no ispell-aspell/) || (length($ispell_bin) == 0)) { ++ print "Could not find locate ispell-aspell. Make sure that\n"; ++ print "the ispell-aspell program is installed in a directory\n"; + print "named in the PATH environment variable.\n"; + exit 1; + } +diff -ruN tkispell-0.18.orig/tkispell tkispell-0.18/tkispell +--- tkispell-0.18.orig/tkispell 2004-03-14 03:50:34.000000000 +0100 ++++ tkispell-0.18/tkispell 2014-10-11 10:43:58.772005395 +0200 +@@ -14,7 +14,7 @@ + if ($lang =~ /^C$/ || ! defined ($lang)) {$lang = 'default'; } + my $hdict = $ENV{HOME}."/.ispell_$lang"; # Personal dictionary. + +-my $ispell_prog = `which ispell`; ++my $ispell_prog = `which ispell-aspell`; + chomp $ispell_prog; + my ($cw, $b1, @misspelledlist, @replacementlist, @addlist, $midx); + my $ifname = ''; diff --git a/dev-perl/tkispell/metadata.xml b/dev-perl/tkispell/metadata.xml new file mode 100644 index 000000000000..36ee0f08c67c --- /dev/null +++ b/dev-perl/tkispell/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>perl</herd> +</pkgmetadata> diff --git a/dev-perl/tkispell/tkispell-0.180.0.ebuild b/dev-perl/tkispell/tkispell-0.180.0.ebuild new file mode 100644 index 000000000000..c2123eeb6e77 --- /dev/null +++ b/dev-perl/tkispell/tkispell-0.180.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +MODULE_AUTHOR=RKIES +MODULE_VERSION=0.18 +inherit perl-module + +DESCRIPTION="Perl/Tk user interface for ispell" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + app-text/aspell + dev-perl/perl-tk + virtual/perl-Carp +" +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}/${P}-aspell.patch" ) |