From c1917d29a2622f167b64dd48fe50cdc65ce146a6 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 4 Jul 2010 13:28:25 +0000 Subject: [PATCH] 2010-07-04 15:27 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * bin/patchup.hbs * contrib/hbqt/hbmk2_plugin_qt.hbs * contrib/makefile.hbs * contrib/hbide/plugins/savebackup.hbs * utils/hbmk2/examples/plug_tpl.hbs * config/postinst.hbs + Added license headers, information about script content and context. --- harbour/ChangeLog | 10 +++++ harbour/bin/patchup.hbs | 6 +-- harbour/config/postinst.hbs | 5 ++- harbour/contrib/hbide/plugins/savebackup.hbs | 1 + harbour/contrib/hbqt/hbmk2_plugin_qt.hbs | 44 +++++++++++++++++++- harbour/contrib/makefile.hbs | 6 +++ harbour/utils/hbmk2/examples/plug_tpl.hbs | 4 +- 7 files changed, 67 insertions(+), 9 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 90635de3b7..2cbb8e1e80 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,16 @@ The license applies to all entries newer than 2009-04-28. */ +2010-07-04 15:27 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * bin/patchup.hbs + * contrib/hbqt/hbmk2_plugin_qt.hbs + * contrib/makefile.hbs + * contrib/hbide/plugins/savebackup.hbs + * utils/hbmk2/examples/plug_tpl.hbs + * config/postinst.hbs + + Added license headers, information about script content + and context. + 2010-07-04 14:49 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) - bin/patchup.prg + bin/patchup.hbs diff --git a/harbour/bin/patchup.hbs b/harbour/bin/patchup.hbs index c8b9c1e994..543783f6eb 100644 --- a/harbour/bin/patchup.hbs +++ b/harbour/bin/patchup.hbs @@ -4,12 +4,10 @@ */ /* + * patchup - a tool to help update external components while keeping local fixes + * * Copyright 2010 Tamas Tevesz * See COPYING for licensing terms. - */ - -/* - * patchup - a tool to help update external components while keeping local fixes * * 1. CONFIGURATION * ---------------- diff --git a/harbour/config/postinst.hbs b/harbour/config/postinst.hbs index bc13eaf297..b98e557325 100644 --- a/harbour/config/postinst.hbs +++ b/harbour/config/postinst.hbs @@ -3,7 +3,10 @@ */ /* - * Copyright 2009 Viktor Szakats (harbour.01 syenar.hu) + * This Harbour script is part of the GNU Make-based build system. + * WARNING: Running it separately is not supported. + * + * Copyright 2009-2010 Viktor Szakats (harbour.01 syenar.hu) * See COPYING for licensing terms. */ diff --git a/harbour/contrib/hbide/plugins/savebackup.hbs b/harbour/contrib/hbide/plugins/savebackup.hbs index 3bf892eb3f..6f136cad05 100644 --- a/harbour/contrib/hbide/plugins/savebackup.hbs +++ b/harbour/contrib/hbide/plugins/savebackup.hbs @@ -4,6 +4,7 @@ /* * Harbour Project source code: + * hbide plugin. * * Copyright 2010 Pritpal Bedi * www - http://harbour-project.org diff --git a/harbour/contrib/hbqt/hbmk2_plugin_qt.hbs b/harbour/contrib/hbqt/hbmk2_plugin_qt.hbs index 89ad325cd3..2717af9636 100644 --- a/harbour/contrib/hbqt/hbmk2_plugin_qt.hbs +++ b/harbour/contrib/hbqt/hbmk2_plugin_qt.hbs @@ -3,11 +3,51 @@ */ /* - * Copyright 2010 Viktor Szakats (harbour.01 syenar.hu) (plugin) + * hbmk2 plugin script, implementing support for QT specific features + * + * Copyright 2010 Viktor Szakats (harbour.01 syenar.hu) * Copyright 2010 Pritpal Bedi (hbq_gen_ui_prg()) * www - http://harbour-project.org * - * See COPYING for licensing terms. + * 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, 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. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 59 Temple Place, Suite 330, + * Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/). + * + * As a special exception, the Harbour Project gives permission for + * additional uses of the text contained in its release of Harbour. + * + * The exception is that, if you link the Harbour libraries with other + * files to produce an executable, this does not by itself cause the + * resulting executable to be covered by the GNU General Public License. + * Your use of that executable is in no way restricted on account of + * linking the Harbour library code into it. + * + * This exception does not however invalidate any other reasons why + * the executable file might be covered by the GNU General Public License. + * + * This exception applies only to the code released by the Harbour + * Project under the name Harbour. If you copy code from other + * Harbour Project or Free Software Foundation releases into a copy of + * Harbour, as the General Public License permits, the exception does + * not apply to the code that you add in this way. To avoid misleading + * anyone as to the status of such modified files, you must delete + * this exception notice from them. + * + * If you write modifications of your own for Harbour, it is your choice + * whether to permit this exception to apply to your modifications. + * If you do not wish that, delete this exception notice. + * */ #pragma warninglevel=3 diff --git a/harbour/contrib/makefile.hbs b/harbour/contrib/makefile.hbs index d111ee00b8..99bb163cae 100644 --- a/harbour/contrib/makefile.hbs +++ b/harbour/contrib/makefile.hbs @@ -3,10 +3,16 @@ */ /* + * This Harbour script is part of the GNU Make-based build system. + * WARNING: Running it separately is not supported. + * * Copyright 2010 Viktor Szakats (harbour.01 syenar.hu) * See COPYING for licensing terms. */ +/* WARNING: This file is part of the GNU Make-based build + system. Running it separately is not supported. */ + /* TODO: 1. error handling / reporting / feedback 2. copy headers (or solve .hbc search path in universal way) diff --git a/harbour/utils/hbmk2/examples/plug_tpl.hbs b/harbour/utils/hbmk2/examples/plug_tpl.hbs index 1e7511abb6..2fb2175280 100644 --- a/harbour/utils/hbmk2/examples/plug_tpl.hbs +++ b/harbour/utils/hbmk2/examples/plug_tpl.hbs @@ -3,9 +3,9 @@ */ /* - * Copyright 2010 Viktor Szakats (harbour.01 syenar.hu) - * www - http://harbour-project.org + * hbmk2 plugin sample * + * Copyright 2010 Viktor Szakats (harbour.01 syenar.hu) * See COPYING for licensing terms. */