public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: x11-terms/mlterm-canna/
@ 2022-06-26  2:36 Alessandro Barbieri
  0 siblings, 0 replies; 5+ messages in thread
From: Alessandro Barbieri @ 2022-06-26  2:36 UTC (permalink / raw
  To: gentoo-commits

commit:     cf593433d91addbddb149c5931e7b2a94305e860
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Thu Jun 23 02:19:27 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Jun 26 02:29:44 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cf593433

x11-terms/mlterm-canna: new package, add 3.9.2

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 x11-terms/mlterm-canna/Manifest                  |  1 +
 x11-terms/mlterm-canna/metadata.xml              | 12 ++++
 x11-terms/mlterm-canna/mlterm-canna-3.9.2.ebuild | 73 ++++++++++++++++++++++++
 3 files changed, 86 insertions(+)

diff --git a/x11-terms/mlterm-canna/Manifest b/x11-terms/mlterm-canna/Manifest
new file mode 100644
index 000000000..73fcc9de7
--- /dev/null
+++ b/x11-terms/mlterm-canna/Manifest
@@ -0,0 +1 @@
+DIST mlterm-3.9.2.tar.gz 4259208 BLAKE2B 161d496326abd58e8dabedd4c49e0e17ade77956fd0be6f450d5adf2953fe04a2c62a40d3694296d12cdea1274410e17a64cc62f88b953d894cce216425b29f3 SHA512 3076dafbc98a01738d88acf0e0f52e15d33862b3e9b7a851a4496f1be07ee9e51103daf7842954bcae1f1ba62bd6645b0bd60af7f66ee98721bdf3786b9fcbaf

diff --git a/x11-terms/mlterm-canna/metadata.xml b/x11-terms/mlterm-canna/metadata.xml
new file mode 100644
index 000000000..a48920556
--- /dev/null
+++ b/x11-terms/mlterm-canna/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<description>co-maintainers welcome</description>
+		<name>Alessandro Barbieri</name>
+		<email>lssndrbarbieri@gmail.com</email>
+	</maintainer>
+	<upstream>
+		<remote-id type="sourceforge">mlterm</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/x11-terms/mlterm-canna/mlterm-canna-3.9.2.ebuild b/x11-terms/mlterm-canna/mlterm-canna-3.9.2.ebuild
new file mode 100644
index 000000000..8f05bab49
--- /dev/null
+++ b/x11-terms/mlterm-canna/mlterm-canna-3.9.2.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MYPN="mlterm"
+MYP="${MYPN}-${PV}"
+
+DESCRIPTION="canna plugin for mlterm"
+HOMEPAGE="http://mlterm.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${MYPN}/${MYP}.tar.gz"
+S="${WORKDIR}/${MYP}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="app-i18n/canna"
+RDEPEND="
+	${DEPEND}
+	~x11-terms/mlterm-${PV}
+"
+
+src_configure() {
+	local myconf=(
+		--disable-brlapi
+		--disable-debug
+		--disable-fcitx
+		--disable-fribidi
+		--disable-ibus
+		--disable-m17nlib
+		--disable-nls
+		--disable-optimize-redrawing
+		--disable-otl
+		--disable-scim
+		--disable-skk
+		--disable-ssh2
+		--disable-static
+		--disable-uim
+		--disable-vt52
+		--disable-wnn
+		--enable-canna
+		--with-gui=console
+		--without-gtk
+		--without-type-engines
+		--without-utmp
+		--without-x
+	)
+
+	addpredict /dev/ptmx
+	econf "${myconf[@]}"
+}
+
+src_compile() {
+	pushd baselib/src || die
+	emake collect-headers libpobl.la
+	popd || die
+	pushd encodefilter/src || die
+	emake collect-headers
+	popd || die
+	pushd inputmethod/canna || die
+	emake
+}
+
+src_test() {
+	:
+}
+
+src_install() {
+	pushd inputmethod/canna || die
+	DESTDIR="${D}" emake install
+	find "${ED}" -name '*.la' -delete || die
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: x11-terms/mlterm-canna/
@ 2022-06-30 10:26 Alessandro Barbieri
  0 siblings, 0 replies; 5+ messages in thread
From: Alessandro Barbieri @ 2022-06-30 10:26 UTC (permalink / raw
  To: gentoo-commits

commit:     04983033307881b3ce86f6f632bad2042da465d1
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Thu Jun 30 03:36:07 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Thu Jun 30 10:26:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=04983033

x11-terms/mlterm-canna: also install fb and wl modules

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 ...a-3.9.2.ebuild => mlterm-canna-3.9.2-r1.ebuild} | 48 +++++++++++++++++++---
 1 file changed, 43 insertions(+), 5 deletions(-)

diff --git a/x11-terms/mlterm-canna/mlterm-canna-3.9.2.ebuild b/x11-terms/mlterm-canna/mlterm-canna-3.9.2-r1.ebuild
similarity index 55%
rename from x11-terms/mlterm-canna/mlterm-canna-3.9.2.ebuild
rename to x11-terms/mlterm-canna/mlterm-canna-3.9.2-r1.ebuild
index 8f05bab49..59c02f644 100644
--- a/x11-terms/mlterm-canna/mlterm-canna-3.9.2.ebuild
+++ b/x11-terms/mlterm-canna/mlterm-canna-3.9.2-r1.ebuild
@@ -14,13 +14,29 @@ S="${WORKDIR}/${MYP}"
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
+IUSE="cairo fbcon wayland X xft"
 
-DEPEND="app-i18n/canna"
+DEPEND="
+	app-i18n/canna
+	cairo? ( x11-libs/cairo[X(+)] )
+	wayland? (
+		dev-libs/wayland
+		x11-libs/libxkbcommon
+	)
+	X? (
+		x11-libs/libICE
+		x11-libs/libSM
+		x11-libs/libX11
+	)
+	xft? ( x11-libs/libXft )
+"
 RDEPEND="
 	${DEPEND}
-	~x11-terms/mlterm-${PV}
+	~x11-terms/mlterm-${PV}[cairo=,fbcon=,wayland=,X=,xft=]
 "
 
+REQUIRED_USE="|| ( X fbcon wayland )"
+
 src_configure() {
 	local myconf=(
 		--disable-brlapi
@@ -40,11 +56,12 @@ src_configure() {
 		--disable-vt52
 		--disable-wnn
 		--enable-canna
-		--with-gui=console
+		--with-gui=$(usex X "xlib" "")$(usex fbcon ",fb" "")$(usex wayland ",wayland" "")
+		--with-type-engines=xcore$(usex xft ",xft" "")$(usex cairo ",cairo" "")
 		--without-gtk
-		--without-type-engines
 		--without-utmp
-		--without-x
+
+		$(use_with X x)
 	)
 
 	addpredict /dev/ptmx
@@ -60,6 +77,16 @@ src_compile() {
 	popd || die
 	pushd inputmethod/canna || die
 	emake
+	popd || die
+	pushd gui/fb/inputmethod/canna/ || die
+	emake
+	popd || die
+
+	if use wayland; then
+		pushd gui/wayland/inputmethod/canna/ || die
+		emake
+		popd || die
+	fi
 }
 
 src_test() {
@@ -69,5 +96,16 @@ src_test() {
 src_install() {
 	pushd inputmethod/canna || die
 	DESTDIR="${D}" emake install
+	popd || die
+	pushd gui/fb/inputmethod/canna/ || die
+	DESTDIR="${D}" emake install
+	popd || die
+
+	if use wayland; then
+		pushd gui/wayland/inputmethod/canna/ || die
+		DESTDIR="${D}" emake install
+		popd || die
+	fi
+
 	find "${ED}" -name '*.la' -delete || die
 }


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

* [gentoo-commits] repo/proj/guru:dev commit in: x11-terms/mlterm-canna/
@ 2023-02-10  6:48 Joe Kappus
  0 siblings, 0 replies; 5+ messages in thread
From: Joe Kappus @ 2023-02-10  6:48 UTC (permalink / raw
  To: gentoo-commits

commit:     05fc73e8de692a11afb8033d400e9f267334e18b
Author:     Joe Kappus <joe <AT> wt <DOT> gd>
AuthorDate: Fri Feb 10 06:46:16 2023 +0000
Commit:     Joe Kappus <joe <AT> wt <DOT> gd>
CommitDate: Fri Feb 10 06:46:16 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=05fc73e8

x11-terms/mlterm-canna: update HOMEPAGE

Signed-off-by: Joe Kappus <joe <AT> wt.gd>

 x11-terms/mlterm-canna/mlterm-canna-3.9.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/mlterm-canna/mlterm-canna-3.9.2-r1.ebuild b/x11-terms/mlterm-canna/mlterm-canna-3.9.2-r1.ebuild
index 59c02f644..da755718e 100644
--- a/x11-terms/mlterm-canna/mlterm-canna-3.9.2-r1.ebuild
+++ b/x11-terms/mlterm-canna/mlterm-canna-3.9.2-r1.ebuild
@@ -7,7 +7,7 @@ MYPN="mlterm"
 MYP="${MYPN}-${PV}"
 
 DESCRIPTION="canna plugin for mlterm"
-HOMEPAGE="http://mlterm.sourceforge.net/"
+HOMEPAGE="https://mlterm.sourceforge.net/"
 SRC_URI="mirror://sourceforge/${MYPN}/${MYP}.tar.gz"
 S="${WORKDIR}/${MYP}"
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: x11-terms/mlterm-canna/
  2023-11-02  9:21 [gentoo-commits] repo/proj/guru:master " Rui Huang
@ 2023-11-02  9:14 ` Rui Huang
  0 siblings, 0 replies; 5+ messages in thread
From: Rui Huang @ 2023-11-02  9:14 UTC (permalink / raw
  To: gentoo-commits

commit:     7ebd641f87fbf9ea5bc585cf4c7f7c2bc5e9b80f
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Thu Nov  2 07:47:32 2023 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Thu Nov  2 07:48:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7ebd641f

x11-terms/mlterm-canna: add 3.9.3, drop 3.9.2-r1, fix QA

Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 x11-terms/mlterm-canna/Manifest                                         | 2 +-
 .../{mlterm-canna-3.9.2-r1.ebuild => mlterm-canna-3.9.3.ebuild}         | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/mlterm-canna/Manifest b/x11-terms/mlterm-canna/Manifest
index 73fcc9de77..401e41540d 100644
--- a/x11-terms/mlterm-canna/Manifest
+++ b/x11-terms/mlterm-canna/Manifest
@@ -1 +1 @@
-DIST mlterm-3.9.2.tar.gz 4259208 BLAKE2B 161d496326abd58e8dabedd4c49e0e17ade77956fd0be6f450d5adf2953fe04a2c62a40d3694296d12cdea1274410e17a64cc62f88b953d894cce216425b29f3 SHA512 3076dafbc98a01738d88acf0e0f52e15d33862b3e9b7a851a4496f1be07ee9e51103daf7842954bcae1f1ba62bd6645b0bd60af7f66ee98721bdf3786b9fcbaf
+DIST mlterm-3.9.3.tar.gz 4272090 BLAKE2B 8f71a8c5cd63b7caa803e699a7e42b8d11cb18324595a7a255c7542df6fad6b968bf56a03a2d19a2381d103232685e3c3cd62388ac036a024870fbe3d222d081 SHA512 67c22ee8411cef499620a37e43af5609bb52cf8be6b617f0dfa6605217eb7f66227bfe073ca9b878606392fac26f94299221b5890fba1d90a3afc35a0f3132a1

diff --git a/x11-terms/mlterm-canna/mlterm-canna-3.9.2-r1.ebuild b/x11-terms/mlterm-canna/mlterm-canna-3.9.3.ebuild
similarity index 100%
rename from x11-terms/mlterm-canna/mlterm-canna-3.9.2-r1.ebuild
rename to x11-terms/mlterm-canna/mlterm-canna-3.9.3.ebuild


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

* [gentoo-commits] repo/proj/guru:dev commit in: x11-terms/mlterm-canna/
@ 2024-04-01  8:48 Rui Huang
  0 siblings, 0 replies; 5+ messages in thread
From: Rui Huang @ 2024-04-01  8:48 UTC (permalink / raw
  To: gentoo-commits

commit:     f2619ed68af74f675d4f1e576933c67e923b541b
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Apr  1 08:48:13 2024 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Apr  1 08:48:13 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f2619ed6

x11-terms/mlterm-canna: treeclean

Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 x11-terms/mlterm-canna/Manifest                  |   1 -
 x11-terms/mlterm-canna/metadata.xml              |   8 --
 x11-terms/mlterm-canna/mlterm-canna-3.9.3.ebuild | 111 -----------------------
 3 files changed, 120 deletions(-)

diff --git a/x11-terms/mlterm-canna/Manifest b/x11-terms/mlterm-canna/Manifest
deleted file mode 100644
index 401e41540d..0000000000
--- a/x11-terms/mlterm-canna/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST mlterm-3.9.3.tar.gz 4272090 BLAKE2B 8f71a8c5cd63b7caa803e699a7e42b8d11cb18324595a7a255c7542df6fad6b968bf56a03a2d19a2381d103232685e3c3cd62388ac036a024870fbe3d222d081 SHA512 67c22ee8411cef499620a37e43af5609bb52cf8be6b617f0dfa6605217eb7f66227bfe073ca9b878606392fac26f94299221b5890fba1d90a3afc35a0f3132a1

diff --git a/x11-terms/mlterm-canna/metadata.xml b/x11-terms/mlterm-canna/metadata.xml
deleted file mode 100644
index edd5589cdb..0000000000
--- a/x11-terms/mlterm-canna/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<!-- maintainer-needed -->
-	<upstream>
-		<remote-id type="sourceforge">mlterm</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/x11-terms/mlterm-canna/mlterm-canna-3.9.3.ebuild b/x11-terms/mlterm-canna/mlterm-canna-3.9.3.ebuild
deleted file mode 100644
index da755718ee..0000000000
--- a/x11-terms/mlterm-canna/mlterm-canna-3.9.3.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MYPN="mlterm"
-MYP="${MYPN}-${PV}"
-
-DESCRIPTION="canna plugin for mlterm"
-HOMEPAGE="https://mlterm.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${MYPN}/${MYP}.tar.gz"
-S="${WORKDIR}/${MYP}"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="cairo fbcon wayland X xft"
-
-DEPEND="
-	app-i18n/canna
-	cairo? ( x11-libs/cairo[X(+)] )
-	wayland? (
-		dev-libs/wayland
-		x11-libs/libxkbcommon
-	)
-	X? (
-		x11-libs/libICE
-		x11-libs/libSM
-		x11-libs/libX11
-	)
-	xft? ( x11-libs/libXft )
-"
-RDEPEND="
-	${DEPEND}
-	~x11-terms/mlterm-${PV}[cairo=,fbcon=,wayland=,X=,xft=]
-"
-
-REQUIRED_USE="|| ( X fbcon wayland )"
-
-src_configure() {
-	local myconf=(
-		--disable-brlapi
-		--disable-debug
-		--disable-fcitx
-		--disable-fribidi
-		--disable-ibus
-		--disable-m17nlib
-		--disable-nls
-		--disable-optimize-redrawing
-		--disable-otl
-		--disable-scim
-		--disable-skk
-		--disable-ssh2
-		--disable-static
-		--disable-uim
-		--disable-vt52
-		--disable-wnn
-		--enable-canna
-		--with-gui=$(usex X "xlib" "")$(usex fbcon ",fb" "")$(usex wayland ",wayland" "")
-		--with-type-engines=xcore$(usex xft ",xft" "")$(usex cairo ",cairo" "")
-		--without-gtk
-		--without-utmp
-
-		$(use_with X x)
-	)
-
-	addpredict /dev/ptmx
-	econf "${myconf[@]}"
-}
-
-src_compile() {
-	pushd baselib/src || die
-	emake collect-headers libpobl.la
-	popd || die
-	pushd encodefilter/src || die
-	emake collect-headers
-	popd || die
-	pushd inputmethod/canna || die
-	emake
-	popd || die
-	pushd gui/fb/inputmethod/canna/ || die
-	emake
-	popd || die
-
-	if use wayland; then
-		pushd gui/wayland/inputmethod/canna/ || die
-		emake
-		popd || die
-	fi
-}
-
-src_test() {
-	:
-}
-
-src_install() {
-	pushd inputmethod/canna || die
-	DESTDIR="${D}" emake install
-	popd || die
-	pushd gui/fb/inputmethod/canna/ || die
-	DESTDIR="${D}" emake install
-	popd || die
-
-	if use wayland; then
-		pushd gui/wayland/inputmethod/canna/ || die
-		DESTDIR="${D}" emake install
-		popd || die
-	fi
-
-	find "${ED}" -name '*.la' -delete || die
-}


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

end of thread, other threads:[~2024-04-01  8:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-10  6:48 [gentoo-commits] repo/proj/guru:dev commit in: x11-terms/mlterm-canna/ Joe Kappus
  -- strict thread matches above, loose matches on Subject: below --
2024-04-01  8:48 Rui Huang
2023-11-02  9:21 [gentoo-commits] repo/proj/guru:master " Rui Huang
2023-11-02  9:14 ` [gentoo-commits] repo/proj/guru:dev " Rui Huang
2022-06-30 10:26 Alessandro Barbieri
2022-06-26  2:36 Alessandro Barbieri

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