public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-libs/liblingoteach/
@ 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:     714bd9cbf25f47c70b6dc9096b3d847f4db06b55
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  2 17:06:42 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=714bd9cb

media-libs/liblingoteach: bump EAPI

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-libs/liblingoteach/liblingoteach-0.2.3.ebuild | 12 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/media-libs/liblingoteach/liblingoteach-0.2.3.ebuild b/media-libs/liblingoteach/liblingoteach-0.2.3.ebuild
index 054e996b92c..cc1b3d3936b 100644
--- a/media-libs/liblingoteach/liblingoteach-0.2.3.ebuild
+++ b/media-libs/liblingoteach/liblingoteach-0.2.3.ebuild
@@ -1,7 +1,7 @@
-# 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
 
 DESCRIPTION="A library to support lingoteach-ui and for generic lesson development"
 HOMEPAGE="http://lingoteach.sourceforge.net"
@@ -18,13 +18,7 @@ DEPEND="${RDEPEND}
 	virtual/pkgconfig"
 
 src_configure() {
-	econf --disable-dependency-tracking \
+	econf \
 		$(use_enable zlib compression) \
 		$(use_enable debug)
 }
-
-src_install() {
-	emake HTML_DIR="/usr/share/doc/${PF}" DOC_MODULE="" \
-		DESTDIR="${D}" install || die
-	dodoc AUTHORS ChangeLog HACKING NEWS README
-}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/liblingoteach/
@ 2024-05-19 18:11 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-05-19 18:11 UTC (permalink / raw
  To: gentoo-commits

commit:     b841f47b3f3b916ab0ebc52982447bd38d60e6ab
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 18:08:50 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun May 19 18:08:50 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b841f47b

media-libs/liblingoteach: update EAPI 6 -> 8

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

 .../liblingoteach/liblingoteach-0.2.3-r1.ebuild    | 34 ++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild b/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild
new file mode 100644
index 000000000000..cf498135095d
--- /dev/null
+++ b/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A library to support lingoteach-ui and for generic lesson development"
+HOMEPAGE="http://lingoteach.sourceforge.net"
+SRC_URI="https://downloads.sourceforge.net/lingoteach/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="debug zlib"
+
+RDEPEND="
+	zlib? ( sys-libs/zlib )
+	dev-libs/libxml2
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+	local myeconfargs=(
+		$(use_enable zlib compression)
+		$(use_enable debug)
+	)
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+	mv "${ED}/usr/share/doc/${P}" "${ED}/usr/share/doc/${PF}" || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/liblingoteach/
@ 2024-05-19 18:11 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-05-19 18:11 UTC (permalink / raw
  To: gentoo-commits

commit:     77d83b7b520a11b91b7331201015f0f4288f9102
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 18:09:23 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun May 19 18:09:23 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77d83b7b

media-libs/liblingoteach: dekeyword ppc

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

 media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild | 2 +-
 media-libs/liblingoteach/liblingoteach-0.2.3.ebuild    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild b/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild
index cf498135095d..4c5420655ffc 100644
--- a/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild
+++ b/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://downloads.sourceforge.net/lingoteach/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~x86"
 IUSE="debug zlib"
 
 RDEPEND="

diff --git a/media-libs/liblingoteach/liblingoteach-0.2.3.ebuild b/media-libs/liblingoteach/liblingoteach-0.2.3.ebuild
index 379154d271b3..8f3db928a6ee 100644
--- a/media-libs/liblingoteach/liblingoteach-0.2.3.ebuild
+++ b/media-libs/liblingoteach/liblingoteach-0.2.3.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://downloads.sourceforge.net/lingoteach/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="debug zlib"
 
 RDEPEND="zlib? ( sys-libs/zlib )


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/liblingoteach/
@ 2024-06-08 17:33 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-06-08 17:33 UTC (permalink / raw
  To: gentoo-commits

commit:     28bc92dc13360016ab8c1d98d04e2358e123be94
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  8 17:33:28 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jun  8 17:33:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28bc92dc

media-libs/liblingoteach: Stabilize 0.2.3-r1 amd64, #933838

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

 media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild b/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild
index 4c5420655ffc..95253511e9be 100644
--- a/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild
+++ b/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://downloads.sourceforge.net/lingoteach/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="debug zlib"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/liblingoteach/
@ 2024-06-08 17:34 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-06-08 17:34 UTC (permalink / raw
  To: gentoo-commits

commit:     b082638a4d8686d5b61a302e8155470634f8e8be
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  8 17:34:02 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jun  8 17:34:16 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b082638a

media-libs/liblingoteach: drop 0.2.3

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

 .../liblingoteach/liblingoteach-0.2.3.ebuild       | 30 ----------------------
 1 file changed, 30 deletions(-)

diff --git a/media-libs/liblingoteach/liblingoteach-0.2.3.ebuild b/media-libs/liblingoteach/liblingoteach-0.2.3.ebuild
deleted file mode 100644
index 8f3db928a6ee..000000000000
--- a/media-libs/liblingoteach/liblingoteach-0.2.3.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A library to support lingoteach-ui and for generic lesson development"
-HOMEPAGE="http://lingoteach.sourceforge.net"
-SRC_URI="https://downloads.sourceforge.net/lingoteach/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE="debug zlib"
-
-RDEPEND="zlib? ( sys-libs/zlib )
-	dev-libs/libxml2"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-src_configure() {
-	econf \
-		--disable-static \
-		$(use_enable zlib compression) \
-		$(use_enable debug)
-}
-
-src_install() {
-	default
-	find "${ED}" -name '*.la' -delete || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/liblingoteach/
@ 2024-11-19 13:52 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2024-11-19 13:52 UTC (permalink / raw
  To: gentoo-commits

commit:     5bac233dc8d258936d1622c55591b10adf51a943
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 19 13:39:42 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 19 13:39:42 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bac233d

media-libs/liblingoteach: fix modern C issue in configure

Closes: https://bugs.gentoo.org/899826
Signed-off-by: Sam James <sam <AT> gentoo.org>

 ...blingoteach-0.2.3-r1.ebuild => liblingoteach-0.2.3-r2.ebuild} | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild b/media-libs/liblingoteach/liblingoteach-0.2.3-r2.ebuild
similarity index 90%
rename from media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild
rename to media-libs/liblingoteach/liblingoteach-0.2.3-r2.ebuild
index 95253511e9be..db15a931adee 100644
--- a/media-libs/liblingoteach/liblingoteach-0.2.3-r1.ebuild
+++ b/media-libs/liblingoteach/liblingoteach-0.2.3-r2.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=8
 
+inherit autotools
+
 DESCRIPTION="A library to support lingoteach-ui and for generic lesson development"
 HOMEPAGE="http://lingoteach.sourceforge.net"
 SRC_URI="https://downloads.sourceforge.net/lingoteach/${P}.tar.gz"
@@ -19,6 +21,13 @@ RDEPEND="
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
 
+src_prepare() {
+	default
+
+	# bug #899826
+	eautoreconf
+}
+
 src_configure() {
 	local myeconfargs=(
 		$(use_enable zlib compression)


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

end of thread, other threads:[~2024-11-19 13:52 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-19 13:52 [gentoo-commits] repo/gentoo:master commit in: media-libs/liblingoteach/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-06-08 17:34 Arthur Zamarin
2024-06-08 17:33 Arthur Zamarin
2024-05-19 18:11 Arthur Zamarin
2024-05-19 18:11 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