diff options
author | Joonas Niilola <juippis@gentoo.org> | 2019-09-08 09:51:15 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2019-09-08 09:51:15 +0300 |
commit | 6527420a375b7def6c697aace2a85b7340c11e8c (patch) | |
tree | dcc88ed41c5c8ecfd448ebb428949737000af15f | |
parent | dev-util/hfstospell: new package (diff) | |
download | gentoo-6527420a375b7def6c697aace2a85b7340c11e8c.tar.gz gentoo-6527420a375b7def6c697aace2a85b7340c11e8c.tar.bz2 gentoo-6527420a375b7def6c697aace2a85b7340c11e8c.zip |
dev-libs/foma: new package
- A set of utilities for constructing finite-state automata and
transducers, dependency of libreoffice-voikko
Package-Manager: Portage-2.3.75, Repoman-2.3.17
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
-rw-r--r-- | dev-libs/foma/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/foma/files/foma-0.9.18-clean-makefile.patch | 35 | ||||
-rw-r--r-- | dev-libs/foma/foma-0.9.18.ebuild | 44 | ||||
-rw-r--r-- | dev-libs/foma/metadata.xml | 8 |
4 files changed, 88 insertions, 0 deletions
diff --git a/dev-libs/foma/Manifest b/dev-libs/foma/Manifest new file mode 100644 index 000000000000..81077719d2a4 --- /dev/null +++ b/dev-libs/foma/Manifest @@ -0,0 +1 @@ +DIST foma-0.9.18.tar.gz 337134 BLAKE2B b7f1eeaeaa21096f8077f0e81f3c57c49bbba30afe8db280089c40ed6cf475df33a6899fd2b6929d3f58fe8b3660a92566ae41f2bd5d8a46dacc073b48caf030 SHA512 17df4c070d1460855804aa63f97cc4a0d9568755e93de0de80821625faab7a3994a260650c5e8f43f80b5a0702dadb0cfe57136ab50eb2a9946f118991205b1a diff --git a/dev-libs/foma/files/foma-0.9.18-clean-makefile.patch b/dev-libs/foma/files/foma-0.9.18-clean-makefile.patch new file mode 100644 index 000000000000..0ed1b811fc67 --- /dev/null +++ b/dev-libs/foma/files/foma-0.9.18-clean-makefile.patch @@ -0,0 +1,35 @@ +diff -Naur a/Makefile b/Makefile +--- a/Makefile 2015-06-13 06:24:02.000000000 +0300 ++++ b/Makefile 2019-09-08 09:24:22.127655912 +0300 +@@ -1,21 +1,16 @@ +-prefix = /usr/local ++prefix = /usr + exec_prefix = $(prefix) + libdir = $(exec_prefix)/lib + bindir = $(exec_prefix)/bin + includedir = $(prefix)/include + + VERSION = 0.9.18 +-CC = gcc +-RANLIB = ranlib + YACC = bison -v + LEX = flex -8 + LEXCLEX = flex -8 --prefix=lexc + LEXIFACE = flex -8 --prefix=interface + LEXCMATRIX = flex -8 --prefix=cmatrix + RM = /bin/rm -f +-LDFLAGS = -lreadline -lz -ltermcap +-FLOOKUPLDFLAGS = libfoma.a -lz +-CFLAGS = -O3 -Wall -D_GNU_SOURCE -std=c99 -fvisibility=hidden -fPIC + FOMAOBJS = foma.o stack.o iface.o lex.interface.o + LIBOBJS = int_stack.o define.o determinize.o apply.o rewrite.o lexcread.o topsort.o flags.o minimize.o reverse.o extract.o sigma.o io.o structures.o constructions.o coaccessible.o utf8.o spelling.o dynarray.o mem.o stringhash.o trie.o lex.lexc.o lex.yy.o lex.cmatrix.o regex.o + +@@ -82,7 +77,7 @@ + if test -f $(libdir)/$(SHAREDLIB); then rm $(libdir)/$(SHAREDLIB); fi + if test -f $(libdir)/$(SHAREDLIBM); then rm $(libdir)/$(SHAREDLIBM); fi + cd $(libdir); ln -s $(SHAREDLIBV) $(SHAREDLIB); cd $(libdir); \ +- ln -s $(SHAREDLIBV) $(SHAREDLIBM); (ldconfig || true) \ ++ ln -s $(SHAREDLIBV) $(SHAREDLIBM); \ + >/dev/null 2>&1; \ + + $(OBJS): foma.h diff --git a/dev-libs/foma/foma-0.9.18.ebuild b/dev-libs/foma/foma-0.9.18.ebuild new file mode 100644 index 000000000000..778896159254 --- /dev/null +++ b/dev-libs/foma/foma-0.9.18.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="A set of utilities for constructing finite-state automata and transducers" +HOMEPAGE="https://github.com/mhulden/foma" +SRC_URI="https://bitbucket.org/mhulden/foma/downloads/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="sys-libs/readline:* + sys-libs/zlib" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/foma-0.9.18-clean-makefile.patch" ) + +src_prepare() { + default + + # Install to correct libdir + sed "s|/lib|/$(get_libdir)|" -i Makefile || die +} + +src_compile() { + export CC="$(tc-getCC)" + export RANLIB="$(tc-getRANLIB)" + + export CFLAGS="${CFLAGS} -Wl,--as-needed -D_GNU_SOURCE -std=c99 -fvisibility=hidden -fPIC" + export FLOOKUPLDFLAGS="${LDFLAGS} libfoma.a -lz" + export LDFLAGS="${LDFLAGS} -lreadline -lz -lncurses" + + default +} + +src_install() { + emake prefix="${D}"/usr install + einstalldocs + find "${D}" -name '*.a' -delete || die +} diff --git a/dev-libs/foma/metadata.xml b/dev-libs/foma/metadata.xml new file mode 100644 index 000000000000..6b0a0fb3a729 --- /dev/null +++ b/dev-libs/foma/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>juippis@gentoo.org</email> + <name>Joonas Niilola</name> + </maintainer> +</pkgmetadata> |