aboutsummaryrefslogtreecommitdiff
path: root/audio/aube
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-09-01 06:47:46 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-09-01 06:47:46 +0000
commitd4bfb85f2946281ea4c885c5bc19d7efa733365d (patch)
treea38e11a947d138bed0c7377e151337a565a6281c /audio/aube
parentf6f2386bcbdb85efc4268724a629afc6dcdf8236 (diff)
downloadports-d4bfb85f2946281ea4c885c5bc19d7efa733365d.tar.gz
ports-d4bfb85f2946281ea4c885c5bc19d7efa733365d.zip
Notes
Diffstat (limited to 'audio/aube')
-rw-r--r--audio/aube/Makefile41
-rw-r--r--audio/aube/distinfo2
-rw-r--r--audio/aube/files/patch-configure28
-rw-r--r--audio/aube/files/patch-src__modules__delay.c9
-rw-r--r--audio/aube/files/patch-src__modules__filter_reslp.c8
-rw-r--r--audio/aube/files/patch-src__modules__general_mixer.c8
-rw-r--r--audio/aube/files/patch-src__modules__klavier.c8
-rw-r--r--audio/aube/files/patch-src__modules__minimaube.c8
-rw-r--r--audio/aube/files/patch-src__modules__panner.c8
-rw-r--r--audio/aube/files/patch-src__modules__panner4.c8
-rw-r--r--audio/aube/files/patch-src__modules__sample_recorder.c8
-rw-r--r--audio/aube/files/patch-src__modules__xfader.c8
-rw-r--r--audio/aube/pkg-descr6
13 files changed, 0 insertions, 150 deletions
diff --git a/audio/aube/Makefile b/audio/aube/Makefile
deleted file mode 100644
index 897e21a52ae0..000000000000
--- a/audio/aube/Makefile
+++ /dev/null
@@ -1,41 +0,0 @@
-# New ports collection makefile for: aube
-# Date created: 09.06.2003
-# Whom: Kirill Ponomarew <ponomarew@oberon.net>
-#
-# $FreeBSD$
-#
-
-PORTNAME= aube
-PORTVERSION= 0.30.3
-PORTREVISION= 6
-CATEGORIES= audio gnome
-MASTER_SITES= http://www.metadecks.org/software/aube/download/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= System for sound generation and processing
-
-DEPRECATED= Abandonware
-EXPIRATION_DATE= 2011-09-01
-
-LIB_DEPENDS= audiofile.0:${PORTSDIR}/audio/libaudiofile
-
-USE_GNOME= imlib
-USE_GMAKE= yes
-USE_AUTOTOOLS= libtool
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib"
-
-MAN1= aube.1
-PLIST_FILES= bin/aube \
- %%DATADIR%%/aube_logo.ppm \
- %%DATADIR%%/aube_mini.png \
- %%DATADIR%%/gtkrc
-PLIST_DIRS= %%DATADIR%%
-
-post-patch:
- @${REINPLACE_CMD} -e \
- 's|-lgdk_imlib|@GDK_IMLIB_LIBS@|g' ${WRKSRC}/src/Makefile.in
- @${REINPLACE_CMD} -e \
- 's|-g -O2 -Wall|@CFLAGS@|g' ${WRKSRC}/src/modules/Makefile.in
-
-.include <bsd.port.mk>
diff --git a/audio/aube/distinfo b/audio/aube/distinfo
deleted file mode 100644
index 126e7b93dbcb..000000000000
--- a/audio/aube/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (aube-0.30.3.tar.gz) = b8d8406b5bdba701aa0f0ece65ceae0f2681251127c258b1775ee11ee4d24b4e
-SIZE (aube-0.30.3.tar.gz) = 206516
diff --git a/audio/aube/files/patch-configure b/audio/aube/files/patch-configure
deleted file mode 100644
index a3896bf5c882..000000000000
--- a/audio/aube/files/patch-configure
+++ /dev/null
@@ -1,28 +0,0 @@
---- configure.orig Wed Oct 16 20:42:09 2002
-+++ configure Mon Jun 19 18:54:58 2006
-@@ -2257,7 +2257,8 @@
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- ac_save_LIBS="$LIBS"
--LIBS="-lgdk_imlib $LIBS"
-+GDK_IMLIB_LIBS=`imlib-config --libs-gdk`
-+LIBS="${GTK_LIBS} ${GDK_IMLIB_LIBS} $LIBS"
- cat > conftest.$ac_ext <<EOF
- #line 2263 "configure"
- #include "confdefs.h"
-@@ -2295,6 +2296,7 @@
-
- else
- echo "$ac_t""no" 1>&6
-+echo "Imlib not found!"; exit 0
- fi
-
-
-@@ -2743,6 +2745,7 @@
- s%@GTK_CONFIG@%$GTK_CONFIG%g
- s%@GTK_CFLAGS@%$GTK_CFLAGS%g
- s%@GTK_LIBS@%$GTK_LIBS%g
-+s%@GDK_IMLIB_LIBS@%$GDK_IMLIB_LIBS%g
-
- CEOF
- EOF
diff --git a/audio/aube/files/patch-src__modules__delay.c b/audio/aube/files/patch-src__modules__delay.c
deleted file mode 100644
index bd2d99699b88..000000000000
--- a/audio/aube/files/patch-src__modules__delay.c
+++ /dev/null
@@ -1,9 +0,0 @@
---- src/modules/delay.c.orig Thu Mar 25 06:57:44 1999
-+++ src/modules/delay.c Tue Jun 20 02:25:53 2006
-@@ -1,5 +1,6 @@
-
- #include <stdio.h>
-+#include <stdlib.h>
- #include <string.h>
- #include <time.h>
- #include <unistd.h>
diff --git a/audio/aube/files/patch-src__modules__filter_reslp.c b/audio/aube/files/patch-src__modules__filter_reslp.c
deleted file mode 100644
index 2e2d5168a238..000000000000
--- a/audio/aube/files/patch-src__modules__filter_reslp.c
+++ /dev/null
@@ -1,8 +0,0 @@
---- src/modules/filter_reslp.c.orig Thu Mar 25 06:58:00 1999
-+++ src/modules/filter_reslp.c Tue Jun 20 02:26:52 2006
-@@ -1,4 +1,5 @@
- #include <stdio.h>
-+#include <stdlib.h>
- #include <string.h>
- #include <time.h>
- #include <unistd.h>
diff --git a/audio/aube/files/patch-src__modules__general_mixer.c b/audio/aube/files/patch-src__modules__general_mixer.c
deleted file mode 100644
index 7d493cb93ce9..000000000000
--- a/audio/aube/files/patch-src__modules__general_mixer.c
+++ /dev/null
@@ -1,8 +0,0 @@
---- src/modules/general_mixer.c.orig Thu Mar 25 06:58:07 1999
-+++ src/modules/general_mixer.c Tue Jun 20 02:27:38 2006
-@@ -1,4 +1,5 @@
- #include <stdio.h>
-+#include <stdlib.h>
- #include <string.h>
- #include <time.h>
- #include <unistd.h>
diff --git a/audio/aube/files/patch-src__modules__klavier.c b/audio/aube/files/patch-src__modules__klavier.c
deleted file mode 100644
index 841b83155ef9..000000000000
--- a/audio/aube/files/patch-src__modules__klavier.c
+++ /dev/null
@@ -1,8 +0,0 @@
---- src/modules/klavier.c.orig Thu Mar 25 06:58:16 1999
-+++ src/modules/klavier.c Tue Jun 20 02:28:26 2006
-@@ -1,4 +1,5 @@
- #include <stdio.h>
-+#include <stdlib.h>
- #include <string.h>
- #include <time.h>
- #include <unistd.h>
diff --git a/audio/aube/files/patch-src__modules__minimaube.c b/audio/aube/files/patch-src__modules__minimaube.c
deleted file mode 100644
index 2ae479a5aab3..000000000000
--- a/audio/aube/files/patch-src__modules__minimaube.c
+++ /dev/null
@@ -1,8 +0,0 @@
---- src/modules/minimaube.c.orig Fri Mar 15 21:52:37 2002
-+++ src/modules/minimaube.c Tue Jun 20 02:29:29 2006
-@@ -1,4 +1,5 @@
- #include <stdio.h>
-+#include <stdlib.h>
- #include <string.h>
- #include <math.h>
- #include <time.h>
diff --git a/audio/aube/files/patch-src__modules__panner.c b/audio/aube/files/patch-src__modules__panner.c
deleted file mode 100644
index 7c9b5357d1cb..000000000000
--- a/audio/aube/files/patch-src__modules__panner.c
+++ /dev/null
@@ -1,8 +0,0 @@
---- src/modules/panner.c.orig Thu Mar 25 06:59:53 1999
-+++ src/modules/panner.c Tue Jun 20 02:30:13 2006
-@@ -1,4 +1,5 @@
- #include <stdio.h>
-+#include <stdlib.h>
- #include <string.h>
- #include <time.h>
- #include <unistd.h>
diff --git a/audio/aube/files/patch-src__modules__panner4.c b/audio/aube/files/patch-src__modules__panner4.c
deleted file mode 100644
index 3c9ab676609a..000000000000
--- a/audio/aube/files/patch-src__modules__panner4.c
+++ /dev/null
@@ -1,8 +0,0 @@
---- src/modules/panner4.c.orig Thu Mar 25 07:00:00 1999
-+++ src/modules/panner4.c Tue Jun 20 02:30:52 2006
-@@ -1,4 +1,5 @@
- #include <stdio.h>
-+#include <stdlib.h>
- #include <string.h>
- #include <time.h>
- #include <unistd.h>
diff --git a/audio/aube/files/patch-src__modules__sample_recorder.c b/audio/aube/files/patch-src__modules__sample_recorder.c
deleted file mode 100644
index 3975a7464ed0..000000000000
--- a/audio/aube/files/patch-src__modules__sample_recorder.c
+++ /dev/null
@@ -1,8 +0,0 @@
---- src/modules/sample_recorder.c.orig Fri Mar 15 21:53:23 2002
-+++ src/modules/sample_recorder.c Tue Jun 20 02:31:34 2006
-@@ -1,4 +1,5 @@
- #include <stdio.h>
-+#include <stdlib.h>
- #include <string.h>
- #include <time.h>
- #include <unistd.h>
diff --git a/audio/aube/files/patch-src__modules__xfader.c b/audio/aube/files/patch-src__modules__xfader.c
deleted file mode 100644
index 5be24913a7dd..000000000000
--- a/audio/aube/files/patch-src__modules__xfader.c
+++ /dev/null
@@ -1,8 +0,0 @@
---- src/modules/xfader.c.orig Thu Mar 25 07:00:35 1999
-+++ src/modules/xfader.c Tue Jun 20 02:32:30 2006
-@@ -1,4 +1,5 @@
- #include <stdio.h>
-+#include <stdlib.h>
- #include <string.h>
- #include <time.h>
- #include <unistd.h>
diff --git a/audio/aube/pkg-descr b/audio/aube/pkg-descr
deleted file mode 100644
index 7ac1825ee2f8..000000000000
--- a/audio/aube/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-AUBE is a system for sound generation and processing. You can
-process audio on the fly by setting up arbitrary configurations
-of sound generators, sequencers and effects modules, through
-which sound is played, filtered, and recorded.
-
-WWW: http://www.metadecks.org/software/aube