Compare commits
4 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
99fbbcf37b | ||
|
|
68add95afb | ||
|
|
a568c90730 | ||
|
|
17a6360aad |
4 changed files with 19 additions and 23 deletions
0
.cvsignore → .gitignore
vendored
0
.cvsignore → .gitignore
vendored
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: seq24
|
||||
# $Id$
|
||||
NAME := seq24
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
11
seq24-buffer-overflow.patch
Normal file
11
seq24-buffer-overflow.patch
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- src/seqdata.cpp~ 2006-05-17 21:40:15.000000000 -0700
|
||||
+++ src/seqdata.cpp 2008-07-11 07:44:12.000000000 -0700
|
||||
@@ -118,7 +118,7 @@
|
||||
6,
|
||||
30 );
|
||||
|
||||
- char val[4];
|
||||
+ char val[5];
|
||||
sprintf( val, "%3d\n", i );
|
||||
char num[6];
|
||||
memset( num, 0, 6);
|
||||
10
seq24.spec
10
seq24.spec
|
|
@ -1,14 +1,15 @@
|
|||
Summary: Real-time midi sequencer
|
||||
Name: seq24
|
||||
Version: 0.8.7
|
||||
Release: 8%{?dist}
|
||||
License: GPL
|
||||
Release: 9%{?dist}
|
||||
License: GPLv2+
|
||||
Group: Applications/Multimedia
|
||||
URL: http://www.filter24.org/seq24/
|
||||
Source: http://filter24.org/seq24/seq24-%{version}.tar.gz
|
||||
Source1: seq24.png
|
||||
Source2: seq24.desktop
|
||||
Patch0: seq24-stack-smash.patch
|
||||
Patch3: seq24-buffer-overflow.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: lash-devel gtkmm24-devel
|
||||
|
|
@ -24,6 +25,7 @@ interface for editing and playing midi 'loops'.
|
|||
%prep
|
||||
%setup -q
|
||||
%patch0 -p0 -b .stack-smash~
|
||||
%patch3 -p0 -b .buffer-overflow
|
||||
|
||||
%build
|
||||
%configure
|
||||
|
|
@ -65,6 +67,10 @@ touch --no-create %{_datadir}/icons/hicolor || :
|
|||
%{_datadir}/icons/hicolor/64x64/apps/seq24.png
|
||||
|
||||
%changelog
|
||||
* Fri Jul 11 2008 Anthony Green <green@redhat.com> 0.8.7-9
|
||||
- Add buffer overflow fix.
|
||||
- Fix license tag
|
||||
|
||||
* Tue Oct 09 2007 Anthony Green <green@redhat.com> 0.8.7-8
|
||||
- Rebuilt for new lash again.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue