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/zpspell | |
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/zpspell')
-rw-r--r-- | app-text/zpspell/Manifest | 1 | ||||
-rw-r--r-- | app-text/zpspell/files/add-gobject-linkage-11566.diff | 11 | ||||
-rw-r--r-- | app-text/zpspell/metadata.xml | 7 | ||||
-rw-r--r-- | app-text/zpspell/zpspell-0.4.3-r1.ebuild | 27 |
4 files changed, 46 insertions, 0 deletions
diff --git a/app-text/zpspell/Manifest b/app-text/zpspell/Manifest new file mode 100644 index 000000000000..ec2d404bd3d7 --- /dev/null +++ b/app-text/zpspell/Manifest @@ -0,0 +1 @@ +DIST zpspell-0.4.3.tar.bz2 10510 SHA256 465e07b899e1cea24eb1294addfc66e57c47e10c00c2d6d283d8c17f4d243f48 SHA512 b87409735e7c6f8306992e98d006130c9a39cb0903a5938023d6f1379c37e9b12b381f917f71f09e08a557a7cc7cfc1d93536b4fea49d007f20b0da8f7fd3c98 WHIRLPOOL e1ad311bc88411cd42fc118c0ab872f437fe3e4f14248c5fedfd8d96bebb3c81ae9cd5d652ee7d7b2643b546e6a4b1bc6ff1629ac701f2267350defe88d39786 diff --git a/app-text/zpspell/files/add-gobject-linkage-11566.diff b/app-text/zpspell/files/add-gobject-linkage-11566.diff new file mode 100644 index 000000000000..250fb90ebca9 --- /dev/null +++ b/app-text/zpspell/files/add-gobject-linkage-11566.diff @@ -0,0 +1,11 @@ +Index: zpspell-0.4.3/CMakeLists.txt +=================================================================== +--- zpspell-0.4.3.orig/CMakeLists.txt ++++ zpspell-0.4.3/CMakeLists.txt +@@ -101,5 +101,5 @@ include_directories(${DBUS_INCLUDE_DIR}) + include_directories(${GLIB2_INCLUDE_DIR}) + include_directories(${GLIB_CONFIG_DIR}) + +-target_link_libraries(zpspell glib-2.0 dbus-glib-1) ++target_link_libraries(zpspell glib-2.0 dbus-glib-1 gobject-2.0) + diff --git a/app-text/zpspell/metadata.xml b/app-text/zpspell/metadata.xml new file mode 100644 index 000000000000..91f4e72fb544 --- /dev/null +++ b/app-text/zpspell/metadata.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>maintainer-needed@gentoo.org</email> + </maintainer> +</pkgmetadata> diff --git a/app-text/zpspell/zpspell-0.4.3-r1.ebuild b/app-text/zpspell/zpspell-0.4.3-r1.ebuild new file mode 100644 index 000000000000..1471b0eee931 --- /dev/null +++ b/app-text/zpspell/zpspell-0.4.3-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit cmake-utils + +DESCRIPTION="Zemberek-Pardus spell checker interface" +HOMEPAGE="http://www.pardus.org.tr/projeler/masaustu/zemberek-pardus" +SRC_URI="http://cekirdek.uludag.org.tr/~baris/zpspell/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" + +DEPEND="dev-libs/dbus-glib" +RDEPEND="${DEPEND} + app-text/zemberek-server" + +PATCHES=( "${FILESDIR}/add-gobject-linkage-11566.diff" ) +DOCS=( AUTHORS README ) + +pkg_postinst() { + elog "Please visit ${HOMEPAGE} for" + elog "documentation on how to configure and run Zemberek spellchecker for KDE." +} |