1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00

- Update to 1.0.4

This commit is contained in:
Dennis Herrmann 2010-01-25 22:44:21 +00:00
parent 636839875e
commit 15b73768ae
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=248576
6 changed files with 5 additions and 54 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= vitunes
PORTVERSION= 1.0.3
PORTVERSION= 1.0.4
CATEGORIES= audio
MASTER_SITES= http://www.vitunes.org/files/ \
http://mirror.4bit.ws/ \
@ -26,5 +26,6 @@ MAN1= vitunes.1
post-patch:
@${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|g' ${WRKSRC}/Makefile
@${REINPLACE_CMD} -e '26d' ${WRKSRC}/vitunes.h
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (vitunes-1.0.3.tgz) = 66a66e7e99b747f5316dfdbd200e76c4
SHA256 (vitunes-1.0.3.tgz) = fb01a30551b94f92e10b8c57e574539bb754effca1ef8fcd312d6beebe069fed
SIZE (vitunes-1.0.3.tgz) = 56656
MD5 (vitunes-1.0.4.tgz) = 68b1c0d92fd6e68d1c93f8cf1b5bedf6
SHA256 (vitunes-1.0.4.tgz) = 6586884d7c49d56c257523220f5bbd5b777150c00a65b1edbe3b563f8ede9aff
SIZE (vitunes-1.0.4.tgz) = 59648

View File

@ -1,20 +0,0 @@
--- ./medialib.c.orig 2010-01-14 21:05:31.000000000 +0100
+++ ./medialib.c 2010-01-14 21:07:02.000000000 +0100
@@ -351,7 +351,7 @@
* last extracted meta-info from it (otherwise we ignore)
*/
- if (sb.st_mtim.tv_sec > mdb.library->files[i]->last_updated) {
+ if (sb.st_mtime > mdb.library->files[i]->last_updated) {
mi = mi_extract(filename);
if (mi == NULL) {
@@ -457,7 +457,7 @@
if (idx != -1) {
/* file already exists in library database - update */
- if (ftsent->fts_statp->st_mtim.tv_sec >
+ if (ftsent->fts_statp->st_mtime >
mdb.library->files[idx]->last_updated) {
/* file has been modified since we last extracted info */

View File

@ -1,10 +0,0 @@
--- ./meta_info.h.orig 2010-01-14 06:38:34.000000000 +0100
+++ ./meta_info.h 2010-01-14 21:03:35.000000000 +0100
@@ -22,6 +22,7 @@
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
+#include <strings.h>
#include <ctype.h>
#include <stdio.h>
#include <errno.h>

View File

@ -1,10 +0,0 @@
--- ./uinterface.h.orig 2010-01-14 06:38:34.000000000 +0100
+++ ./uinterface.h 2010-01-14 21:03:35.000000000 +0100
@@ -18,7 +18,6 @@
#define UINTERFACE_H
#include <sys/ioctl.h>
-#include <sys/ioctl_compat.h>
#include <ncurses.h>
#include <ctype.h>
#include <stdio.h>

View File

@ -1,10 +0,0 @@
--- ./vitunes.h.orig 2010-01-14 06:38:34.000000000 +0100
+++ ./vitunes.h 2010-01-14 21:03:35.000000000 +0100
@@ -22,7 +22,6 @@
#include <getopt.h>
#include <signal.h>
#include <unistd.h>
-#include <util.h>
#include <pwd.h>
#include "input_handlers.h"