public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-pda/gnupod/
@ 2015-08-24 21:10 Chris Reffett
  0 siblings, 0 replies; 2+ messages in thread
From: Chris Reffett @ 2015-08-24 21:10 UTC (permalink / raw
  To: gentoo-commits

commit:     565baebc8eb5f5a00f8beb4f2558020255b5731d
Author:     Chris Reffett <creffett <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 24 21:10:24 2015 +0000
Commit:     Chris Reffett <creffett <AT> gentoo <DOT> org>
CommitDate: Mon Aug 24 21:10:24 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=565baebc

app-pda/gnupod: QA: Replace einstall with emake

Gentoo-Bug: 521424

Package-Manager: portage-2.2.20.1

 app-pda/gnupod/gnupod-0.99.8-r1.ebuild | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/app-pda/gnupod/gnupod-0.99.8-r1.ebuild b/app-pda/gnupod/gnupod-0.99.8-r1.ebuild
index 3f476c8..ae39be9 100644
--- a/app-pda/gnupod/gnupod-0.99.8-r1.ebuild
+++ b/app-pda/gnupod/gnupod-0.99.8-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -38,15 +38,16 @@ src_configure() {
 	econf
 }
 
+src_compile() {
+	:;
+}
+
 src_install() {
 	perl_set_version
-	sed -i -e "s:\$INC\[0\]/\$modi:${D}${VENDOR_ARCH}/\$modi:g" \
+	sed -i -e "s:\$INC\[0\]/\$modi:${VENDOR_ARCH}/\$modi:g" \
 		tools/gnupod_install.pl || die
 
-	dodir /usr/bin
-	dodir ${VENDOR_ARCH}/GNUpod
-	dodir /usr/share/info
-	einstall
+	emake DESTDIR="${D}" install
 
 	dodoc CHANGES README* doc/gnupodrc.example doc/gnutunesdb.example
 	dohtml doc/gnupod.html


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

* [gentoo-commits] repo/gentoo:master commit in: app-pda/gnupod/
@ 2020-04-26 10:35 David Seifert
  0 siblings, 0 replies; 2+ messages in thread
From: David Seifert @ 2020-04-26 10:35 UTC (permalink / raw
  To: gentoo-commits

commit:     526084ef9f998cbdafe1bf1a567cf7e3dec22712
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 26 10:34:26 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Apr 26 10:34:26 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=526084ef

app-pda/gnupod: Replace virtual/ffmpeg

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

 ...od-0.99.8-r1.ebuild => gnupod-0.99.8-r2.ebuild} | 28 ++++++++++++----------
 1 file changed, 16 insertions(+), 12 deletions(-)

diff --git a/app-pda/gnupod/gnupod-0.99.8-r1.ebuild b/app-pda/gnupod/gnupod-0.99.8-r2.ebuild
similarity index 66%
rename from app-pda/gnupod/gnupod-0.99.8-r1.ebuild
rename to app-pda/gnupod/gnupod-0.99.8-r2.ebuild
index a9984189905..69c256e6492 100644
--- a/app-pda/gnupod/gnupod-0.99.8-r1.ebuild
+++ b/app-pda/gnupod/gnupod-0.99.8-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -20,17 +20,21 @@ RDEPEND="dev-perl/TimeDate
 	dev-perl/Unicode-String
 	dev-perl/Digest-SHA1
 	dev-perl/libwww-perl
-	ffmpeg?	( virtual/ffmpeg )
-	flac?	( dev-perl/Audio-FLAC-Header
-			  media-libs/flac
-			  aac?  ( >=media-libs/faac-1.24 )
-			  mp3?  ( media-sound/lame )
-			  !aac? ( media-sound/lame ) )
-	ogg?	( dev-perl/Ogg-Vorbis-Header-PurePerl
-			  media-sound/vorbis-tools
-			  aac?  ( >=media-libs/faac-1.24 )
-			  mp3?  ( media-sound/lame )
-			  !aac? ( media-sound/lame ) )"
+	ffmpeg?	( media-video/ffmpeg )
+	flac? (
+		dev-perl/Audio-FLAC-Header
+		media-libs/flac
+		aac? ( >=media-libs/faac-1.24 )
+		mp3? ( media-sound/lame )
+		!aac? ( media-sound/lame )
+	)
+	ogg? (
+		dev-perl/Ogg-Vorbis-Header-PurePerl
+		media-sound/vorbis-tools
+		aac? ( >=media-libs/faac-1.24 )
+		mp3? ( media-sound/lame )
+		!aac? ( media-sound/lame )
+	)"
 DEPEND="${RDEPEND}"
 
 src_configure() {


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

end of thread, other threads:[~2020-04-26 10:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-26 10:35 [gentoo-commits] repo/gentoo:master commit in: app-pda/gnupod/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2015-08-24 21:10 Chris Reffett

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