public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-video/videotrans/
@ 2019-11-13  1:03 Aaron Bauman
  0 siblings, 0 replies; 3+ messages in thread
From: Aaron Bauman @ 2019-11-13  1:03 UTC (permalink / raw
  To: gentoo-commits

commit:     a33bda7a765b6fec7eeda6489a93a3e0fd509717
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 12 23:59:38 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Nov 13 01:02:34 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a33bda7a

media-video/videotrans: drop old EAPI

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 media-video/videotrans/videotrans-1.6.1-r1.ebuild | 35 -----------------------
 1 file changed, 35 deletions(-)

diff --git a/media-video/videotrans/videotrans-1.6.1-r1.ebuild b/media-video/videotrans/videotrans-1.6.1-r1.ebuild
deleted file mode 100644
index 1dd248ee9bd..00000000000
--- a/media-video/videotrans/videotrans-1.6.1-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit base eutils
-
-DESCRIPTION="A package to convert movies to DVD format and to build DVDs with"
-HOMEPAGE="http://videotrans.sourceforge.net/"
-SRC_URI="mirror://sourceforge/videotrans/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-
-KEYWORDS="~amd64 ~ppc ~x86"
-
-IUSE=""
-
-DEPEND="virtual/ffmpeg
-	media-video/mplayer
-	media-video/mjpegtools[png]
-	media-video/dvdauthor
-	virtual/imagemagick-tools"
-
-RDEPEND="${DEPEND}
-	www-client/lynx
-	app-shells/bash
-	sys-devel/bc"
-
-DOCS="aspects.txt CHANGES THANKS TODO"
-
-src_prepare() {
-	# fixing LDFLAGS usage
-	sed -i -e 's|^\(LDFLAGS.*=\).*\( @LIBS@.*\)|\1\2 @LDFLAGS@|' src/Makefile.in
-}


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

* [gentoo-commits] repo/gentoo:master commit in: media-video/videotrans/
@ 2021-11-29 19:00 Jakov Smolić
  0 siblings, 0 replies; 3+ messages in thread
From: Jakov Smolić @ 2021-11-29 19:00 UTC (permalink / raw
  To: gentoo-commits

commit:     f1ed4200a86a180e683b9446d92920bcde0a2c27
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 29 18:59:38 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Nov 29 18:59:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1ed4200

media-video/videotrans: Port to EAPI 8

Closes: https://bugs.gentoo.org/819423
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 media-video/videotrans/videotrans-1.6.1-r2.ebuild | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/media-video/videotrans/videotrans-1.6.1-r2.ebuild b/media-video/videotrans/videotrans-1.6.1-r2.ebuild
index ea33b07bb2a6..93db7f9ec91e 100644
--- a/media-video/videotrans/videotrans-1.6.1-r2.ebuild
+++ b/media-video/videotrans/videotrans-1.6.1-r2.ebuild
@@ -1,8 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-inherit eutils
+EAPI=8
 
 DESCRIPTION="A package to convert movies to DVD format and to build DVDs with"
 HOMEPAGE="http://videotrans.sourceforge.net/"
@@ -10,6 +9,7 @@ SRC_URI="mirror://sourceforge/videotrans/${P}.tar.bz2"
 
 LICENSE="BSD"
 SLOT="0"
+KEYWORDS="~amd64"
 
 DEPEND="
 	media-video/mplayer
@@ -25,10 +25,11 @@ RDEPEND="${DEPEND}
 	sys-devel/bc
 "
 
-DOCS="aspects.txt CHANGES THANKS TODO"
+DOCS=( aspects.txt CHANGES THANKS TODO )
 
 src_prepare() {
+	default
 	# fixing LDFLAGS usage
-	sed -i -e 's|^\(LDFLAGS.*=\).*\( @LIBS@.*\)|\1\2 @LDFLAGS@|' src/Makefile.in
+	sed -i -e 's|^\(LDFLAGS.*=\).*\( @LIBS@.*\)|\1\2 @LDFLAGS@|' src/Makefile.in || die
 
 }


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

* [gentoo-commits] repo/gentoo:master commit in: media-video/videotrans/
@ 2024-01-08  9:48 Sam James
  0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2024-01-08  9:48 UTC (permalink / raw
  To: gentoo-commits

commit:     2a70f20bcbf803018e5f17f8b03b8c638527027d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  8 09:37:03 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan  8 09:42:05 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a70f20b

media-video/videotrans: sys-devel/bc -> app-alternatives/bc

All of these will be using app-alternatives/bc anyway as they're not calling

bc-reference, so make the dep reflect reality.

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

 media-video/videotrans/videotrans-1.6.1-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/videotrans/videotrans-1.6.1-r2.ebuild b/media-video/videotrans/videotrans-1.6.1-r2.ebuild
index 93db7f9ec91e..e1ca3b6b988c 100644
--- a/media-video/videotrans/videotrans-1.6.1-r2.ebuild
+++ b/media-video/videotrans/videotrans-1.6.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -22,7 +22,7 @@ DEPEND="
 RDEPEND="${DEPEND}
 	www-client/lynx
 	app-shells/bash
-	sys-devel/bc
+	app-alternatives/bc
 "
 
 DOCS=( aspects.txt CHANGES THANKS TODO )


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

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

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-08  9:48 [gentoo-commits] repo/gentoo:master commit in: media-video/videotrans/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2021-11-29 19:00 Jakov Smolić
2019-11-13  1:03 Aaron Bauman

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