Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8a48025dfc33eec895ca40d7e1dc10d1886d07d3

commit 8a48025dfc33eec895ca40d7e1dc10d1886d07d3
Author: James Buren <[email protected]>
Date:   Sat Dec 29 21:35:58 2012 -0600

ardour-2.8.11-2-x86_64
* remove package

diff --git a/source/xmultimedia-extra/ardour/FrugalBuild 
b/source/xmultimedia-extra/ardour/FrugalBuild
deleted file mode 100644
index b3bd782..0000000
--- a/source/xmultimedia-extra/ardour/FrugalBuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Compiling Time: 8.41 SBU
-# Maintainer: voroskoi <[email protected]>
-# Contributor: Tuxbubling <[email protected]>
-
-pkgname=ardour
-pkgver=2.8.11
-pkgrel=2
-pkgdesc="Ardour is a digital audio workstation."
-url="http://ardour.org";
-depends=('jack>=0.118.0' 'liblrdf' 'libxslt' 'liblo>=0.26' 'pango>=1.24.2-2' 
'atk' 'libxau>=1.0.4' 'libxdmcp' \
-       'freetype2' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor' 
\
-       'libgnomecanvas>=2.26.0-2' 'libusb' 'aubio' 'libpng>=1.4.2')
-makedepends=('scons' 'boost>=1.46.1')
-groups=('xmultimedia-extra')
-archs=('i686' 'x86_64')
-options=('scriptlet')
-up2date="lynx -dump $url | grep current | sed -e 's/.*$pkgname //'"
-source=(http://ftp.frugalware.org/pub/other/people/exceed/sources/$pkgname-$pkgver.tar.bz2)
-sha1sums=('e04f0d9aacd929565386f8027807d881bdf8fca6')
-
-build()
-{
-       Fpatchall
-       Fsed 'lib64' 'lib' SConstruct
-       Fsed "\"-O3\"" "\"\"" SConstruct
-       _F_desktop_exec="ardour2"
-       _F_desktop_categories="GTK;Audio;AudioVideoEditing;Multimedia"
-       _F_desktop_icon="/usr/share/ardour2/icons/ardour_icon_48px.png"
-       Fdesktop2
-       scons PREFIX=$Fprefix ARCH="$CFLAGS" VST=0 || Fdie
-       scons DESTDIR=$Fdestdir/ install || Fdie
-}
-
-# optimization OK
diff --git a/source/xmultimedia-extra/ardour/gcc44.diff 
b/source/xmultimedia-extra/ardour/gcc44.diff
deleted file mode 100644
index 6feb476..0000000
--- a/source/xmultimedia-extra/ardour/gcc44.diff
+++ /dev/null
@@ -1,63 +0,0 @@
-*** libs/midi++2/midi.cc.bk    2009-06-17 14:20:23.000000000 +0200
---- libs/midi++2/midi.cc       2009-06-17 14:21:05.000000000 +0200
-***************
-*** 158,167 ****
-  MIDI::decode_controller_name (const char *name)
-
-  {
-!      char *lparen;
-       size_t len;
-
-!      if ((lparen = strrchr (name, '(')) != 0) {
-               return atoi (lparen+1);
-       } else {
-               len = strcspn (name, "0123456789");
---- 158,167 ----
-  MIDI::decode_controller_name (const char *name)
-
-  {
-!      const char *lparen = strrchr (name, '(');
-       size_t len;
-
-!      if (lparen != 0) {
-               return atoi (lparen+1);
-       } else {
-               len = strcspn (name, "0123456789");
-
-*** gtk2_ardour/actions.cc.bk  2009-06-17 14:33:29.000000000 +0200
---- gtk2_ardour/actions.cc     2009-06-17 14:34:11.000000000 +0200
-***************
-*** 319,325 ****
-  void
-  ActionManager::uncheck_toggleaction (const char * name)
-  {
-!      char *last_slash = strrchr (name, '/');
-
-       if (last_slash == 0) {
-               fatal << string_compose (_("programmer error: %1 %2"), 
X_("illegal toggle action name"), name) << endmsg;
---- 319,325 ----
-  void
-  ActionManager::uncheck_toggleaction (const char * name)
-  {
-!      const char *last_slash = strrchr (name, '/');
-
-       if (last_slash == 0) {
-               fatal << string_compose (_("programmer error: %1 %2"), 
X_("illegal toggle action name"), name) << endmsg;
-***************
-*** 334,340 ****
-       memcpy (group_name, name + 10, len);
-       group_name[len] = '\0';
-
-!      char* action_name = last_slash + 1;
-
-          RefPtr<Action> act = get_action (group_name, action_name);
-       if (act) {
---- 334,340 ----
-       memcpy (group_name, name + 10, len);
-       group_name[len] = '\0';
-
-!      const char* action_name = last_slash + 1;
-
-          RefPtr<Action> act = get_action (group_name, action_name);
-       if (act) {
-
diff --git a/source/xmultimedia-extra/ardour/gcc44include.diff 
b/source/xmultimedia-extra/ardour/gcc44include.diff
deleted file mode 100644
index 0f09ea8..0000000
--- a/source/xmultimedia-extra/ardour/gcc44include.diff
+++ /dev/null
@@ -1,45 +0,0 @@
-diff -Naur ardour-2.7.1.orig/libs/pbd/convert.cc 
ardour-2.7.1/libs/pbd/convert.cc
---- ardour-2.7.1.orig/libs/pbd/convert.cc      2008-12-09 15:34:12.544005281 
-0500
-+++ ardour-2.7.1/libs/pbd/convert.cc   2008-12-09 15:34:47.962006119 -0500
-@@ -17,6 +17,7 @@
-
- */
-
-+#include <cstdio>
- #include <cmath>
- #include <locale>
- #include <algorithm>
-diff -Naur ardour-2.7.1.orig/libs/pbd/pbd/convert.h 
ardour-2.7.1/libs/pbd/pbd/convert.h
---- ardour-2.7.1.orig/libs/pbd/pbd/convert.h   2008-12-09 15:34:12.546005001 
-0500
-+++ ardour-2.7.1/libs/pbd/pbd/convert.h        2008-12-09 16:01:25.177005281 
-0500
-@@ -20,6 +20,7 @@
- #ifndef __pbd_convert_h__
- #define __pbd_convert_h__
-
-+#include <stdint.h>
- #include <string>
- #include <vector>
- #include <sstream>
-diff -Naur ardour-2.7.1.orig/libs/pbd/shortpath.cc 
ardour-2.7.1/libs/pbd/shortpath.cc
---- ardour-2.7.1.orig/libs/pbd/shortpath.cc    2008-12-09 15:34:12.550005001 
-0500
-+++ ardour-2.7.1/libs/pbd/shortpath.cc 2008-12-09 15:44:23.709005001 -0500
-@@ -17,6 +17,7 @@
-
- */
-
-+#include <stdint.h>
- #include <pbd/shortpath.h>
-
- using namespace Glib;
-diff -Naur ardour-2.7.1.orig/libs/pbd/stacktrace.cc 
ardour-2.7.1/libs/pbd/stacktrace.cc
---- ardour-2.7.1.orig/libs/pbd/stacktrace.cc   2008-12-09 15:34:12.550005001 
-0500
-+++ ardour-2.7.1/libs/pbd/stacktrace.cc        2008-12-09 15:46:27.671005281 
-0500
-@@ -17,6 +17,7 @@
-
- */
-
-+#include <cstdio>
- #include <pbd/stacktrace.h>
- #include <iostream>
-
-
_______________________________________________
Frugalware-git mailing list
[email protected]
http://frugalware.org/mailman/listinfo/frugalware-git

Reply via email to