pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/multimedia/acidrip



Module Name:    pkgsrc
Committed By:   joerg
Date:           Sun Mar 29 01:05:18 UTC 2020

Modified Files:
        pkgsrc/multimedia/acidrip: Makefile distinfo
Added Files:
        pkgsrc/multimedia/acidrip/patches: patch-Makefile.PL

Log Message:
Don't require mencoder to support mp3lame backend as acidrip supports
LAVC as well.


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 pkgsrc/multimedia/acidrip/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/multimedia/acidrip/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/multimedia/acidrip/patches/patch-Makefile.PL

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/multimedia/acidrip/Makefile
diff -u pkgsrc/multimedia/acidrip/Makefile:1.26 pkgsrc/multimedia/acidrip/Makefile:1.27
--- pkgsrc/multimedia/acidrip/Makefile:1.26     Sun Nov  3 17:11:59 2019
+++ pkgsrc/multimedia/acidrip/Makefile  Sun Mar 29 01:05:18 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.26 2019/11/03 17:11:59 rillig Exp $
+# $NetBSD: Makefile,v 1.27 2020/03/29 01:05:18 joerg Exp $
 #
 
 DISTNAME=      acidrip-0.14
@@ -10,6 +10,7 @@ MAINTAINER=   pkgsrc-users%NetBSD.org@localhost
 #HOMEPAGE=     http://untrepid.com/acidrip/
 COMMENT=       Gtk2::Perl application for ripping and encoding DVDs
 
+DEPENDS+=      lame-[0-9]*:../../audio/lame
 DEPENDS+=      lsdvd-[0-9]*:../../multimedia/lsdvd
 DEPENDS+=      mencoder-[0-9]*:../../multimedia/mencoder
 DEPENDS+=      mplayer-[0-9]*:../../multimedia/mplayer

Index: pkgsrc/multimedia/acidrip/distinfo
diff -u pkgsrc/multimedia/acidrip/distinfo:1.4 pkgsrc/multimedia/acidrip/distinfo:1.5
--- pkgsrc/multimedia/acidrip/distinfo:1.4      Tue Nov  3 23:54:22 2015
+++ pkgsrc/multimedia/acidrip/distinfo  Sun Mar 29 01:05:18 2020
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.4 2015/11/03 23:54:22 agc Exp $
+$NetBSD: distinfo,v 1.5 2020/03/29 01:05:18 joerg Exp $
 
 SHA1 (acidrip-0.14.tar.gz) = 5873c835c0d52edc2c1a799e9751980b6c7cc4f1
 RMD160 (acidrip-0.14.tar.gz) = 14d0f5969fdc5f0c6777e4bfdd38628d0c747608
 SHA512 (acidrip-0.14.tar.gz) = 3ee0e329bd7e5eb4067d618fc79a49707084526d53e8c10cd9ec560828cf621e8d7263259cc8bc7944e6f9d7b7fd1fc5b8a42a8f37f18666f1974f240edb99a0
 Size (acidrip-0.14.tar.gz) = 92086 bytes
+SHA1 (patch-Makefile.PL) = 914aa3d1a8a7aa3ee2ad6b4b989e8afe17dd920c

Added files:

Index: pkgsrc/multimedia/acidrip/patches/patch-Makefile.PL
diff -u /dev/null pkgsrc/multimedia/acidrip/patches/patch-Makefile.PL:1.1
--- /dev/null   Sun Mar 29 01:05:18 2020
+++ pkgsrc/multimedia/acidrip/patches/patch-Makefile.PL Sun Mar 29 01:05:18 2020
@@ -0,0 +1,28 @@
+$NetBSD: patch-Makefile.PL,v 1.1 2020/03/29 01:05:18 joerg Exp $
+
+Don't care if mp3lame is supported in mencoder. LAVC can be used just as well.
+
+--- Makefile.PL.orig   2020-03-29 00:27:46.399480924 +0000
++++ Makefile.PL
+@@ -59,19 +59,13 @@ print "test for MPlayer: "; die "Not Fou
+   "AcidRip is based around the MPlayer video player. it has not been found on\n" .
+   "your current path. Install it from http://mplayerhq/hu see INSTALL.html or\n" .
+   "INSTALL for installation instructions.\n" .
+-  "***************\n\n" if ( system "mplayer 2&>1 > /dev/null" ); print "found\n";
++  "***************\n\n" if ( system "mplayer > /dev/null 2>&1" ); print "found\n";
+ 
+ print "test for MEncoder: "; die "Not Found!\n\n***************\n" .
+   "AcidRip uses MEncoder, which is part of MPlayer video player package. This\n" .
+   "was not found. Install it from http://mplayerhq/hu see INSTALL.html or\n" .
+   "INSTALL for installation instructions.\n" .
+-  "***************\n\n" if ( system "mencoder -ovc help 2> /dev/null | grep MEncoder > /dev/null" ); print "found\n";
+-
+-print "test for MP3 support in mencoder: "; die "Not Found!\n\n***************\n" .
+-  "MEncoder was found, however it does not have MP3 support built into it.\n" .
+-  "If you DO want MP3 support you'll need to recompile mplayer with mp3 support\n" .
+-  "See INSTALL or INSTALL.html for more information\n" .
+-  "***************\n\n" if ( system "mencoder -oac help 2> /dev/null | grep mp3lame > /dev/null" ); print "found\n";
++  "***************\n\n" if ( system "2> /dev/null mencoder -ovc help | grep MEncoder > /dev/null" ); print "found\n";
+ 
+ print "Everything looks good here...\n"; 
+ 



Home | Main Index | Thread Index | Old Index