[easytag] Relicense libapetag and vcedit.c to GPLv2+



commit 21773c4bde88e344a5cbde8a3c4d76b4d7fe3aeb
Author: David King <amigadave amigadave com>
Date:   Tue Dec 9 23:01:02 2014 +0000

    Relicense libapetag and vcedit.c to GPLv2+
    
    Invoke Section 3 of the LGPL, and apply the terms of the GPL to all the
    LGPL portions of code inside EasyTAG, which include the APE tag reading
    code (libapetag) and the Vorbis comment parsing code (vcedit.c).

 Makefile.am                      |    1 -
 data/easytag.appdata.xml.in      |    2 +-
 src/tags/libapetag/COPYING.LGPL  |  510 --------------------------------------
 src/tags/libapetag/README.apetag |    2 +-
 src/tags/libapetag/apetaglib.c   |   33 ++--
 src/tags/libapetag/apetaglib.h   |   34 ++--
 src/tags/libapetag/id3v2_read.c  |   34 ++--
 src/tags/libapetag/id3v2_read.h  |   34 ++--
 src/tags/libapetag/info_mac.c    |   33 ++--
 src/tags/libapetag/info_mac.h    |   34 ++--
 src/tags/libapetag/info_mpc.c    |   34 ++--
 src/tags/libapetag/info_mpc.h    |   34 ++--
 src/tags/libapetag/is_tag.c      |   33 ++--
 src/tags/libapetag/is_tag.h      |   34 ++--
 src/tags/vcedit.c                |   20 +-
 src/tags/vcedit.h                |   19 +-
 16 files changed, 181 insertions(+), 710 deletions(-)
---
diff --git a/Makefile.am b/Makefile.am
index 57a832e..bb81381 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -348,7 +348,6 @@ dist_noinst_DATA = \
        data/org.gnome.EasyTAG.gresource.xml \
        $(noinst_resource_files) \
        src/tags/id3lib/patch_id3lib_3.8.3_UTF16_writing_bug.diff \
-       src/tags/libapetag/COPYING.LGPL \
        src/tags/libapetag/README.apetag \
        src/tags/libapetag/id3v2_read.c \
        src/tags/libapetag/id3v2_read.h \
diff --git a/data/easytag.appdata.xml.in b/data/easytag.appdata.xml.in
index e5f03e3..b820920 100644
--- a/data/easytag.appdata.xml.in
+++ b/data/easytag.appdata.xml.in
@@ -3,7 +3,7 @@
 <application>
     <id type="desktop">easytag.desktop</id>
     <metadata_license>CC0-1.0</metadata_license>
-    <project_license>GPL-2.0+ and LGPL-2.1+</project_license>
+    <project_license>GPL-2.0+</project_license>
 <!-- Name and summary taken from the desktop file. -->
     <_name>EasyTAG</_name>
     <_summary>Edit audio file metadata</_summary>
diff --git a/src/tags/libapetag/README.apetag b/src/tags/libapetag/README.apetag
index 9b3d311..f2f2255 100644
--- a/src/tags/libapetag/README.apetag
+++ b/src/tags/libapetag/README.apetag
@@ -9,4 +9,4 @@ All documentation fixes please send too (check all *.h files)
 
 this will be on dual licences GPL/LGPL (propably) 
 
-now is LGPL
+now is GPLv2+
diff --git a/src/tags/libapetag/apetaglib.c b/src/tags/libapetag/apetaglib.c
index 57533d8..aeceef5 100644
--- a/src/tags/libapetag/apetaglib.c
+++ b/src/tags/libapetag/apetaglib.c
@@ -1,23 +1,20 @@
-/********************************************************************
-* 
-* Copyright (c) 2002 Artur Polaczynski (Ar't)  All rights reserved.
-*            <artii o2 pl>        LGPL-2.1
-*       $ArtId: apetaglib.c,v 1.44 2003/04/16 21:06:27 art Exp $
-********************************************************************/
-/*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as 
- * published by the Free Software Foundation; either version 2.1 
- * of the License, or (at your option) any later version.
+/* EasyTAG - tag editor for audio files
+ * Copyright (C) 2014 David King <amigadave amigadave com>
+ * Copyright (C) 2002 Artur Polaczynski (Ar't) <artii o2 pl>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
  *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 51
+ * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #include <string.h>
diff --git a/src/tags/libapetag/apetaglib.h b/src/tags/libapetag/apetaglib.h
index 41bc007..57f08bf 100644
--- a/src/tags/libapetag/apetaglib.h
+++ b/src/tags/libapetag/apetaglib.h
@@ -1,26 +1,22 @@
-/********************************************************************
-*    
-* Copyright (c) 2002 Artur Polaczynski (Ar't)  All rights reserved.
-*            <artii o2 pl>        LGPL-2.1
-*       $ArtId: apetaglib.h,v 1.30 2003/04/16 21:06:27 art Exp $
-********************************************************************/
-/*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as 
- * published by the Free Software Foundation; either version 2.1 
- * of the License, or (at your option) any later version.
+/* EasyTAG - tag editor for audio files
+ * Copyright (C) 2014 David King <amigadave amigadave com>
+ * Copyright (C) 2002 Artur Polaczynski (Ar't) <artii o2 pl>
  *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
  *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 51
+ * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
-
 #ifndef _APETAGLIB_H
 #define _APETAGLIB_H
 
diff --git a/src/tags/libapetag/id3v2_read.c b/src/tags/libapetag/id3v2_read.c
index f5e445e..ec1fd0f 100644
--- a/src/tags/libapetag/id3v2_read.c
+++ b/src/tags/libapetag/id3v2_read.c
@@ -1,26 +1,22 @@
-/********************************************************************
-*    
-* Copyright (c) 2002 Artur Polaczynski (Ar't)  All rights reserved.
-*            <artii o2 pl>        LGPL-2.1
-*       $ArtId: id3v2_read.c,v 1.16 2003/04/13 11:24:10 art Exp $
-********************************************************************/
-/*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as 
- * published by the Free Software Foundation; either version 2.1 
- * of the License, or (at your option) any later version.
+/* EasyTAG - tag editor for audio files
+ * Copyright (C) 2014 David King <amigadave amigadave com>
+ * Copyright (C) 2002 Artur Polaczynski (Ar't) <artii o2 pl>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
  *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 51
+ * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
-
 #ifdef ID3V2_READ
 
 #include <string.h>
diff --git a/src/tags/libapetag/id3v2_read.h b/src/tags/libapetag/id3v2_read.h
index 0a9918b..f9c4680 100644
--- a/src/tags/libapetag/id3v2_read.h
+++ b/src/tags/libapetag/id3v2_read.h
@@ -1,26 +1,22 @@
-/********************************************************************
-*    
-* Copyright (c) 2002 Artur Polaczynski (Ar't)  All rights reserved.
-*            <artii o2 pl>        LGPL-2.1
-*       $ArtId: id3v2_read.h,v 1.6 2003/04/04 20:06:40 art Exp $
-********************************************************************/
-/*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as 
- * published by the Free Software Foundation; either version 2.1 
- * of the License, or (at your option) any later version.
+/* EasyTAG - tag editor for audio files
+ * Copyright (C) 2014 David King <amigadave amigadave com>
+ * Copyright (C) 2002 Artur Polaczynski (Ar't) <artii o2 pl>
  *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
  *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 51
+ * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
-
 #ifndef _ID3V2_READ_H
 #define _ID3V2_READ_H
 
diff --git a/src/tags/libapetag/info_mac.c b/src/tags/libapetag/info_mac.c
index fb19f97..2105545 100644
--- a/src/tags/libapetag/info_mac.c
+++ b/src/tags/libapetag/info_mac.c
@@ -1,23 +1,20 @@
-/********************************************************************
-*    
-* Copyright (c) 2002 Artur Polaczynski (Ar't)  All rights reserved.
-*            <artii o2 pl>        LGPL-2.1
-*       $ArtId: info_mac.c,v 1.15 2003/04/13 11:24:10 art Exp $
-********************************************************************/
-/*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as 
- * published by the Free Software Foundation; either version 2.1 
- * of the License, or (at your option) any later version.
+/* EasyTAG - tag editor for audio files
+ * Copyright (C) 2014 David King <amigadave amigadave com>
+ * Copyright (C) 2002 Artur Polaczynski (Ar't) <artii o2 pl>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
  *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 51
+ * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #include <stdio.h>
diff --git a/src/tags/libapetag/info_mac.h b/src/tags/libapetag/info_mac.h
index 25f841a..f588f97 100644
--- a/src/tags/libapetag/info_mac.h
+++ b/src/tags/libapetag/info_mac.h
@@ -1,26 +1,22 @@
-/********************************************************************
-*    
-* Copyright (c) 2002 Artur Polaczynski (Ar't)  All rights reserved.
-*            <artii o2 pl>        LGPL-2.1
-*       $ArtId: info_mac.h,v 1.6 2003/04/13 11:24:10 art Exp $
-********************************************************************/
-/*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as 
- * published by the Free Software Foundation; either version 2.1 
- * of the License, or (at your option) any later version.
+/* EasyTAG - tag editor for audio files
+ * Copyright (C) 2014 David King <amigadave amigadave com>
+ * Copyright (C) 2002 Artur Polaczynski (Ar't) <artii o2 pl>
  *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
  *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 51
+ * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
-
 #ifndef INFO_MAC_H
 #define INFO_MAC_H
 
diff --git a/src/tags/libapetag/info_mpc.c b/src/tags/libapetag/info_mpc.c
index 94070fa..712cb16 100644
--- a/src/tags/libapetag/info_mpc.c
+++ b/src/tags/libapetag/info_mpc.c
@@ -1,24 +1,22 @@
-/********************************************************************
-*    
-* Copyright (c) 2002 Artur Polaczynski (Ar't)  All rights reserved.
-*            <artii o2 pl>        LGPL-2.1
-*       $ArtId: info_mpc.c,v 1.12 2003/04/13 11:24:10 art Exp $
-********************************************************************/
-/*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as 
- * published by the Free Software Foundation; either version 2.1 
- * of the License, or (at your option) any later version.
+/* EasyTAG - tag editor for audio files
+ * Copyright (C) 2014 David King <amigadave amigadave com>
+ * Copyright (C) 2002 Artur Polaczynski (Ar't) <artii o2 pl>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
  *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 51
+ * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
+
 /*
     Some portions of code or/and ideas come from 
     winamp plugins, xmms plugins, mppdec decoder
diff --git a/src/tags/libapetag/info_mpc.h b/src/tags/libapetag/info_mpc.h
index 7567d82..d82a9bb 100644
--- a/src/tags/libapetag/info_mpc.h
+++ b/src/tags/libapetag/info_mpc.h
@@ -1,26 +1,22 @@
-/********************************************************************
-*    
-* Copyright (c) 2002 Artur Polaczynski (Ar't)  All rights reserved.
-*            <artii o2 pl>        LGPL-2.1
-*       $ArtId: info_mpc.h,v 1.8 2003/04/13 11:24:10 art Exp $
-********************************************************************/
-/*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as 
- * published by the Free Software Foundation; either version 2.1 
- * of the License, or (at your option) any later version.
+/* EasyTAG - tag editor for audio files
+ * Copyright (C) 2014 David King <amigadave amigadave com>
+ * Copyright (C) 2002 Artur Polaczynski (Ar't) <artii o2 pl>
  *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
  *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 51
+ * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
-
 #ifndef INFO_MPC_H
 #define INFO_MPC_H
 
diff --git a/src/tags/libapetag/is_tag.c b/src/tags/libapetag/is_tag.c
index 7cef2b1..7ba9bb4 100644
--- a/src/tags/libapetag/is_tag.c
+++ b/src/tags/libapetag/is_tag.c
@@ -1,23 +1,20 @@
-/********************************************************************
-*    
-* Copyright (c) 2002 Artur Polaczynski (Ar't)  All rights reserved.
-*            <artii o2 pl>        LGPL-2.1
-*       $ArtId: is_tag.c,v 1.10 2003/04/16 21:06:27 art Exp $
-********************************************************************/
-/*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as 
- * published by the Free Software Foundation; either version 2.1 
- * of the License, or (at your option) any later version.
+/* EasyTAG - tag editor for audio files
+ * Copyright (C) 2014 David King <amigadave amigadave com>
+ * Copyright (C) 2002 Artur Polaczynski (Ar't) <artii o2 pl>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
  *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
  *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 51
+ * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #include <string.h>
diff --git a/src/tags/libapetag/is_tag.h b/src/tags/libapetag/is_tag.h
index 1eaad3b..fec96c8 100644
--- a/src/tags/libapetag/is_tag.h
+++ b/src/tags/libapetag/is_tag.h
@@ -1,26 +1,22 @@
-/********************************************************************
-*    
-* Copyright (c) 2002 Artur Polaczynski (Ar't)  All rights reserved.
-*            <artii o2 pl>        LGPL-2.1
-*       $ArtId: is_tag.h,v 1.7 2003/04/13 11:24:10 art Exp $
-********************************************************************/
-/*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as 
- * published by the Free Software Foundation; either version 2.1 
- * of the License, or (at your option) any later version.
+/* EasyTAG - tag editor for audio files
+ * Copyright (C) 2014 David King <amigadave amigadave com>
+ * Copyright (C) 2002 Artur Polaczynski (Ar't) <artii o2 pl>
  *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
  *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 51
+ * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
-
 #ifndef _IS_TAG_H
 #define _IS_TAG_H
 
diff --git a/src/tags/vcedit.c b/src/tags/vcedit.c
index ccda76a..28c086a 100644
--- a/src/tags/vcedit.c
+++ b/src/tags/vcedit.c
@@ -1,12 +1,20 @@
-/* This program is licensed under the GNU Library General Public License, version 2,
- * a copy of which is included with this program (LICENCE.LGPL).
+/* EasyTAG - tag editor for audio files
+ * Copyright (C) 2014 David King <amigadave amigadave com>
+ * Copyright (C) 2000-2001 Michael Smith <msmith xiph org>
  *
- * (c) 2000-2001 Michael Smith <msmith xiph org>
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
  *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
  *
- * Comment editing backend, suitable for use by nice frontend interfaces.
- *
- * last modified: $Id: vcedit.c,v 1.23 2003/09/03 07:58:05 calc Exp $
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 51
+ * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #include "config.h" /* For definition of ENABLE_OGG. */
diff --git a/src/tags/vcedit.h b/src/tags/vcedit.h
index ba1f716..4f8013e 100644
--- a/src/tags/vcedit.h
+++ b/src/tags/vcedit.h
@@ -1,11 +1,20 @@
-/* This program is licensed under the GNU Library General Public License, version 2,
- * a copy of which is included with this program (with filename LICENSE.LGPL).
+/* EasyTAG - tag editor for audio files
+ * Copyright (C) 2014 David King <amigadave amigadave com>
+ * Copyright (C) 2000-2001 Michael Smith <msmith xiph org>
  *
- * (c) 2000-2001 Michael Smith <msmith xiph org>
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
  *
- * VCEdit header.
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
  *
- * last modified: $ID:$
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 51
+ * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #ifndef __VCEDIT_H


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