pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/audio Initial import of buzztard-0.5.0 and its compone...
details: https://anonhg.NetBSD.org/pkgsrc/rev/02e6dc38a41f
branches: trunk
changeset: 564750:02e6dc38a41f
user: wiz <wiz%pkgsrc.org@localhost>
date: Thu Sep 10 20:16:44 2009 +0000
description:
Initial import of buzztard-0.5.0 and its components.
Buzztard is a music composer similar to tracker applications. It
is roughly modeled after the windows only, closed source and now
discontinued application called Buzz.
diffstat:
audio/bml/DESCR | 3 +
audio/bml/Makefile | 24 ++
audio/bml/PLIST | 6 +
audio/bml/buildlink3.mk | 12 +
audio/bml/distinfo | 5 +
audio/bsl/DESCR | 3 +
audio/bsl/Makefile | 28 +++
audio/bsl/PLIST | 5 +
audio/bsl/distinfo | 5 +
audio/buzztard/DESCR | 3 +
audio/buzztard/Makefile | 55 ++++++
audio/buzztard/PLIST | 341 +++++++++++++++++++++++++++++++++++++++
audio/buzztard/buildlink3.mk | 13 +
audio/buzztard/distinfo | 8 +
audio/buzztard/patches/patch-aa | 73 ++++++++
audio/buzztard/patches/patch-ac | 13 +
audio/buzztard/patches/patch-ad | 12 +
audio/gst-buzztard/DESCR | 5 +
audio/gst-buzztard/Makefile | 34 +++
audio/gst-buzztard/PLIST | 40 ++++
audio/gst-buzztard/buildlink3.mk | 16 +
audio/gst-buzztard/distinfo | 5 +
22 files changed, 709 insertions(+), 0 deletions(-)
diffs (truncated from 797 to 300 lines):
diff -r cc08f6c09eea -r 02e6dc38a41f audio/bml/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/bml/DESCR Thu Sep 10 20:16:44 2009 +0000
@@ -0,0 +1,3 @@
+The libbml is a library that loads buzz machines from the windows
+music composer Buzz, so that Linux apps can use them. This lib is
+either using the libavifile wrapper or the libfst one.
diff -r cc08f6c09eea -r 02e6dc38a41f audio/bml/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/bml/Makefile Thu Sep 10 20:16:44 2009 +0000
@@ -0,0 +1,24 @@
+# $NetBSD: Makefile,v 1.1.1.1 2009/09/10 20:16:44 wiz Exp $
+#
+
+DISTNAME= bml-0.5.0
+CATEGORIES= audio
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=buzztard/}
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= http://buzztard.sourceforge.net/
+COMMENT= Buzz machine loader
+LICENSE= gnu-lgpl-v2.1
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+GNU_CONFIGURE= yes
+USE_LIBTOOL= yes
+USE_TOOLS+= pkg-config
+USE_LANGUAGES= c c++
+
+PKGCONFIG_OVERRIDE+= libbml.pc.in
+
+BUILDLINK_TRANSFORM+= rm:-ldl
+
+.include "../../mk/bsd.pkg.mk"
diff -r cc08f6c09eea -r 02e6dc38a41f audio/bml/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/bml/PLIST Thu Sep 10 20:16:44 2009 +0000
@@ -0,0 +1,6 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2009/09/10 20:16:44 wiz Exp $
+include/libbml/BuzzMachineLoader.h
+include/libbml/bml.h
+lib/libbml.la
+lib/libbuzzmachineloader.la
+lib/pkgconfig/libbml.pc
diff -r cc08f6c09eea -r 02e6dc38a41f audio/bml/buildlink3.mk
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/bml/buildlink3.mk Thu Sep 10 20:16:44 2009 +0000
@@ -0,0 +1,12 @@
+# $NetBSD: buildlink3.mk,v 1.1.1.1 2009/09/10 20:16:44 wiz Exp $
+
+BUILDLINK_TREE+= bml
+
+.if !defined(BML_BUILDLINK3_MK)
+BML_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.bml+= bml>=0.5.0
+BUILDLINK_PKGSRCDIR.bml?= ../../nih/bml
+.endif # BML_BUILDLINK3_MK
+
+BUILDLINK_TREE+= -bml
diff -r cc08f6c09eea -r 02e6dc38a41f audio/bml/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/bml/distinfo Thu Sep 10 20:16:44 2009 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2009/09/10 20:16:44 wiz Exp $
+
+SHA1 (bml-0.5.0.tar.gz) = 3a0e4381904a56c2ce60035344c5387cda15f9a0
+RMD160 (bml-0.5.0.tar.gz) = edfe5cdd3a20a6e705dc846537fdf69d96f0aa2a
+Size (bml-0.5.0.tar.gz) = 767631 bytes
diff -r cc08f6c09eea -r 02e6dc38a41f audio/bsl/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/bsl/DESCR Thu Sep 10 20:16:44 2009 +0000
@@ -0,0 +1,3 @@
+The libbml is a library that loads buzz machines from the windows
+music composer Buzz, so that Linux apps can use them. This lib is
+either using the libavifile wrapper or the libfst one.
diff -r cc08f6c09eea -r 02e6dc38a41f audio/bsl/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/bsl/Makefile Thu Sep 10 20:16:44 2009 +0000
@@ -0,0 +1,28 @@
+# $NetBSD: Makefile,v 1.1.1.1 2009/09/10 20:16:44 wiz Exp $
+#
+
+DISTNAME= bsl-0.5.0
+CATEGORIES= audio
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=buzztard/}
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= http://buzztard.sourceforge.net/
+COMMENT= Buzz song loader
+LICENSE= gnu-gpl-v2
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+GNU_CONFIGURE= yes
+USE_LIBTOOL= yes
+USE_TOOLS+= gmake intltool msgfmt pkg-config
+USE_LANGUAGES= c c++
+
+USE_PKGLOCALEDIR= yes
+
+.include "../../databases/shared-mime-info/mimedb.mk"
+.include "../../devel/glib2/buildlink3.mk"
+.include "../../nih/gst-buzztard/buildlink3.mk"
+.include "../../nih/buzztard/buildlink3.mk"
+.include "../../sysutils/gnome-vfs/buildlink3.mk"
+.include "../../sysutils/desktop-file-utils/desktopdb.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r cc08f6c09eea -r 02e6dc38a41f audio/bsl/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/bsl/PLIST Thu Sep 10 20:16:44 2009 +0000
@@ -0,0 +1,5 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2009/09/10 20:16:44 wiz Exp $
+lib/buzztard-songio/libbtbsl.la
+share/applications/buzztard-songio-buzz.desktop
+share/locale/de/LC_MESSAGES/bsl-0.5.mo
+share/mime/packages/buzztard-songio-buzz.xml
diff -r cc08f6c09eea -r 02e6dc38a41f audio/bsl/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/bsl/distinfo Thu Sep 10 20:16:44 2009 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2009/09/10 20:16:44 wiz Exp $
+
+SHA1 (bsl-0.5.0.tar.gz) = 12e34f37003c1053f7eb8cee84779832bbe8d287
+RMD160 (bsl-0.5.0.tar.gz) = 24db59d15c9a9c16a3f15b90b961f42bfacb033c
+Size (bsl-0.5.0.tar.gz) = 412016 bytes
diff -r cc08f6c09eea -r 02e6dc38a41f audio/buzztard/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/buzztard/DESCR Thu Sep 10 20:16:44 2009 +0000
@@ -0,0 +1,3 @@
+Buzztard is a music composer similar to tracker applications. It
+is roughly modeled after the windows only, closed source and now
+discontinued application called Buzz.
diff -r cc08f6c09eea -r 02e6dc38a41f audio/buzztard/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/buzztard/Makefile Thu Sep 10 20:16:44 2009 +0000
@@ -0,0 +1,55 @@
+# $NetBSD: Makefile,v 1.1.1.1 2009/09/10 20:16:44 wiz Exp $
+#
+
+DISTNAME= buzztard-0.5.0
+CATEGORIES= audio
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=buzztard/}
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= http://buzztard.sourceforge.net/
+COMMENT= Modular, free, open source music studio
+LICENSE= gnu-gpl-v3 AND gnu-fdl-v1.1
+
+BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt
+BUILD_DEPENDS+= aspell-[0-9]*:../../textproc/aspell
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+GNU_CONFIGURE= yes
+USE_LIBTOOL= yes
+USE_LANGUAGES= c c++
+USE_TOOLS+= gmake intltool pkg-config
+
+PKGCONFIG_OVERRIDE+= src/lib/ic/libbuzztard-ic.pc.in
+PKGCONFIG_OVERRIDE+= src/lib/core/libbuzztard-core.pc.in
+
+#PKG_CHECK_MODULES(HILDON_DEPS, hildon-libs libosso, [
+#PKG_CHECK_MODULES(GOBJECT_INTROSPECTION, [gobject-introspection-1.0],[
+
+.include "../../databases/shared-mime-info/mimedb.mk"
+.include "../../devel/GConf/schemas.mk"
+BUILDLINK_API_DEPENDS.glib2+= glib2>=2.10.0
+.include "../../devel/glib2/buildlink3.mk"
+.include "../../devel/libgnome/buildlink3.mk"
+.include "../../devel/libgsf/buildlink3.mk"
+.include "../../graphics/gnome-icon-theme/buildlink3.mk"
+BUILDLINK_API_DEPENDS.gnome-vfs+= gnome-vfs>=2.10.0
+.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
+.include "../../graphics/libgnomecanvas/buildlink3.mk"
+.include "../../graphics/librsvg/buildlink3.mk"
+BUILDLINK_API_DEPENDS.gst-plugins0.10-base+= gst-plugins0.10-base>=0.10.7
+.include "../../multimedia/gst-plugins0.10-base/buildlink3.mk"
+BUILDLINK_API_DEPENDS.gstreamer0.10+= gstreamer0.10>=0.10.7
+.include "../../multimedia/gstreamer0.10/buildlink3.mk"
+.include "../../sysutils/dbus-glib/buildlink3.mk"
+.include "../../sysutils/desktop-file-utils/desktopdb.mk"
+.include "../../sysutils/gnome-vfs/buildlink3.mk"
+.include "../../sysutils/hal/buildlink3.mk"
+.include "../../textproc/gtk-doc/buildlink3.mk"
+.include "../../textproc/libxml2/buildlink3.mk"
+.include "../../mk/omf-scrollkeeper.mk"
+BUILDLINK_API_DEPENDS.gtk2+= gtk2+>=2.6.0
+.include "../../x11/gtk2/buildlink3.mk"
+.include "../../nih/bml/buildlink3.mk"
+.include "../../nih/gst-buzztard/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r cc08f6c09eea -r 02e6dc38a41f audio/buzztard/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/buzztard/PLIST Thu Sep 10 20:16:44 2009 +0000
@@ -0,0 +1,341 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2009/09/10 20:16:45 wiz Exp $
+bin/buzztard-cmd
+bin/buzztard-edit
+include/libbuzztard-core/application-methods.h
+include/libbuzztard-core/application.h
+include/libbuzztard-core/core.h
+include/libbuzztard-core/gconf-settings-methods.h
+include/libbuzztard-core/gconf-settings.h
+include/libbuzztard-core/machine-methods.h
+include/libbuzztard-core/machine.h
+include/libbuzztard-core/marshal.h
+include/libbuzztard-core/pattern-methods.h
+include/libbuzztard-core/pattern.h
+include/libbuzztard-core/persistence-location.h
+include/libbuzztard-core/persistence-methods.h
+include/libbuzztard-core/persistence-selection.h
+include/libbuzztard-core/persistence.h
+include/libbuzztard-core/plainfile-settings-methods.h
+include/libbuzztard-core/plainfile-settings.h
+include/libbuzztard-core/processor-machine-methods.h
+include/libbuzztard-core/processor-machine.h
+include/libbuzztard-core/sequence-methods.h
+include/libbuzztard-core/sequence.h
+include/libbuzztard-core/settings-methods.h
+include/libbuzztard-core/settings.h
+include/libbuzztard-core/setup-methods.h
+include/libbuzztard-core/setup.h
+include/libbuzztard-core/sink-bin-methods.h
+include/libbuzztard-core/sink-bin.h
+include/libbuzztard-core/sink-machine-methods.h
+include/libbuzztard-core/sink-machine.h
+include/libbuzztard-core/song-info-methods.h
+include/libbuzztard-core/song-info.h
+include/libbuzztard-core/song-io-methods.h
+include/libbuzztard-core/song-io-native-bzt-methods.h
+include/libbuzztard-core/song-io-native-bzt.h
+include/libbuzztard-core/song-io-native-methods.h
+include/libbuzztard-core/song-io-native-xml-methods.h
+include/libbuzztard-core/song-io-native-xml.h
+include/libbuzztard-core/song-io-native.h
+include/libbuzztard-core/song-io.h
+include/libbuzztard-core/song-methods.h
+include/libbuzztard-core/song.h
+include/libbuzztard-core/source-machine-methods.h
+include/libbuzztard-core/source-machine.h
+include/libbuzztard-core/tools.h
+include/libbuzztard-core/version.h
+include/libbuzztard-core/wave-methods.h
+include/libbuzztard-core/wave.h
+include/libbuzztard-core/wavelevel-methods.h
+include/libbuzztard-core/wavelevel.h
+include/libbuzztard-core/wavetable-methods.h
+include/libbuzztard-core/wavetable.h
+include/libbuzztard-core/wire-methods.h
+include/libbuzztard-core/wire-pattern-methods.h
+include/libbuzztard-core/wire-pattern.h
+include/libbuzztard-core/wire.h
+include/libbuzztard-ic/abs-range-control-methods.h
+include/libbuzztard-ic/abs-range-control.h
+include/libbuzztard-ic/control-methods.h
+include/libbuzztard-ic/control.h
+include/libbuzztard-ic/device-methods.h
+include/libbuzztard-ic/device.h
+include/libbuzztard-ic/ic.h
+include/libbuzztard-ic/learn-methods.h
+include/libbuzztard-ic/learn.h
+include/libbuzztard-ic/midi-device-methods.h
+include/libbuzztard-ic/midi-device.h
+include/libbuzztard-ic/registry-methods.h
+include/libbuzztard-ic/registry.h
+include/libbuzztard-ic/trigger-control-methods.h
+include/libbuzztard-ic/trigger-control.h
+include/libbuzztard-ic/version.h
+lib/libbuzztard-core.la
+lib/libbuzztard-ic.la
+lib/pkgconfig/libbuzztard-core.pc
+lib/pkgconfig/libbuzztard-ic.pc
+share/applications/buzztard-edit.desktop
+share/buzztard/bt-edit.gtkrc
+share/buzztard/bt-edit.hildon.gtkrc
+share/buzztard/pixmaps/prefs-audio-card.png
+share/buzztard/pixmaps/prefs-input-gaming.png
+share/buzztard/pixmaps/prefs-input-keyboard.png
+share/buzztard/pixmaps/stock_repeat.png
+share/buzztard/pixmaps/stock_volume.png
+share/buzztard/songs/buzz1.xml
+share/buzztard/songs/buzz2.xml
+share/buzztard/songs/buzz3.xml
+share/buzztard/songs/buzz4.xml
+share/buzztard/songs/buzz5.xml
+share/buzztard/songs/buzz6.xml
+share/buzztard/songs/buzz7.xml
+share/buzztard/songs/buzz8.xml
+share/buzztard/songs/buzz9.xml
+share/buzztard/songs/combi1.xml
+share/buzztard/songs/combi2.xml
+share/buzztard/songs/combi3.xml
+share/buzztard/songs/melo1.xml
+share/buzztard/songs/melo2.xml
+share/buzztard/songs/melo3.xml
+share/buzztard/songs/melo4.xml
+share/buzztard/songs/melo5.xml
+share/gconf/schemas/buzztard.schemas
Home |
Main Index |
Thread Index |
Old Index