--- beast-0.7.1.orig/debian/postinst +++ beast-0.7.1/debian/postinst @@ -0,0 +1,22 @@ +#!/bin/sh -e + +set -e + +#DEBHELPER# + +action="$1" +oldversion="$2" + +setuid() { + if ! [ -x /usr/sbin/dpkg-statoverride ] || \ + ! dpkg-statoverride --list "$1" >/dev/null ; then + chmod 4755 "$1" + fi +} + +if [ "$action" = "configure" ]; then + setuid /usr/bin/beast + setuid /usr/bin/bsescm +fi + +exit 0 --- beast-0.7.1.orig/debian/control +++ beast-0.7.1/debian/control @@ -0,0 +1,20 @@ +Source: beast +Section: gnome +Priority: extra +Maintainer: Sam Hocevar (Debian packages) +Build-Depends: debhelper (>= 4.0), quilt, libgtk2.0-dev (>= 2.2.2-2), libglib2.0-dev (>= 2.2.2-1), libaudiofile-dev, libvorbis-dev, guile-1.6-dev (>= 1.6.4-2.1), libart-2.0-dev, libgnomecanvas2-dev, libmad0-dev, libxml-parser-perl, libxml2-utils, imagemagick, gettext, shared-mime-info +Standards-Version: 3.7.2 +XS-Vcs-Svn: svn://svn.debian.org/sam-hocevar/pkg-misc/unstable/beast +XS-Vcs-Browser: http://svn.debian.org/wsvn/sam-hocevar/pkg-misc/unstable/beast/ + +Package: beast +Section: gnome +Architecture: any +Depends: ${shlibs:Depends} +Recommends: bse-alsa +Conflicts: cmt (<< 1.15), bse-alsa (<< 0.6.6-4) +Description: music synthesis and composition framework + BEAST/BSE is a plugin-based graphical system where you can link objects + to each other and generate sound. + . + BEAST also has support for scriptability in Scheme using Guile. --- beast-0.7.1.orig/debian/menu +++ beast-0.7.1/debian/menu @@ -0,0 +1,2 @@ +?package(beast):needs="x11" section="Applications/Sound" \ + title="BEAST" command="/usr/bin/beast" icon="/usr/share/pixmaps/beast.xpm" --- beast-0.7.1.orig/debian/compat +++ beast-0.7.1/debian/compat @@ -0,0 +1 @@ +4 --- beast-0.7.1.orig/debian/copyright +++ beast-0.7.1/debian/copyright @@ -0,0 +1,16 @@ +This package was debianized by Junichi Uekawa on +Wed, 28 Feb 2001 04:30:13 +0900. + +It was downloaded from http://beast.gtk.org/ + +Upstream Authors: + Olaf Hoehmann + Tim Janik + +BEAST is GPL (and parts are LGPL), BSE is GPL. plugins are LGPL. +This probably makes BEAST as a whole to be under GPL. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL' and +the complete text of the GNU Lesser General Public License can be +found in `/usr/share/common-licenses/LGPL'. --- beast-0.7.1.orig/debian/patches/400_desktop_file.diff +++ beast-0.7.1/debian/patches/400_desktop_file.diff @@ -0,0 +1,11 @@ +Index: beast-0.7.1/data/beast.desktop.in +=================================================================== +--- beast-0.7.1/data/beast.desktop.in 2007-09-29 18:58:06.000000000 +0000 ++++ beast-0.7.1/data/beast.desktop.in 2007-09-29 18:58:53.000000000 +0000 +@@ -8,5 +8,5 @@ + TryExec=beast + Exec=beast + Terminal=false +-Categories=GTK;GNOME;Application;AudioVideo;AudioVideoEditing;Music;Player; ++Categories=GTK;GNOME;AudioVideo;AudioVideoEditing;Music;Player;Sequencer; + MimeType=audio/x-bse;audio/x-bsewave; --- beast-0.7.1.orig/debian/patches/series +++ beast-0.7.1/debian/patches/series @@ -0,0 +1 @@ +400_desktop_file.diff --- beast-0.7.1.orig/debian/README.Debian +++ beast-0.7.1/debian/README.Debian @@ -0,0 +1,7 @@ +beast for Debian +---------------- + +If you ever wish to make any program to depend upon the bse lib, +before doing that, I would rather split the package up. + + -- Junichi Uekawa , Wed, 28 Feb 2001 04:30:13 +0900 --- beast-0.7.1.orig/debian/rules +++ beast-0.7.1/debian/rules @@ -0,0 +1,113 @@ +#!/usr/bin/make -f + +#export DH_VERBOSE=1 + +export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) + +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O3 +endif + +confflags = --prefix=/usr --mandir=/usr/share/man +ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) + confflags += --build $(DEB_HOST_GNU_TYPE) +else + confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2 + # Remove stuff + rm -f config.cache config.log + # Touch timestamps + touch aclocal.m4 + touch configure + touch configure.h.in bse/bseconfig.h.in + touch `find -name Makefile.in` dummy-stamp + # Configure the package. + CFLAGS="$(CFLAGS)" CXXFLAGS="$(CFLAGS)" ./configure \ + --enable-devdsp --enable-devmidi \ + --enable-osspcm=/dev/dsp --enable-ossmidi=/dev/midi \ + $(confflags) + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + # Compile the package. + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + # Clean up after the build process. + [ ! -f Makefile ] || $(MAKE) distclean + QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2 + rm -f data/beast-audio-x-bse.png + rm -f bse/bsegencore.cc beast-gtk/gxk/gxkgentypes.stamp + rm -f po/de.gmo + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + # Install the package into debian/beast + $(MAKE) DESTDIR=$(CURDIR)/debian/beast install + ln -s beast.1.gz debian/beast/usr/share/man/man1/beast-0.6.6.1.gz + ln -s bsescm.1.gz debian/beast/usr/share/man/man1/bsescm-0.6.6.1.gz + convert debian/beast/usr/share/pixmaps/beast.png -geometry 32x32 debian/beast/usr/share/pixmaps/beast.xpm + rm -f $(CURDIR)/debian/beast/usr/share/mime/subclasses + rm -f $(CURDIR)/debian/beast/usr/share/mime/magic + rm -f $(CURDIR)/debian/beast/usr/share/mime/globs + rm -f $(CURDIR)/debian/beast/usr/share/mime/XMLnamespaces + rm -f $(CURDIR)/debian/beast/usr/share/mime/aliases + rm -f $(CURDIR)/debian/beast/usr/share/mime/mime.cache + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs NEWS README + dh_installexamples test/*.bse +# dh_install + dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam + dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo +# dh_undocumented + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_python + dh_makeshlibs -V 'beast (>= 0.7.1-1)' + dh_installdeb + dh_shlibdeps -ldebian/beast/usr/lib + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- beast-0.7.1.orig/debian/changelog +++ beast-0.7.1/debian/changelog @@ -0,0 +1,563 @@ +beast (0.7.1-1) unstable; urgency=low + + * New upstream version (Closes: #444466). + + This release fixes the kFreeBSD build (Closes: #401707) and a GCC 4.2 + FTBFS (Closes: #370154). + + * debian/rules: + + Fixed faulty configure line. + + Bumped shlibs dependency. + + bsesh was renamed into bsescm. + + * debian/menu: + + Replaced “Apps” with “Applications”. + + * debian/patches/001_glib.diff: + * debian/patches/002_gcc41.diff: + * debian/patches/010_bsesong.diff: + * debian/patches/010_g_static_assert.diff: + * debian/patches/011_suidmain_CVE-2006-2916_CVE-2006-4447.diff: + * debian/patches/012_gslice_corruption.diff: + * debian/patches/020_de_po.diff: + + Patches merged or reimplemented upstream. Dropped. + + * debian/patches/400_desktop_file.diff: + + Removed “Application” from the category list and added “Sequencer”. + + -- Sam Hocevar (Debian packages) Sat, 29 Sep 2007 19:13:33 +0200 + +beast (0.6.6-9) unstable; urgency=high + + * debian/patches/011_suidmain_CVE-2006-2916_CVE-2006-4447.diff: + + Spelling fix in error message. + + -- Sam Hocevar (Debian packages) Wed, 21 Mar 2007 09:34:14 +0100 + +beast (0.6.6-8) unstable; urgency=high + + * debian/control: + + Added Vcs fields. + + * debian/patches/011_suidmain_CVE-2006-2916_CVE-2006-4447.diff: + + Security fix for a vulnerability in the suid wrappers similar to the + ones found in CVE-2006-2916 and CVE-2006-4447. + * debian/patches/012_gslice_corruption.diff: + + Patch from upstream to fix a memory corruption caused by a Glist/GSlist + confusion. + + -- Sam Hocevar (Debian packages) Mon, 19 Mar 2007 16:35:26 +0100 + +beast (0.6.6-7) unstable; urgency=high + + * Acknowledge previous NMU (Closes: #385819). + * debian/control: + + Build-depend on shared-mime-info so that mime files do not disappear + upon rebuilds (Closes: #397158). Thanks to Frank Küster for the fix. + + -- Sam Hocevar (Debian packages) Sun, 12 Nov 2006 17:59:01 +0100 + +beast (0.6.6-6.1) unstable; urgency=low + + * NMU. + * Drop build dependency on g++-4.0. Closes: #385819. + + -- Matthias Klose Sun, 3 Sep 2006 17:12:36 +0200 + +beast (0.6.6-6) unstable; urgency=low + + * debian/rules: + + Remove global MIME files. YA RLY. + + * debian/control: + + Set policy to 3.7.2. + + -- Sam Hocevar (Debian packages) Wed, 14 Jun 2006 19:09:28 +0200 + +beast (0.6.6-5) unstable; urgency=low + + * debian/control: + + Build-depend on quilt. + + * debian/patches/001_glib.diff: + + Patch from upstream to build with newer glib versions. Thanks to + Stefan Westerfeld, Tim Janik and Arnaud Fontaine (Closes: #359639). + + * debian/patches/002_gcc41.diff: + + Patch from Joost Yervante Damad to fix g++-4.1 + compilation (Closes: #356233). + + -- Sam Hocevar (Debian packages) Sat, 22 Apr 2006 22:57:41 +0200 + +beast (0.6.6-4) unstable; urgency=low + + * debian/rules: + + Remove global MIME files and call dh_installmime (Closes: #341247). + + -- Sam Hocevar (Debian packages) Sun, 22 Jan 2006 14:24:03 +0100 + +beast (0.6.6-3) unstable; urgency=low + + * Rebuilt package due to a new C++ ABI change (Closes: #339153). + * debian/control: + + Conflict with older versions of bse-alsa. + + Build-depend on g++-4.0 (>= 4.0.2-4) because we did no soname bump. + * debian/rules: + + Tightened shlib dependencies. + * debian/compat: + + Set level to 4. + + -- Sam Hocevar (Debian packages) Sun, 27 Nov 2005 16:19:10 +0100 + +beast (0.6.6-2) unstable; urgency=low + + * debian/postinst: + + Setuid the wrapper binaries. + * debian/control: + + Recommend bse-alsa which is a far better output driver. + + Build-depend on gettext because of the patched de.po file. + * debian/rules: + + Set the XPM icon size to 32x32 as per policy instead of 48x48. + + -- Sam Hocevar (Debian packages) Tue, 1 Nov 2005 16:21:11 +0100 + +beast (0.6.6-1) unstable; urgency=low + + * New upstream release (Closes: #307254). This version fixes an old + FTBFS (Closes: #292971) and uses tput in the configure script instead + of an ncurses program that mangled the terminal (Closes: #297275). + * debian/control: + + Set policy to 3.6.2.1. + + Build-depend on libxml2-utils (xmllint). + + libtool is a lot nicer now; no longer build-conflict on beast. + * debian/rules: + + Got rid of an old workaround for GCC bug #10681 that was fixed + ages ago. + + Add an icon to the menu entry (Closes: #299413). + * bse/bsesequencer.cc: + + Comment out asserts using G_STRUCT_OFFSET. + * bse/bsesong.cc: + + Declare functions in the main scope. + * po/de.po: + + Fixed a typo, thanks to Jens Seidel (Closes: #314147). + + -- Sam Hocevar (Debian packages) Tue, 1 Nov 2005 00:39:52 +0100 + +beast (0.6.2-3) unstable; urgency=low + + * bse/bsemidireceiver.cc: + + Fix from upstream for a bug causing demosong to crash beast on AMD64. + + -- Sam Hocevar (Debian packages) Fri, 6 Aug 2004 09:11:14 +0200 + +beast (0.6.2-2) unstable; urgency=low + + * sfi/sfithreads.c: + + Re-added a patch that had gone missing. + + -- Sam Hocevar (Debian packages) Mon, 2 Aug 2004 12:05:39 +0200 + +beast (0.6.2-1) unstable; urgency=low + + * New upstream release. + * Reverted the wrapper changes I introduced in 0.6.1-4 due to unexpected + breaks, also at upstream's request (Closes: #262181). + * debian/control: + + Set policy to 3.6.1.1. + + -- Sam Hocevar (Debian packages) Fri, 30 Jul 2004 10:40:31 +0200 + +beast (0.6.1-4) unstable; urgency=low + + * launchers/*: + + Moved real binaries to /usr/lib/beast, leavin only wrappers in /usr/bin. + * debian/beast.1 debian/bsesh.1: + + Removed these legacy files. + + -- Sam Hocevar (Debian packages) Tue, 1 Jun 2004 16:22:19 -0300 + +beast (0.6.1-3) unstable; urgency=low + + * sfi/glib-extra.h: + + Applied temporary upstream compilation fix for glib 2.4.0. + * beast-gtk/gxk/gxkdialog.c: + + Ditto for GTK+ 2.4. + + -- Sam Hocevar (Debian packages) Fri, 28 May 2004 08:59:00 -0300 + +beast (0.6.1-2) unstable; urgency=low + + * sfi/sfithreads.c: + + Replaced a _syscall0() declaration with a direct call to syscall() + because _syscallX() macros don't exist on IA64 (Closes: #245817). + * debian/menu: + + Quoted strings where appropriate. + + -- Sam Hocevar (Debian packages) Thu, 27 May 2004 19:48:56 -0300 + +beast (0.6.1-1) unstable; urgency=low + + * New upstream release. + * Removed all Debian-specific patches; they're either applied upstream or + obsolete. + + -- Sam Hocevar (Debian packages) Fri, 9 Apr 2004 20:09:21 +0200 + +beast (0.5.5-5) unstable; urgency=medium + + * bse/bsetrack.proc: + + Re-fixed the spurious CRIGHTS that regressed in my -4 upload. + + -- Sam Hocevar (Debian packages) Mon, 9 Feb 2004 22:51:18 +0100 + +beast (0.5.5-4) unstable; urgency=medium + + * debian/control: + + Added libxml-parser-perl to the build dependencies (Closes: #230951). + + -- Sam Hocevar (Debian packages) Tue, 3 Feb 2004 20:21:43 +0100 + +beast (0.5.5-3) unstable; urgency=medium + + * Fixed my messing with autoconf so that all plugins are correctly installed + (Closes: #223029). + * Relibtoolized with libtool 1.5. + + -- Sam Hocevar (Debian packages) Fri, 7 Nov 2003 17:41:26 +0100 + +beast (0.5.5-2) unstable; urgency=low + + * debian/rules: + + Use --enable-osspcm and --enable-ossmidi instead of the now deprecated + --enable-devdsp and --enable-devmidi. Fixes builds on system without a + /dev, such as autobuilders. + * debian/copyright: + + Minor cosmetic enhancements. + * configure.in: + + Fixed a warning in the XKBgeom.h detection. + * bse/bsetrack.proc: + + Replaced a spurious CRIGHTS entry with a proper LICENSE entry. + + -- Sam Hocevar (Debian packages) Wed, 29 Oct 2003 17:03:52 +0100 + +beast (0.5.5-1) unstable; urgency=low + + * New upstream release. + + -- Sam Hocevar (Debian packages) Tue, 28 Oct 2003 11:50:00 +0100 + +beast (0.5.4-5) unstable; urgency=low + + * debian/control: + + Set policy to 3.6.1.0. + * docs/generated/*: + + Replaced H1 with SH in the manpages to please mandb (Closes: #210623). + + -- Sam Hocevar (Debian packages) Fri, 24 Oct 2003 01:51:26 +0200 + +beast (0.5.4-4) unstable; urgency=low + + * debian/control: + + Downgraded the debhelper build-dependency to 3.0. + * sfi/Makefile.am: + + Disabled the sfidl build due to a gcc ICE on Alpha that I have not yet + been able to reproduce or narrow to a minimal testcase. + + -- Sam Hocevar (Debian packages) Thu, 14 Aug 2003 13:49:31 +0200 + +beast (0.5.4-3) unstable; urgency=low + + * debian/control: + + Build-depend on libgtk2.0-dev (>= 2.2.2-2) to fix the ARM build (See + #201443 for more information). + + Set the beast build-conflict to (<< ${Source-Version}). + * Removed deprecated changes from the diff. + * Re-ran "libtoolize -c -f && aclocal-1.4 && autoheader && autoconf && \ + automake-1.4" with the latest libtool (1.5) so that our C++ kludge is no + longer needed. + + -- Sam Hocevar (Debian packages) Fri, 8 Aug 2003 09:57:11 +0200 + +beast (0.5.4-2) unstable; urgency=low + + * sfi/toyprof.c: Replaced #ifdef with #if to test variables. + * debian/control: Set policy to 3.6.0. No changes required. + + -- Sam Hocevar (Debian packages) Thu, 24 Jul 2003 22:52:09 +0200 + +beast (0.5.4-1) unstable; urgency=low + + * New upstream release. + + -- Sam Hocevar (Debian packages) Wed, 23 Jul 2003 17:52:37 +0200 + +beast (0.5.3-2) unstable; urgency=low + + * debian/control: + + Build-depend on guile-1.6 (>= 1.6.4-2.1) to avoid build failures on ia64. + * bse/bsestorage.c, sfi/testsfi.c: + + Include because G_BREAKPOINT needs it on !i386 && !alpha. + + -- Sam Hocevar (Debian packages) Mon, 7 Jul 2003 15:33:15 +0200 + +beast (0.5.3-1) unstable; urgency=low + + * New upstream release. + + Supports unlimited Undo/Redo. + + Most Debian compilation fixes were merged. + * aclocal-1.4 && autoconf && autoheader && automake-1.4 -a -c + * debian/control: + + Set the Guile build-dependency to guile-1.6-dev only, because upstream + now officially supports it, and because it now builds on all Debian + architectures. + + Build-conflicts with beast (<< 0.5.3-1) so that libtool does not get + confused with our old libbsw. + + -- Sam Hocevar (Debian packages) Sun, 6 Jul 2003 13:55:35 +0200 + +beast (0.5.1-7) unstable; urgency=low + + * debian/control: + + Updated the package description with a suggestion from upstream. + + Explicitely depend on libglib2.0-dev (>= 2.2.2-1) because of bug #198077 + in glib2.0 that caused the hppa build to hang (Closes: #196693). + * debian/rules: + + Split the build target into configure and build. + + Re-enabled optimizations on hppa that were disabled in a previous NMU, + because this is not how it should be done. + + On ia64, we build gslfft.c with -O1 instead of -O3 to work around a + gcc-3.3 ICE (GCC Bug #10681). + * Disabled the documentation generation, since it is already built in the + original tarball. + * Replaced g_print with g_printf in zintern.c, just in case #198077 + strikes back. + * Stored the return value of bse_type_register_static in a GType instead of + a guint in a few places. Fixes a FTBFS and probably crashes on Alpha. + + -- Sam Hocevar (Debian packages) Thu, 19 Jun 2003 20:30:18 +0200 + +beast (0.5.1-6) unstable; urgency=low + + * Linked libbsw and libbse against libsfi to allow prelinking these + libraries. + * Removed the leading "a" in the package description. + + -- Sam Hocevar (Debian packages) Sun, 8 Jun 2003 14:26:35 +0200 + +beast (0.5.1-5) unstable; urgency=low + + * Fixed the ia64 and hppa builds by including in sfidl-parser.cc. + * Explicitely put -lpthread in addition to -pthread in GLIB_LIBS and GUI_LIBS + because libtool eats -pthread in the link phase (Bug #194774). Makes our + libraries usable on hppa. + * Fixed a bug in the LADSPA plugin loader that was causing crashes when + the cmt package was installed (Closes: #189655). + * Set policy to 3.5.10. + + -- Sam Hocevar (Debian packages) Wed, 30 Apr 2003 16:27:16 +0200 + +beast (0.5.1-4) unstable; urgency=low + + * Fixed the guile version check in configure.in (Closes: #191346). + + -- Samuel Hocevar Wed, 30 Apr 2003 16:27:16 +0200 + +beast (0.5.1-3) unstable; urgency=low + + * We conflict against cmt (<<1.15) because old versions were compiled + with an uncompatible version of g++. + * Commented out some x86-only code that was disabled anyway but prevented + proper compilation on other architectures (Closes: #190423). + + -- Samuel Hocevar Thu, 24 Apr 2003 05:47:09 +0200 + +beast (0.5.1-2) unstable; urgency=low + + * Removed an outdated comment in README.Debian suggesting to use pd + instead of beast. beast is now mature enough. + * Changed section to gnome, according to the recent section additions. + + -- Samuel Hocevar Fri, 18 Apr 2003 22:29:24 +0200 + +beast (0.5.1-1) unstable; urgency=low + + * New upstream release. + * Replaced `==' with `=' in configure.in. + * Re-added libguile9-dev to the list of conditional build dependencies, + because it does not look like guile-1.6-dev is going to build for all + architectures very soon. + * Ported the code to work with both guile-1.4 and guile-1.6. Only + `scm_long_long2big' needed to be replaced with `scm_i_long_long2big' in + shell/bsescminterp.c. + + -- Samuel Hocevar Tue, 15 Apr 2003 02:59:39 +0200 + +beast (0.5.0-1) unstable; urgency=low + + * New upstream release. + * A lot of Debian fixes were merged into this release. + * Fixed a bashism in bsw/Makefile.am. + * Fixed format string errors in sfi/sfidl.cc. + * bswshell was renamed to bsesh. + + -- Samuel Hocevar Thu, 27 Mar 2003 02:01:21 +0100 + +beast (0.4.1-6) unstable; urgency=low + + * New maintainer. + * Wrote a more complete manpage for beast. + * Wrote a manpage for bswshell. + * Disabled annoying guile version checking, Build-Depends will be enough; we + now link against the new guile 1.6. + * Added gsl/bseconfig.h to the list of configure-generated files. + * Updated config.guess and config.sub. + * Re-created bse/gslmakefile.inc by hand and other script-generated files + that didn't get distributed. + * Re-ran aclocal && autoheader && autoconf && automake. + * Re-ran libtoolize and hacked the local ltmain.sh so that libtool properly + links the freeverb.so C++ plugin. + * Removed the build dependency on autotools-dev. + * Fixed lots of compilation warnings (Closes: #172005). + * Fixed the prototype of beast-gtk/bststest.c:qsampler_dcache_filler(). + + -- Samuel Hocevar Thu, 27 Mar 2003 02:01:21 +0100 + +beast (0.4.1-5.1) unstable; urgency=low + + * Non Maintainer Upload + * Replace -O6 by -O0 on hppa (Closes: #171127) + * Fix sed regexp problem in configure (cause configure abort) + * Replace automake build-depends by automaken + * Rebuild against new libvorbis0a package + + -- Julien LEMOINE Sun, 16 Mar 2003 14:12:58 +0100 + +beast (0.4.1-5) unstable; urgency=low + + * QA upload. + * bse/bsemain.c (bse_init): Terminate gslconfig array with a NULL. + Hopefully fixes #164328. + * configure.in: Remove Pentium check (due to a typo it didn't work in + the first place). The Pentium timing code works only on non-SMP + machines, and the proper way to detect those is a run-time check. + * Switch to debhelper 4. + * debian/rules: + - Automatically update config.{guess,sub} from autotools-dev. + - Remove `debug' support and enable `-g' by default. + * Conforms to Standards version 3.5.8. + + -- Matej Vela Tue, 11 Feb 2003 12:50:03 +0100 + +beast (0.4.1-4) unstable; urgency=low + + * orphan this package. + + -- Junichi Uekawa Mon, 30 Dec 2002 17:21:20 +0900 + +beast (0.4.1-3) unstable; urgency=low + + * #undef TOYPROF_PENTIUM so that profiling is disabled everywhere. + * specify HOST from dpkg-architecture. + * configure.in: modify to check for architecture that support pentium instructions. + + -- Junichi Uekawa Mon, 7 Oct 2002 15:44:09 +0900 + +beast (0.4.1-2) unstable; urgency=low + + * Add hacks to ./configure to ignore detection of /dev/dsp and /dev/midi + * set bse/toyprof.c TOYPROF_PENTIUM to 0, to not to use assembler instructions. + * Add --enable-devmidi --enable-devdsp to ./configure options. + * The above should fix build failure (closes: #163460) + Thanks for reporting, Stephen R Marenka + + -- Junichi Uekawa Sun, 6 Oct 2002 17:23:33 +0900 + +beast (0.4.1-1) unstable; urgency=low + + * New upstream version + * add libmad0-dev, libgnomecanvas2-dev, libvorbis-dev, libguile-dev, libart-2.0-dev build dependency + * change libgtk1.2-dev to libgtk2.0-dev + * remove autoconf hack. + * debian/rules: remove dh_testversion + * use -prefix option to configure, and DESTDIR for make install + * do not generate shlibs file for now. + + -- Junichi Uekawa Fri, 4 Oct 2002 17:24:33 +0900 + +beast (0.3.3-3) unstable; urgency=low + + * Rebuild with gdk-imlib1-dev. + + -- Junichi Uekawa Sat, 7 Sep 2002 12:54:49 +0900 + +beast (0.3.3-2) unstable; urgency=low + + * Re-applied the patch to configure.in. The original configure.in + checks if OSS works, and that's not really necessary on autobuilders. + (closes: #103835) + * autoconf is ran on build, and removed on clean target (as it used to be). + * build-depends on autoconf. + * removed the unnecessary build-conflicts for libasound1-dev + + -- Junichi Uekawa Sun, 8 Jul 2001 23:12:00 +0900 + +beast (0.3.3-1) unstable; urgency=low + + * new upstream release for fixing problems (closes: #103076) + thanks go to Tim Janik for backporting fixes. + * build-deps are now fixed. (closes: #96962) + * no longer call autoconf in debian/rules. + * libbse-3.0 soname increased to 3 + * This is a maintenance upload. Although this package has been + requested to be adopted by someone, I think I should be doing the + packaging of this fix, since I am still the maintainer until + that someone actually "adopts" this package. + + -- Junichi Uekawa Sat, 7 Jul 2001 01:46:56 +0900 + +beast (0.3.2-6) unstable; urgency=low + + * rebuilt with newer libs for newer dependency + + -- Junichi Uekawa Mon, 7 May 2001 00:15:41 +0900 + +beast (0.3.2-5) unstable; urgency=low + + * calls autoconf && ./configure in the configure process of + debian/rules, so that I won't get into this discrepancy of + configure.in and configure not matching + * Compiled fine on vore when I did it manually. + I guess there was some mistake in the previous upload. (closes: #89304) + + -- Junichi Uekawa Mon, 26 Mar 2001 00:19:11 +0900 + +beast (0.3.2-4) unstable; urgency=low + + * Unconditionally assume that OSS is available in the configure + process, so that at least OSS is available, and build + succeeds even when the build machine isn't able to make + a sound. (closes: #89304) + + -- Junichi Uekawa Sat, 24 Mar 2001 03:03:30 +0900 + +beast (0.3.2-3) unstable; urgency=low + + * fixing configure.in so that ALSA is properly recognized. + * bse/bsepcmdevice-alsa.c: modified so that it doesn't try to use + asoundid.h which seems to be not available in my system. + * configure.in acconfig.h has been modified accordingly. + * after all that above, I found out that ALSA didn't work, and adding + libasound1-dev into build-deps won't help anything. (closes: #89304) + + -- Junichi Uekawa Thu, 15 Mar 2001 23:00:03 +0900 + +beast (0.3.2-2) unstable; urgency=low + + * fixing build deps according to benc's suggestion (closes: #89304) + + -- Junichi Uekawa Tue, 13 Mar 2001 00:19:55 +0900 + +beast (0.3.2-1) unstable; urgency=low + + * Initial Debian package. (closes: #85183) + + -- Junichi Uekawa Wed, 28 Feb 2001 04:30:13 +0900