public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsmf/
@ 2019-12-13  0:43 David Seifert
  0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2019-12-13  0:43 UTC (permalink / raw
  To: gentoo-commits

commit:     150fffb6b2b9e7f37a6bf0c3a52dca5f383afefd
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 13 00:42:45 2019 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Dec 13 00:42:45 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=150fffb6

media-libs/libsmf: Port to EAPI 7

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 media-libs/libsmf/libsmf-1.3.ebuild | 38 +++++++++++++++++++------------------
 1 file changed, 20 insertions(+), 18 deletions(-)

diff --git a/media-libs/libsmf/libsmf-1.3.ebuild b/media-libs/libsmf/libsmf-1.3.ebuild
index e737d43b440..374d68ee108 100644
--- a/media-libs/libsmf/libsmf-1.3.ebuild
+++ b/media-libs/libsmf/libsmf-1.3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
+EAPI=7
 
-inherit autotools-utils
+inherit autotools
 
 DESCRIPTION="Standard MIDI File format library"
 HOMEPAGE="http://libsmf.sourceforge.net/api/"
@@ -12,32 +12,34 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="amd64 ~arm ppc ppc64 x86"
-IUSE="doc readline static-libs"
+IUSE="doc readline"
 
-RDEPEND=">=dev-libs/glib-2.2:2
-	readline? ( sys-libs/readline )"
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen )
-	virtual/pkgconfig"
-
-DOCS=( NEWS TODO )
+RDEPEND="
+	dev-libs/glib:2
+	readline? ( sys-libs/readline:= )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	doc? ( app-doc/doxygen )"
 
 src_configure() {
-	local myeconfargs=(
+	econf \
+		--disable-static \
 		$(use_with readline)
-	)
-	autotools-utils_src_configure
 }
 
 src_compile() {
-	autotools-utils_src_compile
+	default
 
-	if use doc ; then
+	if use doc; then
 		doxygen doxygen.cfg || die
 	fi
 }
 
 src_install() {
-	autotools-utils_src_install
-	use doc && dohtml -r api
+	use doc && local HTML_DOCS=( api )
+	default
+
+	# no static archives
+	find "${D}" -name '*.la' -delete || die
 }


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsmf/
@ 2022-03-09 23:12 Sam James
  0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2022-03-09 23:12 UTC (permalink / raw
  To: gentoo-commits

commit:     a958e3f87c01cc4a3c78081b88e02b3398b4399b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  9 23:11:58 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar  9 23:11:58 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a958e3f8

media-libs/libsmf: fix UnusedInherits (autotools)

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/libsmf/libsmf-1.3.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/media-libs/libsmf/libsmf-1.3.ebuild b/media-libs/libsmf/libsmf-1.3.ebuild
index 374d68ee1085..858716580daa 100644
--- a/media-libs/libsmf/libsmf-1.3.ebuild
+++ b/media-libs/libsmf/libsmf-1.3.ebuild
@@ -1,10 +1,8 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit autotools
-
 DESCRIPTION="Standard MIDI File format library"
 HOMEPAGE="http://libsmf.sourceforge.net/api/"
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/libsmf/
@ 2023-07-07  7:31 Miroslav Šulc
  0 siblings, 0 replies; 3+ messages in thread
From: Miroslav Šulc @ 2023-07-07  7:31 UTC (permalink / raw
  To: gentoo-commits

commit:     b59e95ab1ef6c6fdb4bd66707e0936f610bf78a9
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Thu Jul  6 09:10:59 2023 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Fri Jul  7 07:31:27 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b59e95ab

media-libs/libsmf: use HTTPS

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/libsmf/libsmf-1.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libsmf/libsmf-1.3.ebuild b/media-libs/libsmf/libsmf-1.3.ebuild
index 858716580daa..e3e1da7039f0 100644
--- a/media-libs/libsmf/libsmf-1.3.ebuild
+++ b/media-libs/libsmf/libsmf-1.3.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 DESCRIPTION="Standard MIDI File format library"
-HOMEPAGE="http://libsmf.sourceforge.net/api/"
+HOMEPAGE="https://libsmf.sourceforge.net/api/"
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"


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

end of thread, other threads:[~2023-07-07  7:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-09 23:12 [gentoo-commits] repo/gentoo:master commit in: media-libs/libsmf/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2023-07-07  7:31 Miroslav Šulc
2019-12-13  0:43 David Seifert

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