Update to 0.5.11

PR:		56516
Submitted by:	Tom McLaughlin <tmclaugh@sdf.lonestar.org>
This commit is contained in:
Alexander Nedotsukov 2004-04-14 06:14:48 +00:00
parent f51cc02340
commit c2284072c2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=106990
5 changed files with 3 additions and 46 deletions

View file

@ -6,8 +6,7 @@
#
PORTNAME= sound-juicer
PORTVERSION= 0.5.10.1
PORTREVISION= 5
PORTVERSION= 0.5.11
CATEGORIES= audio gnome
MASTER_SITES= http://www.burtonini.com/computing/
DIST_SUBDIR= gnome2

View file

@ -1,2 +1,2 @@
MD5 (gnome2/sound-juicer-0.5.10.1.tar.gz) = a879cce136a1f26274f0cb1906fbec71
SIZE (gnome2/sound-juicer-0.5.10.1.tar.gz) = 432801
MD5 (gnome2/sound-juicer-0.5.11.tar.gz) = ff6fd389727de46db65330eb4a9eee4f
SIZE (gnome2/sound-juicer-0.5.11.tar.gz) = 496625

View file

@ -1,11 +0,0 @@
--- configure.orig Sat Mar 13 11:06:49 2004
+++ configure Sat Mar 13 11:07:45 2004
@@ -6889,7 +6889,7 @@
HAVE_GSTREAMER=no
# Look for 0.7
-GST_MAJORMINOR=0.7
+GST_MAJORMINOR=0.8
succeeded=no

View file

@ -1,20 +0,0 @@
--- src/cd-drive.c.orig Sat Feb 7 18:02:54 2004
+++ src/cd-drive.c Sat Feb 7 18:03:46 2004
@@ -66,7 +66,7 @@
/* For dvd_plus_rw_utils.cpp */
int get_dvd_r_rw_profile (const char *name);
-int get_mmc_profile (void *fd);
+int get_mmc_profile (int fd);
static void
add_dvd_plus (CDDrive *cdrom)
@@ -103,7 +103,7 @@
return CD_MEDIA_TYPE_ERROR;
}
- mmc_profile = get_mmc_profile ((void *)&fd);
+ mmc_profile = get_mmc_profile (fd);
close (fd);
switch (mmc_profile) {

View file

@ -1,11 +0,0 @@
--- src/dvd_plus_rw_utils.cpp.orig Wed Jan 21 12:47:50 2004
+++ src/dvd_plus_rw_utils.cpp Wed Jan 21 12:48:04 2004
@@ -113,7 +113,7 @@
}
extern "C"
-int get_mmc_profile (void *fd)
+int get_mmc_profile (int fd)
{ Scsi_Command cmd(fd);
unsigned char buf[8];
int profile=-1,once=1;