gnome-sound-theme r2 - in trunk: . po stereo stereo/alert stereo/game stereo/notification stereo/support



Author: lferrett
Date: Sat Aug  9 17:54:31 2008
New Revision: 2
URL: http://svn.gnome.org/viewvc/gnome-sound-theme?rev=2&view=rev

Log:
Initial commit 



Added:
   trunk/AUTHORS
   trunk/ChangeLog
   trunk/MAINTAINERS
   trunk/Makefile.am
   trunk/NEWS
   trunk/README
   trunk/autogen.sh   (contents, props changed)
   trunk/configure.ac
   trunk/gnome-sound-theme.pc.in
   trunk/index.theme.in
   trunk/po/
   trunk/po/ChangeLog
   trunk/po/LINGUAS
   trunk/po/POTFILES.in
   trunk/po/POTFILES.skip
   trunk/stereo/
   trunk/stereo/Makefile.am
   trunk/stereo/alert/
   trunk/stereo/alert/Makefile.am
   trunk/stereo/alert/dialog-error.ogg   (contents, props changed)
   trunk/stereo/game/
   trunk/stereo/game/Makefile.am
   trunk/stereo/notification/
   trunk/stereo/notification/Makefile.am
   trunk/stereo/notification/desktop-login.ogg   (contents, props changed)
   trunk/stereo/notification/desktop-logout.ogg   (contents, props changed)
   trunk/stereo/notification/dialog-information.ogg   (contents, props changed)
   trunk/stereo/notification/dialog-question.ogg   (contents, props changed)
   trunk/stereo/notification/dialog-warning.ogg   (contents, props changed)
   trunk/stereo/notification/message-new-email.ogg   (contents, props changed)
   trunk/stereo/notification/phone-incoming-call.ogg   (contents, props changed)
   trunk/stereo/support/
   trunk/stereo/support/Makefile.am

Added: trunk/AUTHORS
==============================================================================

Added: trunk/MAINTAINERS
==============================================================================
--- (empty file)
+++ trunk/MAINTAINERS	Sat Aug  9 17:54:31 2008
@@ -0,0 +1,3 @@
+Luca Ferretti
+E-Mail: elle uca libero it
+Userid: lferrett

Added: trunk/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/Makefile.am	Sat Aug  9 17:54:31 2008
@@ -0,0 +1,32 @@
+SUBDIRS = stereo po
+
+pkgconfigdir = $(datadir)/pkgconfig
+pkgconfig_DATA = gnome-sound-theme.pc
+
+THEME_IN_FILES = index.theme.in
+
+%.theme:   %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
+
+theme_DATA = index.theme
+
+EXTRA_DIST=				\
+	index.theme.in 			\
+	gnome-sound-theme.pc.in		\
+	mkinstalldirs
+
+# we don't want to install mo files, all translations are already stored
+# in theme files
+install-data-local:
+	$(MAKE) -C po uninstall
+
+CLEANFILES = 				\
+	index.theme
+
+MAINTAINERCLEANFILES =			\
+	Makefile.in			\
+	aclocal.m4			\
+	configure			\
+	install-sh			\
+	missing				\
+	mkinstalldirs
+

Added: trunk/NEWS
==============================================================================

Added: trunk/README
==============================================================================
--- (empty file)
+++ trunk/README	Sat Aug  9 17:54:31 2008
@@ -0,0 +1,18 @@
+gnome-sound-theme
+
+Just a port of old gnome-audio package to new fd.o Sound Theme/Naming Spec[1].
+
+Fresh and missing audio files are welcome.
+
+
+Note 1:
+Initial files are just sounds available in gnome-audio module, 
+converted from WAV to OGG using the GStreamer pipeline suggested
+in gst-inpect man page.
+
+Note 2:
+In stereo/support directory should be places event sounds included
+in "Actions" and "Input Feedback" contexts (Icon Naming Spec)
+
+
+[1] http://www.freedesktop.org/wiki/Specifications/sound-theme-spec
\ No newline at end of file

Added: trunk/autogen.sh
==============================================================================
--- (empty file)
+++ trunk/autogen.sh	Sat Aug  9 17:54:31 2008
@@ -0,0 +1,29 @@
+#!/bin/sh
+# Run this to generate all the initial makefiles, etc.
+
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+PKG_NAME="gnome-sound-theme"
+REQUIRED_AUTOMAKE_VERSION=1.9
+
+(test -f $srcdir/configure.ac \
+  && test -f $srcdir/index.theme.in \
+  && test -d $srcdir/stereo) || {
+    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
+    echo " top-level gnome directory"
+    exit 1
+}
+
+gettext=`which gettext`
+gettext_prefix=`dirname $gettext | xargs dirname`
+
+if [ -x $gettext_prefix/share/gettext/mkinstalldirs ]; then
+    cp $gettext_prefix/share/gettext/mkinstalldirs $srcdir
+fi
+
+which gnome-autogen.sh || {
+    echo "You need to install gnome-common from the GNOME CVS"
+    exit 1
+}
+USE_GNOME2_MACROS=1 . gnome-autogen.sh

Added: trunk/configure.ac
==============================================================================
--- (empty file)
+++ trunk/configure.ac	Sat Aug  9 17:54:31 2008
@@ -0,0 +1,43 @@
+# Process this file with autoconf to produce a configure script.
+AC_PREREQ(2.53)
+
+AC_INIT([gnome-sound-theme], [0.0.1])
+AC_CONFIG_SRCDIR(index.theme.in)
+
+AM_INIT_AUTOMAKE([1.9 tar-ustar])
+
+IT_PROG_INTLTOOL([0.40.0])
+
+GETTEXT_PACKAGE="${PACKAGE}"
+AC_SUBST(GETTEXT_PACKAGE)
+
+AM_GLIB_GNU_GETTEXT
+
+# AM_GLIB_GNU_GETTEXT above subst. $DATADIRNAME
+# this is the directory where the *.{mo,gmo} files are installed
+localedir='${prefix}/${DATADIRNAME}/locale'
+AC_SUBST(localedir)
+
+# Workaround to make aclocal get the right flags
+AC_SUBST(ACLOCAL_AMFLAGS, "\${ACLOCAL_FLAGS}")
+
+# Define the toplevel path here
+AC_SUBST(themedir, "\${datadir}/sounds/gnome")
+
+AM_MAINTAINER_MODE
+
+GNOME_COMMON_INIT
+
+
+AC_CONFIG_FILES([
+Makefile
+gnome-sound-theme.pc
+stereo/Makefile
+stereo/alert/Makefile
+stereo/game/Makefile
+stereo/notification/Makefile
+stereo/support/Makefile
+po/Makefile.in
+])
+
+AC_OUTPUT
\ No newline at end of file

Added: trunk/gnome-sound-theme.pc.in
==============================================================================
--- (empty file)
+++ trunk/gnome-sound-theme.pc.in	Sat Aug  9 17:54:31 2008
@@ -0,0 +1,6 @@
+Name: gnome-sound-theme
+Description: A collection of sounds used as the basis for GNOME themes
+Version: @VERSION@
+Requires: 
+Libs: 
+Cflags: 

Added: trunk/index.theme.in
==============================================================================
--- (empty file)
+++ trunk/index.theme.in	Sat Aug  9 17:54:31 2008
@@ -0,0 +1,22 @@
+Sound Theme]
+_Name=GNOME
+_Comment=Default GNOME sound theme
+Inherits=default
+Directories=stereo/alerts,stereo/notification,stereo/support,stereo/game
+
+[stereo/alerts]
+Context=Alerts
+OutputProfile=stereo
+
+[stereo/notification]
+Context=Notification
+OutputProfile=stereo
+
+[stereo/support]
+Context=Support
+OutputProfile=stereo
+
+[stereo/game]
+Context=Game
+OutputProfile=stereo
+

Added: trunk/po/LINGUAS
==============================================================================
--- (empty file)
+++ trunk/po/LINGUAS	Sat Aug  9 17:54:31 2008
@@ -0,0 +1,2 @@
+# please keep this list sorted alphabetically, one lang per line
+

Added: trunk/po/POTFILES.in
==============================================================================
--- (empty file)
+++ trunk/po/POTFILES.in	Sat Aug  9 17:54:31 2008
@@ -0,0 +1,3 @@
+# List of source files containing translatable strings.
+# Please keep this file sorted alphabetically.
+[type: gettext/ini] index.theme.in

Added: trunk/po/POTFILES.skip
==============================================================================

Added: trunk/stereo/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/stereo/Makefile.am	Sat Aug  9 17:54:31 2008
@@ -0,0 +1 @@
+SUBDIRS=alert game notification support

Added: trunk/stereo/alert/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/stereo/alert/Makefile.am	Sat Aug  9 17:54:31 2008
@@ -0,0 +1,15 @@
+NULL =
+
+profile = stereo
+context = alert
+
+soundsdir = $(themedir)/$(profile)/$(context)
+
+sounds_DATA = \
+	dialog-error.ogg
+
+EXTRA_DIST =                            \
+        $(icons_DATA)
+
+MAINTAINERCLEANFILES =                  \
+        Makefile.in

Added: trunk/stereo/alert/dialog-error.ogg
==============================================================================
Binary file. No diff available.

Added: trunk/stereo/game/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/stereo/game/Makefile.am	Sat Aug  9 17:54:31 2008
@@ -0,0 +1,13 @@
+
+profile = stereo
+context = game
+
+soundsdir = $(themedir)/$(profile)/$(context)
+
+sounds_DATA = 
+
+EXTRA_DIST =                            \
+        $(icons_DATA)
+
+MAINTAINERCLEANFILES =                  \
+        Makefile.in

Added: trunk/stereo/notification/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/stereo/notification/Makefile.am	Sat Aug  9 17:54:31 2008
@@ -0,0 +1,20 @@
+
+profile = stereo
+context = notification
+
+soundsdir = $(themedir)/$(profile)/$(context)
+
+sounds_DATA = \
+	desktop-login.ogg			\
+	desktop-logout.ogg			\
+	dialog-information.ogg			\
+	dialog-question.ogg			\
+	dialog-warning.ogg			\
+	message-new-email.ogg			\
+	phone-incoming-call.ogg
+
+EXTRA_DIST =                            \
+        $(icons_DATA)
+
+MAINTAINERCLEANFILES =                  \
+        Makefile.in

Added: trunk/stereo/notification/desktop-login.ogg
==============================================================================
Binary file. No diff available.

Added: trunk/stereo/notification/desktop-logout.ogg
==============================================================================
Binary file. No diff available.

Added: trunk/stereo/notification/dialog-information.ogg
==============================================================================
Binary file. No diff available.

Added: trunk/stereo/notification/dialog-question.ogg
==============================================================================
Binary file. No diff available.

Added: trunk/stereo/notification/dialog-warning.ogg
==============================================================================
Binary file. No diff available.

Added: trunk/stereo/notification/message-new-email.ogg
==============================================================================
Binary file. No diff available.

Added: trunk/stereo/notification/phone-incoming-call.ogg
==============================================================================
Binary file. No diff available.

Added: trunk/stereo/support/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/stereo/support/Makefile.am	Sat Aug  9 17:54:31 2008
@@ -0,0 +1,13 @@
+
+profile = stereo
+context = support
+
+soundsdir = $(themedir)/$(profile)/$(context)
+
+sounds_DATA = 
+
+EXTRA_DIST =                            \
+        $(icons_DATA)
+
+MAINTAINERCLEANFILES =                  \
+        Makefile.in



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]