Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Lubomir Blaha (519db77545c6aaccf52f8792249face1ba57eac5)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Lubomir Blaha <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Lubomir Blaha (519db77545c6aaccf52f8792249face1ba57eac5)
  • Date: Thu, 7 Feb 2008 14:47:37 -0600

GIT changes to master grimoire by Lubomir Blaha <tritol AT trilogic.cz>:

ChangeLog | 5 +++++
audio-libs/libayemu/DETAILS | 25 +++++++++++++++++++++++++
audio-libs/libayemu/HISTORY | 3 +++
audio-players/playvtx/BUILD | 7 +++++++
audio-players/playvtx/DEPENDS | 1 +
audio-players/playvtx/DETAILS | 13 +++++++++++++
audio-players/playvtx/HISTORY | 3 +++
audio-players/playvtx/libayemu.patch | 12 ++++++++++++
audio-plugins/xmms-vtx/BUILD | 6 ++++++
audio-plugins/xmms-vtx/DEPENDS | 3 +++
audio-plugins/xmms-vtx/DETAILS | 15 +++++++++++++++
audio-plugins/xmms-vtx/HISTORY | 3 +++
audio-plugins/xmms-vtx/libayemu.patch | 12 ++++++++++++
13 files changed, 108 insertions(+)

New commits:
commit 519db77545c6aaccf52f8792249face1ba57eac5
Author: Lubomir Blaha <tritol AT trilogic.cz>
Commit: Lubomir Blaha <tritol AT trilogic.cz>

audio-libs/libayemu: new spell, AY/YM sound chip (from ZX-Spectrum)
emulation library

commit 23a08d3312be7557742ac2d3083ab272df71546c
Author: Lubomir Blaha <tritol AT trilogic.cz>
Commit: Lubomir Blaha <tritol AT trilogic.cz>

audio-players/playvtx: new spell, VTX file format player based on AY/YM
emulation library

commit e97c7b8088bd51eb5f4556ae24948db4f32767d0
Author: Lubomir Blaha <tritol AT trilogic.cz>
Commit: Lubomir Blaha <tritol AT trilogic.cz>

audio-plugins/xmms-vtx: new spell, XMMS plugin for playing VTX files

diff --git a/ChangeLog b/ChangeLog
index b51e7da..71972fd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-02-07 Lubomir Blaha <tritol AT trilogic.cz>
+ * audio-libs/libayemu: new spell, AY/YM sound chip (from ZX-Spectrum)
emulation library
+ * audio-players/playvtx: new spell, VTX file format player based on
AY/YM emulation library
+ * audio-plugins/xmms-vtx: new spell, XMMS plugin for playing VTX files
+
2008-02-06 Pol Vinogradov <vin.public AT gmail.com>
* http/iceweasel: removed deprecated spell

diff --git a/audio-libs/libayemu/DEPENDS b/audio-libs/libayemu/DEPENDS
new file mode 100755
index 0000000..e69de29
diff --git a/audio-libs/libayemu/DETAILS b/audio-libs/libayemu/DETAILS
new file mode 100755
index 0000000..d5db96b
--- /dev/null
+++ b/audio-libs/libayemu/DETAILS
@@ -0,0 +1,25 @@
+ SPELL=libayemu
+ VERSION=0.9.5
+ SOURCE=$SPELL-$VERSION.tar.gz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
+ WEB_SITE=http://sashnov.nm.ru/libayemu.html
+ ENTERED=20080207
+
SOURCE_HASH=sha512:05beeb78f67a0d3aed5b61eef3734cfe94576c8b7f0a2be4152cf1ffac88f3efa8c5eb764fc47dbb275a70b0349f2b5c70a1524b1f226f0bc667fbbf2cab3ae6
+ LICENSE[0]=LGPL
+ SHORT="AY/YM sound chip (from ZX-Spectrum) emulation library."
+cat << EOF
+This is the AY/YM sound chip emulator. These chips was used in such computers
+as Sinclair ZX Spectrum 128Kb (AY8912), Atari and some others.
+
+This library allow to use AY/YM sound effects and music in your own
programms,
+games, demos, etc. User must pass to library array of AY/YM registers
+(14-bytes) and library will generate sound stream by this. Library have
+functions for handle .vtx files, doxygen format documentation and samples of
+use the library API.
+
+VTX format is made for store AY/YM song in lha5 complession. This library can
+read sond info header and unpack lha5 compressed data from vtx file. There
are
+thousands songs from games, magazins, demos available from other sources in
+internet. You can see http://vtx.microfor.ru/music.htm for example.
+EOF
diff --git a/audio-libs/libayemu/HISTORY b/audio-libs/libayemu/HISTORY
new file mode 100644
index 0000000..f4b1953
--- /dev/null
+++ b/audio-libs/libayemu/HISTORY
@@ -0,0 +1,3 @@
+2008-02-07 Lubomir Blaha <tritol AT trilogic.cz>
+ * DEPENDS, DETAILS, HISTORY: created this spell
+
diff --git a/audio-players/playvtx/BUILD b/audio-players/playvtx/BUILD
new file mode 100755
index 0000000..e0e1ae5
--- /dev/null
+++ b/audio-players/playvtx/BUILD
@@ -0,0 +1,7 @@
+patch -p1 < $SCRIPT_DIRECTORY/libayemu.patch &&
+rm missing &&
+aclocal &&
+autoheader &&
+automake --add-missing --include-deps --copy &&
+autoconf &&
+default_build
diff --git a/audio-players/playvtx/DEPENDS b/audio-players/playvtx/DEPENDS
new file mode 100755
index 0000000..d35b3bb
--- /dev/null
+++ b/audio-players/playvtx/DEPENDS
@@ -0,0 +1 @@
+depends libayemu
diff --git a/audio-players/playvtx/DETAILS b/audio-players/playvtx/DETAILS
new file mode 100755
index 0000000..e1a0756
--- /dev/null
+++ b/audio-players/playvtx/DETAILS
@@ -0,0 +1,13 @@
+ SPELL=playvtx
+ VERSION=0.9.1
+ SOURCE=$SPELL-$VERSION.tar.gz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]=$SOURCEFORGE_URL/libayemu/$SOURCE
+ WEB_SITE=http://sashnov.nm.ru/libayemu.html
+ ENTERED=20080207
+
SOURCE_HASH=sha512:0e4fff6070c354aa32ff0398096b0eeb7078f35c26ba7a880d55e4b20a2642efe3c719b00c0e612d67460db4faee4767b803082c55644b462440cfbc25933788
+ LICENSE[0]=GPL
+ SHORT="VTX file format player based on AY/YM emulation library."
+cat << EOF
+This is console player for AY/YM sound chip music packed to VTX format.
+EOF
diff --git a/audio-players/playvtx/HISTORY b/audio-players/playvtx/HISTORY
new file mode 100644
index 0000000..31af0b8
--- /dev/null
+++ b/audio-players/playvtx/HISTORY
@@ -0,0 +1,3 @@
+2008-02-07 Lubomir Blaha <tritol AT trilogic.cz>
+ * BUILD, DEPENDS, DETAILS, HISTORY, libayemu.patch: created this spell
+
diff --git a/audio-players/playvtx/libayemu.patch
b/audio-players/playvtx/libayemu.patch
new file mode 100644
index 0000000..f747a32
--- /dev/null
+++ b/audio-players/playvtx/libayemu.patch
@@ -0,0 +1,12 @@
+diff -Naur playvtx-0.9.1/configure.in playvtx-0.9.1-fixed/configure.in
+--- playvtx-0.9.1/configure.in 2005-11-17 13:04:47.000000000 +0100
++++ playvtx-0.9.1-fixed/configure.in 2008-02-07 20:47:40.000000000 +0100
+@@ -7,7 +7,7 @@
+ AC_PROG_CC
+
+ # Checks for libraries.
+-AC_CHECK_LIB(ayemu, ayemu_start,,
++AC_CHECK_LIB(ayemu, ayemu_init,,
+ AC_MSG_ERROR(cannot find ayemu library. Check your ayemu library
installation))
+ AC_OUTPUT
+
diff --git a/audio-plugins/xmms-vtx/BUILD b/audio-plugins/xmms-vtx/BUILD
new file mode 100755
index 0000000..20b0cc3
--- /dev/null
+++ b/audio-plugins/xmms-vtx/BUILD
@@ -0,0 +1,6 @@
+patch -p1 < $SCRIPT_DIRECTORY/libayemu.patch &&
+rm missing &&
+aclocal &&
+automake --add-missing --include-deps --copy &&
+autoconf &&
+default_build
diff --git a/audio-plugins/xmms-vtx/DEPENDS b/audio-plugins/xmms-vtx/DEPENDS
new file mode 100755
index 0000000..1c1ddf1
--- /dev/null
+++ b/audio-plugins/xmms-vtx/DEPENDS
@@ -0,0 +1,3 @@
+depends libayemu &&
+depends gtk+ &&
+depends xmms
diff --git a/audio-plugins/xmms-vtx/DETAILS b/audio-plugins/xmms-vtx/DETAILS
new file mode 100755
index 0000000..9461c44
--- /dev/null
+++ b/audio-plugins/xmms-vtx/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=xmms-vtx
+ VERSION=0.8.1
+ SOURCE=$SPELL-$VERSION.tar.gz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]=$SOURCEFORGE_URL/libayemu/$SOURCE
+ WEB_SITE=http://sashnov.nm.ru/libayemu.html
+ ENTERED=20080207
+
SOURCE_HASH=sha512:23f2dbd24e25eb494833a8ea5b9beaf971886718f0f68983903785832d9c84d53a7e98320b3f1b7772fb2ca7e1863ec00ed94ee1405e3c750ae7feea057739c9
+ LICENSE[0]=GPL
+ SHORT="XMMS plugin for playing VTX files."
+cat << EOF
+This is an XMMS input plugin. XMMS is a cross-platform multimedia player.
+VTX - Vortex format for AY/YM music by Roman Scherbakov. Tunes could be found
+on http://vtx.microfor.ru/music.htm and other places.
+EOF
diff --git a/audio-plugins/xmms-vtx/HISTORY b/audio-plugins/xmms-vtx/HISTORY
new file mode 100644
index 0000000..31af0b8
--- /dev/null
+++ b/audio-plugins/xmms-vtx/HISTORY
@@ -0,0 +1,3 @@
+2008-02-07 Lubomir Blaha <tritol AT trilogic.cz>
+ * BUILD, DEPENDS, DETAILS, HISTORY, libayemu.patch: created this spell
+
diff --git a/audio-plugins/xmms-vtx/libayemu.patch
b/audio-plugins/xmms-vtx/libayemu.patch
new file mode 100644
index 0000000..35f2e71
--- /dev/null
+++ b/audio-plugins/xmms-vtx/libayemu.patch
@@ -0,0 +1,12 @@
+diff -Naur xmms-vtx-0.8.1/configure.in xmms-vtx-0.8.1-fixed/configure.in
+--- xmms-vtx-0.8.1/configure.in 2005-11-17 13:10:40.000000000 +0100
++++ xmms-vtx-0.8.1-fixed/configure.in 2008-02-07 21:06:09.000000000 +0100
+@@ -18,7 +18,7 @@
+ dnl check for libraries
+ AC_CHECK_LIB(m,main)
+
+-AC_CHECK_LIB(ayemu, ayemu_start,,
++AC_CHECK_LIB(ayemu, ayemu_init,,
+ AC_MSG_ERROR(cannot find ayemu library. Check your ayemu library
installation))
+ AC_OUTPUT
+



  • [SM-Commit] GIT changes to master grimoire by Lubomir Blaha (519db77545c6aaccf52f8792249face1ba57eac5), Lubomir Blaha, 02/07/2008

Archive powered by MHonArc 2.6.24.

Top of Page