public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-dicts/gwaei/
@ 2016-09-18 11:01 Pacho Ramos
  0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos @ 2016-09-18 11:01 UTC (permalink / raw
  To: gentoo-commits

commit:     4f3d42f552311399003429b6bf7abaac4fc7764f
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 18 10:51:10 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Sep 18 11:01:46 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f3d42f5

app-dicts/gwaei: Cleanup metadata

Package-Manager: portage-2.3.0

 app-dicts/gwaei/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/app-dicts/gwaei/metadata.xml b/app-dicts/gwaei/metadata.xml
index 6a93eda..bb2eba8 100644
--- a/app-dicts/gwaei/metadata.xml
+++ b/app-dicts/gwaei/metadata.xml
@@ -12,10 +12,6 @@
     for it.
   </longdescription>
 	<use>
-		<flag name="unique">
-      Enable single instance support using
-      <pkg>dev-libs/libunique</pkg>.
-    </flag>
 		<flag name="mecab">
 	  Enable <pkg>app-text/mecab</pkg> support
 	</flag>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/gwaei/
@ 2020-09-16 11:41 David Seifert
  0 siblings, 0 replies; 4+ messages in thread
From: David Seifert @ 2020-09-16 11:41 UTC (permalink / raw
  To: gentoo-commits

commit:     ac0ab8866ed670d2f08b97997880b29583736464
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 16 11:40:39 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Sep 16 11:40:39 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac0ab886

app-dicts/gwaei: Port to EAPI 7

Closes: https://bugs.gentoo.org/742056
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 app-dicts/gwaei/gwaei-3.6.2.ebuild | 49 +++++++++++++++++---------------------
 1 file changed, 22 insertions(+), 27 deletions(-)

diff --git a/app-dicts/gwaei/gwaei-3.6.2.ebuild b/app-dicts/gwaei/gwaei-3.6.2.ebuild
index 760d43ab9b6..045d9d6ad1f 100644
--- a/app-dicts/gwaei/gwaei-3.6.2.ebuild
+++ b/app-dicts/gwaei/gwaei-3.6.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="4"
+EAPI=7
 
-inherit gnome2-utils eutils
+inherit gnome2-utils
 
 DESCRIPTION="Japanese-English Dictionary for GNOME"
 HOMEPAGE="http://gwaei.sourceforge.net/"
@@ -12,10 +12,11 @@ SRC_URI="mirror://sourceforge/gwaei/${P}.tar.xz"
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="gtk hunspell nls test mecab"
+IUSE="gtk hunspell nls mecab test"
 RESTRICT="!test? ( test )"
 
-RDEPEND=">=net-misc/curl-7.20.0
+RDEPEND="
+	>=net-misc/curl-7.20.0
 	>=dev-libs/glib-2.31
 	gtk? (
 		x11-libs/gtk+:3
@@ -25,50 +26,44 @@ RDEPEND=">=net-misc/curl-7.20.0
 	nls? ( virtual/libintl )
 	mecab? ( app-text/mecab )"
 DEPEND="${RDEPEND}
-	test? (
-		app-text/docbook-xml-dtd:4.1.2
-		app-text/scrollkeeper-dtd
-	)
 	gtk? (
 		x11-themes/gnome-icon-theme-symbolic
 		>=app-text/gnome-doc-utils-0.14.0
-	)
-	nls? ( >=sys-devel/gettext-0.17 )
+	)"
+BDEPEND="
 	app-text/rarian
 	dev-util/intltool
-	virtual/pkgconfig"
+	virtual/pkgconfig
+	nls? ( >=sys-devel/gettext-0.17 )
+	test? (
+		app-text/docbook-xml-dtd:4.1.2
+		app-text/scrollkeeper-dtd
+	)"
 
 src_configure() {
 	econf \
+		--disable-static \
 		$(use_with gtk gnome) \
 		$(use_enable nls) \
 		$(use_with hunspell) \
-		$(use_with mecab) \
-		--disable-static \
-		--docdir=/usr/share/doc/${PF}
+		$(use_with mecab)
 }
 
 src_install() {
-	emake DESTDIR="${D}" install
-	find "${D}" -name '*.la' -delete
+	default
 
-	dodoc AUTHORS README
+	# no static archives
+	find "${ED}" -name '*.la' -delete || die
 }
 
 pkg_preinst() {
-	if use gtk ; then
-		gnome2_schemas_savelist
-	fi
+	use gtk && gnome2_schemas_savelist
 }
 
 pkg_postinst() {
-	if use gtk ; then
-		gnome2_schemas_update
-	fi
+	use gtk && gnome2_schemas_update
 }
 
 pkg_postrm() {
-	if use gtk ; then
-		gnome2_schemas_update
-	fi
+	use gtk && gnome2_schemas_update
 }


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/gwaei/
@ 2021-09-29 14:12 Yixun Lan
  0 siblings, 0 replies; 4+ messages in thread
From: Yixun Lan @ 2021-09-29 14:12 UTC (permalink / raw
  To: gentoo-commits

commit:     0e9815ed8f36d8d8ba039a4983cf498591f922c3
Author:     Alex Fan <alexfanqi <AT> yahoo <DOT> com>
AuthorDate: Tue Sep 28 06:16:00 2021 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Sep 29 14:11:49 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e9815ed

app-dicts/gwaei: keyword 3.6.2 for ~riscv

Signed-off-by: Alex Fan <alexfanqi <AT> yahoo.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 app-dicts/gwaei/gwaei-3.6.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/gwaei/gwaei-3.6.2.ebuild b/app-dicts/gwaei/gwaei-3.6.2.ebuild
index 045d9d6ad1f..a260fad3a22 100644
--- a/app-dicts/gwaei/gwaei-3.6.2.ebuild
+++ b/app-dicts/gwaei/gwaei-3.6.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/gwaei/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~riscv ~x86"
 IUSE="gtk hunspell nls mecab test"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/gwaei/
@ 2024-07-09 18:56 Pacho Ramos
  0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos @ 2024-07-09 18:56 UTC (permalink / raw
  To: gentoo-commits

commit:     5f7952d290d965620a401233e6e1220a4692830f
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  9 18:49:27 2024 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Jul  9 18:52:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f7952d2

app-dicts/gwaei: drop 3.6.2

Bug: https://bugs.gentoo.org/929362
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 app-dicts/gwaei/gwaei-3.6.2.ebuild | 69 --------------------------------------
 1 file changed, 69 deletions(-)

diff --git a/app-dicts/gwaei/gwaei-3.6.2.ebuild b/app-dicts/gwaei/gwaei-3.6.2.ebuild
deleted file mode 100644
index d58d2c75ca63..000000000000
--- a/app-dicts/gwaei/gwaei-3.6.2.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit gnome2-utils
-
-DESCRIPTION="Japanese-English Dictionary for GNOME"
-HOMEPAGE="http://gwaei.sourceforge.net/"
-SRC_URI="https://downloads.sourceforge.net/gwaei/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv ~x86"
-IUSE="gtk hunspell nls mecab test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	>=net-misc/curl-7.20.0
-	>=dev-libs/glib-2.31
-	gtk? (
-		x11-libs/gtk+:3
-		>=app-text/gnome-doc-utils-0.14.0
-	)
-	hunspell? ( app-text/hunspell )
-	nls? ( virtual/libintl )
-	mecab? ( app-text/mecab )"
-DEPEND="${RDEPEND}
-	gtk? (
-		x11-themes/gnome-icon-theme-symbolic
-		>=app-text/gnome-doc-utils-0.14.0
-	)"
-BDEPEND="
-	app-text/rarian
-	dev-util/intltool
-	virtual/pkgconfig
-	nls? ( >=sys-devel/gettext-0.17 )
-	test? (
-		app-text/docbook-xml-dtd:4.1.2
-		app-text/scrollkeeper-dtd
-	)"
-
-src_configure() {
-	econf \
-		--disable-static \
-		$(use_with gtk gnome) \
-		$(use_enable nls) \
-		$(use_with hunspell) \
-		$(use_with mecab)
-}
-
-src_install() {
-	default
-
-	# no static archives
-	find "${ED}" -name '*.la' -delete || die
-}
-
-pkg_preinst() {
-	use gtk && gnome2_schemas_savelist
-}
-
-pkg_postinst() {
-	use gtk && gnome2_schemas_update
-}
-
-pkg_postrm() {
-	use gtk && gnome2_schemas_update
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-07-09 18:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-16 11:41 [gentoo-commits] repo/gentoo:master commit in: app-dicts/gwaei/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2024-07-09 18:56 Pacho Ramos
2021-09-29 14:12 Yixun Lan
2016-09-18 11:01 Pacho Ramos

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox