diff options
author | Philip Miess <Philip_Miess@yahoo.com> | 2017-10-09 20:32:35 -0400 |
---|---|---|
committer | Philip Miess <Philip_Miess@yahoo.com> | 2017-10-09 20:32:35 -0400 |
commit | 3b9bacb91b9f15292d4720b97855c6bd6af4087e (patch) | |
tree | 3d4be3a73ea8610f4d00ba83700fe48fc5991e6f /app-text | |
parent | move icon to workdir (diff) | |
download | superposition-3b9bacb91b9f15292d4720b97855c6bd6af4087e.tar.gz superposition-3b9bacb91b9f15292d4720b97855c6bd6af4087e.tar.bz2 superposition-3b9bacb91b9f15292d4720b97855c6bd6af4087e.zip |
presage
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/presage/Manifest | 2 | ||||
-rw-r--r-- | app-text/presage/presage-0.8.9.ebuild | 49 |
2 files changed, 51 insertions, 0 deletions
diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest new file mode 100644 index 0000000..37aa022 --- /dev/null +++ b/app-text/presage/Manifest @@ -0,0 +1,2 @@ +DIST presage-0.8.9.tar.gz 2568505 SHA256 5541e9b350cc603a8d412704dcfa21342369b5b07c6da91947c7523c51678cd0 SHA512 62206497283b3d7d29546399ea94c5b82d95c91f09c14e48098e1a8791018ccfdda26c46227195cdf706c0097e02bf382360e0a9c7e824edcd86fdfa5f4c3db1 WHIRLPOOL 029d3366c94fc52ba0a8337197158cc53d6aba8c276d2ddd52f5f58b864a7da2388af5d67342ece1817a7863fea2f6b675e76bb1e3555df4a1ddd67296a65188 +EBUILD presage-0.8.9.ebuild 1086 SHA256 ca159249c10a3014c5612e4f62e6587d352e2e74743fea54f0e379efebe04d47 SHA512 6a9a4d2e35da39e7433e2584c8313768228a660e2571059abf2836b33e553b6af49c73e34fb09e71b657f3ddead9f06cb45612e396d30d5ff3a41dc18568070d WHIRLPOOL 52bf637decd92f2c55e59612dfd891f2deaa0909614e22089416b3db626a6f8ad73d25e6a6422aafd53123bed9e56860062762157686940867488594e28cd1a7 diff --git a/app-text/presage/presage-0.8.9.ebuild b/app-text/presage/presage-0.8.9.ebuild new file mode 100644 index 0000000..20814ec --- /dev/null +++ b/app-text/presage/presage-0.8.9.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit eutils autotools +DESCRIPTION="The intelligent predictive text entry system" +HOMEPAGE="http://presage.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="doc examples gtk python sqlite test" + +RDEPEND=" + examples? ( sys-libs/ncurses ) + gtk? ( x11-libs/gtk+ ) + python? ( dev-lang/python dev-python/dbus-python ) + sqlite? ( dev-db/sqlite ) + app-text/unix2dos +" + +DEPEND="${COMMON_DEPEND} + doc? ( app-doc/doxygen ) + python? ( dev-lang/swig ) + test? ( dev-util/cppunit ) + sys-apps/help2man +" + +src_prepare() { + epatch "${FILESDIR}/${PN}-0.8.8-automagic.patch" + eautoreconf +} + +src_configure() { + local myeconfargs=( + $(use_enable doc documentation) + $(use_enable gtk gpresagemate) + $(use_enable gtk gprompter) + $(use_enable examples curses) + $(use_enable python) + $(use_enable python python-binding) + $(use_enable sqlite) + $(use_enable test) + ) + econf ${myeconfargs} +} |