pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/graphics/koverartist Fix build on DragonFly.
details: https://anonhg.NetBSD.org/pkgsrc/rev/1457cb34abbb
branches: trunk
changeset: 530451:1457cb34abbb
user: joerg <joerg%pkgsrc.org@localhost>
date: Sat Jun 30 18:42:24 2007 +0000
description:
Fix build on DragonFly.
diffstat:
graphics/koverartist/distinfo | 8 ++++----
graphics/koverartist/patches/patch-aa | 18 ++++++++++--------
graphics/koverartist/patches/patch-ab | 4 ++--
graphics/koverartist/patches/patch-ac | 4 ++--
4 files changed, 18 insertions(+), 16 deletions(-)
diffs (108 lines):
diff -r 119cd0482f5e -r 1457cb34abbb graphics/koverartist/distinfo
--- a/graphics/koverartist/distinfo Sat Jun 30 18:31:52 2007 +0000
+++ b/graphics/koverartist/distinfo Sat Jun 30 18:42:24 2007 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.1.1.1 2007/06/06 11:23:09 markd Exp $
+$NetBSD: distinfo,v 1.2 2007/06/30 18:42:24 joerg Exp $
SHA1 (koverartist-0.5.tar.bz2) = 2fff3824c7b72a769dd2960bdc38d4dd5ff9e263
RMD160 (koverartist-0.5.tar.bz2) = 63ee6623b04dabdf8661e2f7eea162b1f15e9802
Size (koverartist-0.5.tar.bz2) = 748401 bytes
-SHA1 (patch-aa) = df486d8bb25d21d257537130477a57328c1b3e29
-SHA1 (patch-ab) = 27d0aff76b1a8bce2dfa35563e913cd201afe83b
-SHA1 (patch-ac) = 0cf59f7d9b6ae9b6e616398a11fd322ef87edff4
+SHA1 (patch-aa) = 11873caa4b0bea8a58bc8f336b29550af1ff0058
+SHA1 (patch-ab) = 96600feb023b1adaa6ad0001c8c657c25bb9a9c8
+SHA1 (patch-ac) = fafcbbe0a9373dc0782345bf47fb81c4c7afe23f
diff -r 119cd0482f5e -r 1457cb34abbb graphics/koverartist/patches/patch-aa
--- a/graphics/koverartist/patches/patch-aa Sat Jun 30 18:31:52 2007 +0000
+++ b/graphics/koverartist/patches/patch-aa Sat Jun 30 18:42:24 2007 +0000
@@ -1,17 +1,19 @@
-$NetBSD: patch-aa,v 1.1.1.1 2007/06/06 11:23:09 markd Exp $
+$NetBSD: patch-aa,v 1.2 2007/06/30 18:42:24 joerg Exp $
---- src/cdinfo.cpp.orig 2007-05-28 19:36:06.000000000 +1200
+--- src/cdinfo.cpp.orig 2006-04-28 07:18:54.000000000 +0000
+++ src/cdinfo.cpp
-@@ -33,7 +33,7 @@
+@@ -32,8 +32,9 @@
+ #include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/types.h>
++#include <unistd.h>
-#ifdef __FreeBSD__
+#if defined(HAVE_SYS_CDIO_H)
# include <sys/cdio.h>
# define CDROM_LEADOUT 0xAA
#else
-@@ -91,8 +91,10 @@ bool CdInfo::open()
+@@ -91,8 +92,10 @@ bool CdInfo::open()
mErrorCode = errno;
if (mErrorCode==EACCES)
mErrorText = i18n("You do not have permission to read from %1").arg(mDevice);
@@ -22,16 +24,16 @@
else if (mErrorCode==EBUSY)
mErrorText = i18n("%1 is busy").arg(mDevice);
else mErrorText = i18n("Cannot open %1: %2").arg(mDevice).arg(strerror(mErrorCode));
-@@ -100,7 +102,7 @@ bool CdInfo::open()
+@@ -100,7 +103,7 @@ bool CdInfo::open()
return false;
}
-#ifndef __FreeBSD__
-+#if !(defined(__FreeBSD__) || defined(__NetBSD__))
++#if !(defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__))
int st = ioctl(mFd, CDROM_DISC_STATUS);
if (st!=CDS_AUDIO && st!=CDS_MIXED && st!=CDS_NO_INFO)
{
-@@ -194,7 +196,7 @@ int CdInfo::cddbSum(int n)
+@@ -194,7 +197,7 @@ int CdInfo::cddbSum(int n)
int CdInfo::readTocHeader()
{
@@ -40,7 +42,7 @@
ioc_toc_header hdr;
if (ioctl(mFd, CDIOREADTOCHEADER, &hdr)<0) return -1;
return hdr.ending_track;
-@@ -212,14 +214,17 @@ bool CdInfo::readTocEntry(int aEntryTrac
+@@ -212,14 +215,17 @@ bool CdInfo::readTocEntry(int aEntryTrac
{
int frame = 0;
diff -r 119cd0482f5e -r 1457cb34abbb graphics/koverartist/patches/patch-ab
--- a/graphics/koverartist/patches/patch-ab Sat Jun 30 18:31:52 2007 +0000
+++ b/graphics/koverartist/patches/patch-ab Sat Jun 30 18:42:24 2007 +0000
@@ -1,4 +1,4 @@
-$NetBSD: patch-ab,v 1.1.1.1 2007/06/06 11:23:09 markd Exp $
+$NetBSD: patch-ab,v 1.2 2007/06/30 18:42:24 joerg Exp $
--- src/renderer.cpp.orig 2006-06-21 19:10:03.000000000 +1200
+++ src/renderer.cpp
@@ -6,7 +6,7 @@
#include <iostream>
-+#ifdef __NetBSD__
++#if defined(__NetBSD__) || defined(__DragonFly__)
+#define fmin(a,b) ((a)<(b)?(a):(b))
+#endif
diff -r 119cd0482f5e -r 1457cb34abbb graphics/koverartist/patches/patch-ac
--- a/graphics/koverartist/patches/patch-ac Sat Jun 30 18:31:52 2007 +0000
+++ b/graphics/koverartist/patches/patch-ac Sat Jun 30 18:42:24 2007 +0000
@@ -1,4 +1,4 @@
-$NetBSD: patch-ac,v 1.1.1.1 2007/06/06 11:23:09 markd Exp $
+$NetBSD: patch-ac,v 1.2 2007/06/30 18:42:24 joerg Exp $
--- src/rendererbase.cpp.orig 2006-04-28 00:52:30.000000000 +1200
+++ src/rendererbase.cpp
@@ -6,7 +6,7 @@
#include <iostream>
-+#ifdef __NetBSD__
++#if defined(__NetBSD__) || defined(__DragonFly__)
+#define fmin(a,b) ((a)<(b)?(a):(b))
+#define fmax(a,b) ((a)>(b)?(a):(b))
+#endif
Home |
Main Index |
Thread Index |
Old Index