public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/kanjipad/
@ 2018-06-02 22:38 Aaron Bauman
  0 siblings, 0 replies; 6+ messages in thread
From: Aaron Bauman @ 2018-06-02 22:38 UTC (permalink / raw
  To: gentoo-commits

commit:     8367e236ce75b1980cfccaf47e83d2d4e8b2f557
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  2 14:44:14 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sat Jun  2 22:37:15 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8367e236

app-i18n/kanjipad: bump EAPI; drop eutils; use https

Package-Manager: Portage-2.3.40, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8692

 app-i18n/kanjipad/kanjipad-2.0.0.ebuild | 36 ++++++++++++++++++---------------
 1 file changed, 20 insertions(+), 16 deletions(-)

diff --git a/app-i18n/kanjipad/kanjipad-2.0.0.ebuild b/app-i18n/kanjipad/kanjipad-2.0.0.ebuild
index 790545ce7d5..82d47a93e35 100644
--- a/app-i18n/kanjipad/kanjipad-2.0.0.ebuild
+++ b/app-i18n/kanjipad/kanjipad-2.0.0.ebuild
@@ -1,17 +1,17 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="2"
+EAPI=6
 
-inherit eutils toolchain-funcs
+inherit toolchain-funcs
 
 DESCRIPTION="Japanese handwriting recognition tool"
-HOMEPAGE="http://fishsoup.net/software/kanjipad/"
-SRC_URI="http://fishsoup.net/software/kanjipad/${P}.tar.gz"
+HOMEPAGE="https://fishsoup.net/software/kanjipad/"
+SRC_URI="https://fishsoup.net/software/kanjipad/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="x86 amd64 ppc64"
+KEYWORDS="amd64 ppc64 x86"
 IUSE=""
 
 RDEPEND="x11-libs/gtk+:2
@@ -19,22 +19,26 @@ RDEPEND="x11-libs/gtk+:2
 DEPEND="${RDEPEND}
 	virtual/pkgconfig"
 
+DOCS=( ChangeLog README TODO jstroke/README-kanjipad )
+
+PATCHES=(
+	"${FILESDIR}/${P}-cflags.patch"
+	"${FILESDIR}/${P}-underlinking.patch"
+)
+
 src_prepare() {
-	epatch "${FILESDIR}"/${P}-cflags.patch \
-		"${FILESDIR}"/${P}-underlinking.patch
+	default
+	perl -i -pe "s|PREFIX=/usr/local|PREFIX=/usr|;
+		s|-DG.*DISABLE_DEPRECATED||g" Makefile || die "Fixing Makefile failed"
 }
 
-src_compile() {
+src_configure() {
 	tc-export CC
-	perl -i -pe "s|PREFIX=/usr/local|PREFIX=/usr|;
-		s|-DG.*DISABLE_DEPRECATED||g" Makefile || die
-
-	emake || die
 }
 
 src_install() {
-	dobin kanjipad kpengine || die
+	dobin kanjipad kpengine
 	insinto /usr/share/kanjipad
-	doins jdata.dat || die
-	dodoc ChangeLog README TODO jstroke/README-kanjipad
+	doins jdata.dat
+	einstalldocs
 }


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

* [gentoo-commits] repo/gentoo:master commit in: app-i18n/kanjipad/
@ 2024-04-11 15:22 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-04-11 15:22 UTC (permalink / raw
  To: gentoo-commits

commit:     4f739c6d4fbffd43da74389b7939949e15a916da
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 11 15:06:33 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 11 15:06:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f739c6d

app-i18n/kanjipad: EAPI8, add missing RDEPs

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild | 52 ++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)

diff --git a/app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild b/app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild
new file mode 100644
index 000000000000..2f20eacc9b1c
--- /dev/null
+++ b/app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Japanese handwriting recognition tool"
+HOMEPAGE="https://fishsoup.net/software/kanjipad/"
+SRC_URI="https://fishsoup.net/software/kanjipad/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+
+RDEPEND="
+	app-accessibility/at-spi2-core:2
+	x11-libs/gtk+:2
+	dev-libs/glib:2
+	media-libs/fontconfig
+	media-libs/freetype
+	media-libs/harfbuzz:=
+	x11-libs/cairo
+	x11-libs/gdk-pixbuf:2
+	x11-libs/pango
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+	"${FILESDIR}/${P}-cflags.patch"
+	"${FILESDIR}/${P}-underlinking.patch"
+)
+
+src_prepare() {
+	default
+	sed -i -e "s|PREFIX=/usr/local|PREFIX=/usr|" \
+		-e "s|-DG.*DISABLE_DEPRECATED||g" Makefile || die "Fixing Makefile failed"
+}
+
+src_configure() {
+	tc-export CC
+}
+
+src_install() {
+	dobin kanjipad kpengine
+	insinto /usr/share/kanjipad
+	doins jdata.dat
+
+	local DOCS=( ChangeLog README TODO jstroke/README-kanjipad )
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-i18n/kanjipad/
@ 2024-05-13 11:54 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-05-13 11:54 UTC (permalink / raw
  To: gentoo-commits

commit:     f6b40700b82b3f244b4589be38b64690446d6da5
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon May 13 11:54:46 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon May 13 11:54:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6b40700

app-i18n/kanjipad: Stabilize 2.0.0-r1 ppc64, #931869

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild b/app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild
index 2f20eacc9b1c..19f34c2f77d4 100644
--- a/app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild
+++ b/app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://fishsoup.net/software/kanjipad/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ppc64 ~x86"
 
 RDEPEND="
 	app-accessibility/at-spi2-core:2


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

* [gentoo-commits] repo/gentoo:master commit in: app-i18n/kanjipad/
@ 2024-05-13 12:29 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-05-13 12:29 UTC (permalink / raw
  To: gentoo-commits

commit:     1944e714fc027e8f673796bdc630e02b21988223
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon May 13 12:29:53 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon May 13 12:29:53 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1944e714

app-i18n/kanjipad: Stabilize 2.0.0-r1 amd64, #931869

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild b/app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild
index 19f34c2f77d4..020204933589 100644
--- a/app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild
+++ b/app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://fishsoup.net/software/kanjipad/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc64 ~x86"
+KEYWORDS="amd64 ppc64 ~x86"
 
 RDEPEND="
 	app-accessibility/at-spi2-core:2


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

* [gentoo-commits] repo/gentoo:master commit in: app-i18n/kanjipad/
@ 2024-05-13 12:32 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-05-13 12:32 UTC (permalink / raw
  To: gentoo-commits

commit:     e376773088bebf913dc70632fc6c697484af8b21
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon May 13 12:31:30 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon May 13 12:31:30 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3767730

app-i18n/kanjipad: Stabilize 2.0.0-r1 x86, #931869

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild b/app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild
index 020204933589..e09e030e5eaf 100644
--- a/app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild
+++ b/app-i18n/kanjipad/kanjipad-2.0.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://fishsoup.net/software/kanjipad/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc64 ~x86"
+KEYWORDS="amd64 ppc64 x86"
 
 RDEPEND="
 	app-accessibility/at-spi2-core:2


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

* [gentoo-commits] repo/gentoo:master commit in: app-i18n/kanjipad/
@ 2024-05-13 12:38 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-05-13 12:38 UTC (permalink / raw
  To: gentoo-commits

commit:     58bb2205cd87564c187ec42e2cddaa53af868d41
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon May 13 12:38:29 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon May 13 12:38:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58bb2205

app-i18n/kanjipad: drop 2.0.0, EAPI6--

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-i18n/kanjipad/kanjipad-2.0.0.ebuild | 44 ---------------------------------
 1 file changed, 44 deletions(-)

diff --git a/app-i18n/kanjipad/kanjipad-2.0.0.ebuild b/app-i18n/kanjipad/kanjipad-2.0.0.ebuild
deleted file mode 100644
index 82d47a93e351..000000000000
--- a/app-i18n/kanjipad/kanjipad-2.0.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="Japanese handwriting recognition tool"
-HOMEPAGE="https://fishsoup.net/software/kanjipad/"
-SRC_URI="https://fishsoup.net/software/kanjipad/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc64 x86"
-IUSE=""
-
-RDEPEND="x11-libs/gtk+:2
-	dev-libs/glib:2"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-DOCS=( ChangeLog README TODO jstroke/README-kanjipad )
-
-PATCHES=(
-	"${FILESDIR}/${P}-cflags.patch"
-	"${FILESDIR}/${P}-underlinking.patch"
-)
-
-src_prepare() {
-	default
-	perl -i -pe "s|PREFIX=/usr/local|PREFIX=/usr|;
-		s|-DG.*DISABLE_DEPRECATED||g" Makefile || die "Fixing Makefile failed"
-}
-
-src_configure() {
-	tc-export CC
-}
-
-src_install() {
-	dobin kanjipad kpengine
-	insinto /usr/share/kanjipad
-	doins jdata.dat
-	einstalldocs
-}


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

end of thread, other threads:[~2024-05-13 12:38 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-13 11:54 [gentoo-commits] repo/gentoo:master commit in: app-i18n/kanjipad/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-05-13 12:38 Arthur Zamarin
2024-05-13 12:32 Arthur Zamarin
2024-05-13 12:29 Arthur Zamarin
2024-04-11 15:22 Arthur Zamarin
2018-06-02 22:38 Aaron Bauman

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