Changeset 3723

Show
Ignore:
Timestamp:
2008-09-19 22:39:45 (2 months ago)
Author:
silvia
Message:

Corrected license; added AUTHORS file; made 'make dist' and 'make distcheck' work

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • libsydneyaudio/trunk/Makefile.am

    r3722 r3723  
    1 # Copyright (C) 2003 Annodex Association  
     1# ***** BEGIN LICENSE BLOCK ***** 
     2# Version: MPL 1.1/GPL 2.0/LGPL 2.1 
    23# 
    3 # Redistribution and use in source and binary forms, with or without 
    4 # modification, are permitted provided that the following conditions 
    5 # are met: 
     4# The contents of this file are subject to the Mozilla Public License Version 
     5# 1.1 (the "License"); you may not use this file except in compliance with 
     6# the License. You may obtain a copy of the License at 
     7# http://www.mozilla.org/MPL/ 
    68# 
    7 # - Redistributions of source code must retain the above copyright 
    8 #   notice, this list of conditions and the following disclaimer. 
    9 #  
    10 # - Redistributions in binary form must reproduce the above copyright 
    11 #   notice, this list of conditions and the following disclaimer in the 
    12 #   documentation and/or other materials provided with the distribution. 
     9# Software distributed under the License is distributed on an "AS IS" basis, 
     10# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
     11# for the specific language governing rights and limitations under the 
     12# License. 
    1313# 
    14 # - Neither the name of CSIRO Australia nor the names of its 
    15 #   contributors may be used to endorse or promote products derived from 
    16 #   this software without specific prior written permission. 
     14# The Initial Developer of the Original Code is 
     15# Annodex Association 
     16# Portions created by the Initial Developer are Copyright (C) 2007 
     17# the Initial Developer. All Rights Reserved. 
    1718# 
    18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    19 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 
    21 # PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE ORGANISATION OR 
    22 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
    23 # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
    24 # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
    25 # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 
    26 # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 
    27 # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
    28 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     19# Contributor(s): Jan Gerber 
     20#                 Silvia Pfeiffer 
     21
     22# Alternatively, the contents of this file may be used under the terms of 
     23# either the GNU General Public License Version 2 or later (the "GPL"), or 
     24# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 
     25# in which case the provisions of the GPL or the LGPL are applicable instead 
     26# of those above. If you wish to allow use of your version of this file only 
     27# under the terms of either the GPL or the LGPL, and not to allow others to 
     28# use your version of this file under the terms of the MPL, indicate your 
     29# decision by deleting the provisions above and replace them with the notice 
     30# and other provisions required by the GPL or the LGPL. If you do not delete 
     31# the provisions above, a recipient may use your version of this file under 
     32# the terms of any one of the MPL, the GPL or the LGPL. 
     33
     34# ***** END LICENSE BLOCK ***** * 
    2935 
    3036AUTOMAKE_OPTIONS = foreign 
    3137 
    32 SUBDIRS = src 
     38SUBDIRS = src include 
     39DIST_SUBDIRS = $(SUBDIRS) 
    3340 
    3441pkgconfigdir = $(libdir)/pkgconfig 
    3542pkgconfig_DATA = sydneyaudio.pc 
    3643 
     44EXTRA_DIST = doc/libsydneyaudio.txt 
  • libsydneyaudio/trunk/configure.ac

    r3722 r3723  
     1# ***** BEGIN LICENSE BLOCK ***** 
     2# Version: MPL 1.1/GPL 2.0/LGPL 2.1 
     3# 
     4# The contents of this file are subject to the Mozilla Public License Version 
     5# 1.1 (the "License"); you may not use this file except in compliance with 
     6# the License. You may obtain a copy of the License at 
     7# http://www.mozilla.org/MPL/ 
     8# 
     9# Software distributed under the License is distributed on an "AS IS" basis, 
     10# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
     11# for the specific language governing rights and limitations under the 
     12# License. 
     13# 
     14# The Initial Developer of the Original Code is 
     15# Annodex Association 
     16# Portions created by the Initial Developer are Copyright (C) 2007 
     17# the Initial Developer. All Rights Reserved. 
     18# 
     19# Contributor(s): Jan Gerber 
     20#                 Silvia Pfeiffer 
     21# 
     22# Alternatively, the contents of this file may be used under the terms of 
     23# either the GNU General Public License Version 2 or later (the "GPL"), or 
     24# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 
     25# in which case the provisions of the GPL or the LGPL are applicable instead 
     26# of those above. If you wish to allow use of your version of this file only 
     27# under the terms of either the GPL or the LGPL, and not to allow others to 
     28# use your version of this file under the terms of the MPL, indicate your 
     29# decision by deleting the provisions above and replace them with the notice 
     30# and other provisions required by the GPL or the LGPL. If you do not delete 
     31# the provisions above, a recipient may use your version of this file under 
     32# the terms of any one of the MPL, the GPL or the LGPL. 
     33# 
     34# ***** END LICENSE BLOCK ***** * 
     35 
    136# Process this file with autoconf to produce a configure script. 
    2 AC_INIT(libsydneyaudio, 0.0.1.svn
     37AC_INIT(libsydneyaudio, 0.0.1
    338AC_CONFIG_SRCDIR([src/sydney_audio_alsa.c]) 
    439 
  • libsydneyaudio/trunk/include/Makefile.am

    r3722 r3723  
    1 # Copyright (C) 2003 Annodex Association  
     1# ***** BEGIN LICENSE BLOCK ***** 
     2# Version: MPL 1.1/GPL 2.0/LGPL 2.1 
    23# 
    3 # Redistribution and use in source and binary forms, with or without 
    4 # modification, are permitted provided that the following conditions 
    5 # are met: 
     4# The contents of this file are subject to the Mozilla Public License Version 
     5# 1.1 (the "License"); you may not use this file except in compliance with 
     6# the License. You may obtain a copy of the License at 
     7# http://www.mozilla.org/MPL/ 
    68# 
    7 # - Redistributions of source code must retain the above copyright 
    8 #   notice, this list of conditions and the following disclaimer. 
    9 #  
    10 # - Redistributions in binary form must reproduce the above copyright 
    11 #   notice, this list of conditions and the following disclaimer in the 
    12 #   documentation and/or other materials provided with the distribution. 
     9# Software distributed under the License is distributed on an "AS IS" basis, 
     10# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
     11# for the specific language governing rights and limitations under the 
     12# License. 
    1313# 
    14 # - Neither the name of CSIRO Australia nor the names of its 
    15 #   contributors may be used to endorse or promote products derived from 
    16 #   this software without specific prior written permission. 
     14# The Initial Developer of the Original Code is 
     15# Annodex Association 
     16# Portions created by the Initial Developer are Copyright (C) 2007 
     17# the Initial Developer. All Rights Reserved. 
    1718# 
    18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    19 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 
    21 # PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE ORGANISATION OR 
    22 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
    23 # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
    24 # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
    25 # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 
    26 # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 
    27 # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
    28 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
    29  
    30 ## Process this file with automake to produce Makefile.in 
     19# Contributor(s): Jan Gerber 
     20#                 Silvia Pfeiffer 
     21
     22# Alternatively, the contents of this file may be used under the terms of 
     23# either the GNU General Public License Version 2 or later (the "GPL"), or 
     24# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 
     25# in which case the provisions of the GPL or the LGPL are applicable instead 
     26# of those above. If you wish to allow use of your version of this file only 
     27# under the terms of either the GPL or the LGPL, and not to allow others to 
     28# use your version of this file under the terms of the MPL, indicate your 
     29# decision by deleting the provisions above and replace them with the notice 
     30# and other provisions required by the GPL or the LGPL. If you do not delete 
     31# the provisions above, a recipient may use your version of this file under 
     32# the terms of any one of the MPL, the GPL or the LGPL. 
     33
     34# ***** END LICENSE BLOCK ***** * 
    3135 
    3236includedir = $(prefix)/include 
  • libsydneyaudio/trunk/src/Makefile.am

    r3722 r3723  
    1 # Copyright (C) 2003 Annodex Association  
     1# ***** BEGIN LICENSE BLOCK ***** 
     2# Version: MPL 1.1/GPL 2.0/LGPL 2.1 
    23# 
    3 # Redistribution and use in source and binary forms, with or without 
    4 # modification, are permitted provided that the following conditions 
    5 # are met: 
     4# The contents of this file are subject to the Mozilla Public License Version 
     5# 1.1 (the "License"); you may not use this file except in compliance with 
     6# the License. You may obtain a copy of the License at 
     7# http://www.mozilla.org/MPL/ 
    68# 
    7 # - Redistributions of source code must retain the above copyright 
    8 #   notice, this list of conditions and the following disclaimer. 
    9 #  
    10 # - Redistributions in binary form must reproduce the above copyright 
    11 #   notice, this list of conditions and the following disclaimer in the 
    12 #   documentation and/or other materials provided with the distribution. 
     9# Software distributed under the License is distributed on an "AS IS" basis, 
     10# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
     11# for the specific language governing rights and limitations under the 
     12# License. 
    1313# 
    14 # - Neither the name of CSIRO Australia nor the names of its 
    15 #   contributors may be used to endorse or promote products derived from 
    16 #   this software without specific prior written permission. 
     14# The Initial Developer of the Original Code is 
     15# Annodex Association 
     16# Portions created by the Initial Developer are Copyright (C) 2007 
     17# the Initial Developer. All Rights Reserved. 
    1718# 
    18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
    19 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
    20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 
    21 # PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE ORGANISATION OR 
    22 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
    23 # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
    24 # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
    25 # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 
    26 # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 
    27 # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
    28 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
     19# Contributor(s): Jan Gerber 
     20#                 Silvia Pfeiffer 
     21
     22# Alternatively, the contents of this file may be used under the terms of 
     23# either the GNU General Public License Version 2 or later (the "GPL"), or 
     24# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 
     25# in which case the provisions of the GPL or the LGPL are applicable instead 
     26# of those above. If you wish to allow use of your version of this file only 
     27# under the terms of either the GPL or the LGPL, and not to allow others to 
     28# use your version of this file under the terms of the MPL, indicate your 
     29# decision by deleting the provisions above and replace them with the notice 
     30# and other provisions required by the GPL or the LGPL. If you do not delete 
     31# the provisions above, a recipient may use your version of this file under 
     32# the terms of any one of the MPL, the GPL or the LGPL. 
     33
     34# ***** END LICENSE BLOCK ***** * 
     35 
    2936 
    3037## Process this file with automake to produce Makefile.in