* [gentoo-commits] repo/gentoo:master commit in: media-sound/gstreamripper/
@ 2019-12-10 0:42 David Seifert
0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2019-12-10 0:42 UTC (permalink / raw
To: gentoo-commits
commit: b2611d61ab41140874eeea9899d4b7dde9532240
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 10 00:41:53 2019 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Dec 10 00:41:53 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2611d61
media-sound/gstreamripper: Port to EAPI 7
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-sound/gstreamripper/gstreamripper-0.2.ebuild | 31 +++++++++++++---------
1 file changed, 18 insertions(+), 13 deletions(-)
diff --git a/media-sound/gstreamripper/gstreamripper-0.2.ebuild b/media-sound/gstreamripper/gstreamripper-0.2.ebuild
index c418b4dad9e..04fce64ff8b 100644
--- a/media-sound/gstreamripper/gstreamripper-0.2.ebuild
+++ b/media-sound/gstreamripper/gstreamripper-0.2.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=4
-inherit eutils
+EAPI=7
+
+inherit autotools desktop
MY_P=GStreamripperX-${PV}
@@ -15,23 +16,27 @@ SLOT="0"
KEYWORDS="amd64 ppc ppc64 sparc x86"
IUSE=""
-COMMON_DEPEND="x11-libs/gtk+:2"
-RDEPEND="${COMMON_DEPEND}
+RDEPEND="
+ x11-libs/gtk+:2
media-sound/streamripper"
-DEPEND="${COMMON_DEPEND}
- virtual/pkgconfig"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
-S=${WORKDIR}/${MY_P}
+S="${WORKDIR}/${MY_P}"
-src_install() {
- local docdir=/usr/share/doc/${PF}
+src_compile() {
+ emake CFLAGS="${CFLAGS}"
+}
+src_install() {
+ local docdir="${EPREFIX}/usr/share/doc/${PF}"
emake \
DESTDIR="${D}" \
- gstreamripperxdocdir=${docdir} \
- install || die
+ gstreamripperxdocdir="${docdir}" \
+ install
+ einstalldocs
- rm -f "${D}"/${docdir}/{COPYING,NEWS,TODO}
+ rm "${ED}"/${docdir}/COPYING || die
make_desktop_entry gstreamripperx GStreamripperX
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/gstreamripper/
@ 2021-05-09 13:46 David Seifert
0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2021-05-09 13:46 UTC (permalink / raw
To: gentoo-commits
commit: 7433197f75a412de07273f28dc9166388e165ef8
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun May 9 13:46:16 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun May 9 13:46:16 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7433197f
media-sound/gstreamripper: Clean up ebuild
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-sound/gstreamripper/gstreamripper-0.2.ebuild | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/media-sound/gstreamripper/gstreamripper-0.2.ebuild b/media-sound/gstreamripper/gstreamripper-0.2.ebuild
index 04fce64ff8b..38325af58be 100644
--- a/media-sound/gstreamripper/gstreamripper-0.2.ebuild
+++ b/media-sound/gstreamripper/gstreamripper-0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -10,11 +10,11 @@ MY_P=GStreamripperX-${PV}
DESCRIPTION="A GTK+ toolkit based frontend for streamripper"
HOMEPAGE="https://sourceforge.net/projects/gstreamripper/"
SRC_URI="mirror://sourceforge/gstreamripper/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 sparc x86"
-IUSE=""
RDEPEND="
x11-libs/gtk+:2
@@ -22,8 +22,6 @@ RDEPEND="
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
-S="${WORKDIR}/${MY_P}"
-
src_compile() {
emake CFLAGS="${CFLAGS}"
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/gstreamripper/
@ 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: 523781b7cdfad033ba960e5f1de86f2b159d946b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 9 22:54:59 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 9 22:54:59 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=523781b7
media-sound/gstreamripper: fix UnusedInherits (autotools)
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-sound/gstreamripper/gstreamripper-0.2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-sound/gstreamripper/gstreamripper-0.2.ebuild b/media-sound/gstreamripper/gstreamripper-0.2.ebuild
index 38325af58bec..5e95bb7b5d9b 100644
--- a/media-sound/gstreamripper/gstreamripper-0.2.ebuild
+++ b/media-sound/gstreamripper/gstreamripper-0.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit autotools desktop
+inherit desktop
MY_P=GStreamripperX-${PV}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-03-09 23:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-10 0:42 [gentoo-commits] repo/gentoo:master commit in: media-sound/gstreamripper/ David Seifert
-- strict thread matches above, loose matches on Subject: below --
2021-05-09 13:46 David Seifert
2022-03-09 23:12 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox