Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Aug 2012 08:53:27 +0000 (UTC)
From:      Ruslan Mahmatkhanov <rm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r302428 - in head/audio/ctronome: . files
Message-ID:  <201208120853.q7C8rRwf058853@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rm
Date: Sun Aug 12 08:53:27 2012
New Revision: 302428
URL: http://svn.freebsd.org/changeset/ports/302428

Log:
  - add patch to fix runtime on amd64
  
  I also got an response from upstream maintainer that this change
  will be included into the next release.
  
  PR:		170207
  Submitted by:	Dmitry Kazarov <d.y.kazarov at mail dot ru>
  Approved by:	maintainer timeout (>2 weeks)

Added:
  head/audio/ctronome/files/patch-ctronome.h   (contents, props changed)
Modified:
  head/audio/ctronome/Makefile
  head/audio/ctronome/pkg-descr

Modified: head/audio/ctronome/Makefile
==============================================================================
--- head/audio/ctronome/Makefile	Sun Aug 12 08:33:10 2012	(r302427)
+++ head/audio/ctronome/Makefile	Sun Aug 12 08:53:27 2012	(r302428)
@@ -7,6 +7,7 @@
 
 PORTNAME=	ctronome
 PORTVERSION=	0.5.3
+PORTREVISION=	1
 CATEGORIES=	audio
 MASTER_SITES=	http://ctronome.kign.org/source/
 

Added: head/audio/ctronome/files/patch-ctronome.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/ctronome/files/patch-ctronome.h	Sun Aug 12 08:53:27 2012	(r302428)
@@ -0,0 +1,22 @@
+--- ctronome.h.orig	2012-07-22 15:14:52.000000000 +0400
++++ ctronome.h	2012-07-22 15:15:31.000000000 +0400
+@@ -1,4 +1,6 @@
+ #include <sys/soundcard.h>
++#include <stdint.h>
++
+ #define MYNAME "ctronome"
+ #define VERSION "0.5.3"
+ #define CREDITS "homepage: http://ctronome.kign.org/\n"
+@@ -28,9 +30,9 @@
+            for defaults/limits and required WAV format see README\n"
+ 
+ /* my lazy type definitions */
+-typedef unsigned long int DWORD;
+-typedef unsigned short int WORD;
+-typedef unsigned char BYTE;
++typedef uint32_t DWORD;
++typedef uint16_t WORD;
++typedef uint8_t BYTE;
+ typedef DWORD dword;
+ typedef WORD word;
+ typedef BYTE byte;

Modified: head/audio/ctronome/pkg-descr
==============================================================================
--- head/audio/ctronome/pkg-descr	Sun Aug 12 08:33:10 2012	(r302427)
+++ head/audio/ctronome/pkg-descr	Sun Aug 12 08:53:27 2012	(r302428)
@@ -1,3 +1,3 @@
 A very simple yet powerful programmable console metronome.
 
-WWW:  http://ctronome.kign.org/
+WWW: http://ctronome.kign.org/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208120853.q7C8rRwf058853>