diff --git a/app-text/gtkspell/Manifest b/app-text/gtkspell/Manifest new file mode 100644 index 0000000..21a512d --- /dev/null +++ b/app-text/gtkspell/Manifest @@ -0,0 +1,2 @@ +DIST gtkspell3-3.0.10.tar.xz 300968 BLAKE2B aa167e9e5068e9c6c5fcf6933a28246de0be8386be43ab3af80a45dfbc092e1381503822d09742d20dde2e0b8dae77210001c955e37a8dab263b832ee52675a1 SHA512 3b1ceaa9ffa06bd3f6dae39c95db951588e5cf2edf4f551cac6972822ba230af3415c5045fa24f7a4dfe05c2e386ab3f67cb80cb779576b4e54293b7b9fbc28e +EBUILD gtkspell-3.0.10.ebuild 1073 BLAKE2B 3ec89c21b8057ac6dc4db2e492b58044879f215611ee6c4dc5da55fe2ea5d5b4826d65ad3458b77029bb413426cad8c03e0cb46655f0493cd48b812b9fdcfbeb SHA512 39aaa3a31784ec025a8b6fd0a54cb7c05f7f5b346bb06062c8d467887977019dbe0131bf83c5e8e563a1c179977db821a03831df67d045d6ecf64ef734b406de diff --git a/app-text/gtkspell/gtkspell-3.0.10.ebuild b/app-text/gtkspell/gtkspell-3.0.10.ebuild new file mode 100644 index 0000000..f41e0ea --- /dev/null +++ b/app-text/gtkspell/gtkspell-3.0.10.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit gnome2 vala + +DESCRIPTION="Spell checking widget for GTK" +HOMEPAGE="http://gtkspell.sourceforge.net/" +MY_P="${PN}3-${PV}" +SRC_URI="mirror://sourceforge/project/${PN}/${PV}/${MY_P}.tar.xz" + +LICENSE="GPL-2+" +SLOT="3/0" +KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" +IUSE="+introspection vala" +REQUIRED_USE="vala? ( introspection )" + +RDEPEND=" + >=app-text/enchant-1.1.6 + app-text/iso-codes + dev-libs/glib:2 + x11-libs/gtk+:3[introspection?] + >=x11-libs/pango-1.8.0[introspection?] + introspection? ( >=dev-libs/gobject-introspection-1.30:= ) +" +DEPEND="${RDEPEND} + >=dev-util/gtk-doc-am-1.17 + >=dev-util/intltool-0.35.0 + virtual/pkgconfig + vala? ( $(vala_depend) ) +" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + use vala && vala_src_prepare + gnome2_src_prepare +} + +src_configure() { + gnome2_src_configure \ + --disable-static \ + $(use_enable introspection) \ + $(use_enable vala) +}