Made sure GPL notice was included in all other source files.
This commit is contained in:
parent
2af7785454
commit
27c35cdf23
14 changed files with 238 additions and 17 deletions
|
|
@ -43,6 +43,8 @@ $Id$
|
||||||
* Split language-related variables, enumerations, arrays and helper
|
* Split language-related variables, enumerations, arrays and helper
|
||||||
functions in to "i18n.c" and "i18n.h" source files.
|
functions in to "i18n.c" and "i18n.h" source files.
|
||||||
|
|
||||||
|
* Made sure GPL notice was included in all other source files.
|
||||||
|
|
||||||
* Added script to create "locale" during Build process in Xcode on
|
* Added script to create "locale" during Build process in Xcode on
|
||||||
Mac OS X.
|
Mac OS X.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,23 @@
|
||||||
/* printing support for Tux Paint */
|
/* printing support for Tux Paint */
|
||||||
/* Marcin 'Shard' Konicki <shard@beosjournal.org> */
|
/* Marcin 'Shard' Konicki <shard@beosjournal.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.
|
||||||
|
|
||||||
|
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
(See COPYING.txt)
|
||||||
|
*/
|
||||||
|
|
||||||
/* Jan. 17, 2003 */
|
/* Jan. 17, 2003 */
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,25 @@
|
||||||
## makefile generated by makemake ##
|
## makefile generated by makemake ##
|
||||||
## BeOS Generic Makefile v2.2 ##
|
## BeOS Generic Makefile v2.2 ##
|
||||||
|
|
||||||
## Fill in this file to specify the project being created, and the referenced
|
# For Tux Paint
|
||||||
## makefile-engine will do all of the hard work for you. This handles both
|
# Marcin 'Shard' Konicki <shard at beosjournal.org>
|
||||||
## Intel and PowerPC builds of the BeOS.
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
# (See COPYING.txt)
|
||||||
|
#
|
||||||
|
# Last modified: 2006.Feb.17
|
||||||
|
|
||||||
## Application Specific Settings ---------------------------------------------
|
## Application Specific Settings ---------------------------------------------
|
||||||
|
|
||||||
|
|
@ -34,6 +50,7 @@ TYPE= APP
|
||||||
# in folder names do not work well with this makefile.
|
# in folder names do not work well with this makefile.
|
||||||
SRCS= \
|
SRCS= \
|
||||||
src/tuxpaint.c \
|
src/tuxpaint.c \
|
||||||
|
src/i18n.c \
|
||||||
src/BeOS_print.cpp
|
src/BeOS_print.cpp
|
||||||
|
|
||||||
# specify the resource files to use
|
# specify the resource files to use
|
||||||
|
|
|
||||||
19
src/colors.h
19
src/colors.h
|
|
@ -4,11 +4,26 @@
|
||||||
For Tux Paint
|
For Tux Paint
|
||||||
List of colors
|
List of colors
|
||||||
|
|
||||||
Copyright (c) 2002 by Bill Kendrick
|
Copyright (c) 2002-2006 by Bill Kendrick and others
|
||||||
bill@newbreedsoftware.com
|
bill@newbreedsoftware.com
|
||||||
http://www.newbreedsoftware.com/tuxpaint/
|
http://www.newbreedsoftware.com/tuxpaint/
|
||||||
|
|
||||||
June 14, 2002 - November 21, 2004
|
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.
|
||||||
|
|
||||||
|
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
(See COPYING.txt)
|
||||||
|
|
||||||
|
June 14, 2002 - February 17, 2006
|
||||||
$Id$
|
$Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
||||||
19
src/great.h
19
src/great.h
|
|
@ -4,11 +4,26 @@
|
||||||
For Tux Paint
|
For Tux Paint
|
||||||
Collection of congratulatory strings (like "Great!").
|
Collection of congratulatory strings (like "Great!").
|
||||||
|
|
||||||
Copyright (c) 2002 by Bill Kendrick
|
Copyright (c) 2002-2006 by Bill Kendrick and others
|
||||||
bill@newbreedsoftware.com
|
bill@newbreedsoftware.com
|
||||||
http://www.newbreedsoftware.com/tuxpaint/
|
http://www.newbreedsoftware.com/tuxpaint/
|
||||||
|
|
||||||
September 28, 2002 - September 30, 2002
|
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.
|
||||||
|
|
||||||
|
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
(See COPYING.txt)
|
||||||
|
|
||||||
|
September 28, 2002 - February 17, 2006
|
||||||
$Id$
|
$Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
||||||
15
src/i18n.c
15
src/i18n.c
|
|
@ -8,6 +8,21 @@
|
||||||
bill@newbreedsoftware.com
|
bill@newbreedsoftware.com
|
||||||
http://www.newbreedsoftware.com/tuxpaint/
|
http://www.newbreedsoftware.com/tuxpaint/
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
(See COPYING.txt)
|
||||||
|
|
||||||
June 14, 2002 - February 17, 2006
|
June 14, 2002 - February 17, 2006
|
||||||
$Id$
|
$Id$
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,24 @@
|
||||||
// Tux Paint
|
// Tux Paint
|
||||||
//
|
//
|
||||||
// Created by Darrell Walisser on Sat Mar 15 2003.
|
// Created by Darrell Walisser on Sat Mar 15 2003.
|
||||||
// Copyright (c) 2003 __MyCompanyName__. All rights reserved.
|
// Copyright (c) 2003 Darrell Walisser. All rights reserved.
|
||||||
// $Id$
|
// $Id$
|
||||||
//
|
//
|
||||||
|
// 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.
|
||||||
|
//
|
||||||
|
// 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
// (See COPYING.txt)
|
||||||
|
//
|
||||||
|
|
||||||
#include "SDL.h"
|
#include "SDL.h"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,23 @@
|
||||||
// Tux Paint
|
// Tux Paint
|
||||||
//
|
//
|
||||||
// Created by Darrell Walisser on Sat Mar 15 2003.
|
// Created by Darrell Walisser on Sat Mar 15 2003.
|
||||||
// Copyright (c) 2003 __MyCompanyName__. All rights reserved.
|
// Copyright (c) 2003 Darrell Walisser.
|
||||||
|
//
|
||||||
|
// 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.
|
||||||
|
//
|
||||||
|
// 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
// (See COPYING.txt)
|
||||||
|
//
|
||||||
// $Id$
|
// $Id$
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
|
||||||
17
src/magic.h
17
src/magic.h
|
|
@ -8,7 +8,22 @@
|
||||||
bill@newbreedsoftware.com
|
bill@newbreedsoftware.com
|
||||||
http://www.newbreedsoftware.com/tuxpaint/
|
http://www.newbreedsoftware.com/tuxpaint/
|
||||||
|
|
||||||
June 29, 2002 - February 13, 2006
|
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.
|
||||||
|
|
||||||
|
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
(See COPYING.txt)
|
||||||
|
|
||||||
|
June 29, 2002 - February 17, 2006
|
||||||
$Id$
|
$Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
||||||
19
src/shapes.h
19
src/shapes.h
|
|
@ -4,11 +4,26 @@
|
||||||
For Tux Paint
|
For Tux Paint
|
||||||
List of available shapes.
|
List of available shapes.
|
||||||
|
|
||||||
Copyright (c) 2002 by Bill Kendrick
|
Copyright (c) 2002-2006 by Bill Kendrick and others
|
||||||
bill@newbreedsoftware.com
|
bill@newbreedsoftware.com
|
||||||
http://www.newbreedsoftware.com/tuxpaint/
|
http://www.newbreedsoftware.com/tuxpaint/
|
||||||
|
|
||||||
June 14, 2002 - January 8, 2003
|
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.
|
||||||
|
|
||||||
|
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
(See COPYING.txt)
|
||||||
|
|
||||||
|
June 14, 2002 - February 17, 2006
|
||||||
$Id$
|
$Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
||||||
19
src/sounds.h
19
src/sounds.h
|
|
@ -4,11 +4,26 @@
|
||||||
For Tux Paint
|
For Tux Paint
|
||||||
List of sound effects.
|
List of sound effects.
|
||||||
|
|
||||||
Copyright (c) 2005 by Bill Kendrick
|
Copyright (c) 2002-2006 by Bill Kendrick and others
|
||||||
bill@newbreedsoftware.com
|
bill@newbreedsoftware.com
|
||||||
http://www.newbreedsoftware.com/tuxpaint/
|
http://www.newbreedsoftware.com/tuxpaint/
|
||||||
|
|
||||||
June 15, 2002 - July 17, 2005
|
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.
|
||||||
|
|
||||||
|
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
(See COPYING.txt)
|
||||||
|
|
||||||
|
June 15, 2002 - February 12, 2006
|
||||||
$Id$
|
$Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,29 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# test-option.sh
|
||||||
|
#
|
||||||
|
# Tests the GCC compiler for a particular option and returns that option,
|
||||||
|
# if successful
|
||||||
|
#
|
||||||
|
# for Tux Paint
|
||||||
|
# by TOYAMA Shin-ichi <shin1@wmail.plala.or.jp>
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
# (See COPYING.txt)
|
||||||
|
#
|
||||||
|
# Last modified 2006.Feb.17
|
||||||
|
|
||||||
echo 'main(){}' > dummy.c
|
echo 'main(){}' > dummy.c
|
||||||
gcc $1 dummy.c > /dev/null 2>&1 && echo $1
|
gcc $1 dummy.c > /dev/null 2>&1 && echo $1
|
||||||
|
|
|
||||||
|
|
@ -5,11 +5,27 @@
|
||||||
# "Tux Paint Import"
|
# "Tux Paint Import"
|
||||||
# Import an arbitrary GIF, JPEG or PNG into Tux Paint
|
# Import an arbitrary GIF, JPEG or PNG into Tux Paint
|
||||||
|
|
||||||
# by Bill Kendrick
|
# (c) Copyright 2002-2006, by Bill Kendrick and others
|
||||||
# bill@newbreedsoftware.com
|
# bill@newbreedsoftware.com
|
||||||
# http://www.newbreedsoftware.com/tuxpaint/
|
# http://www.newbreedsoftware.com/tuxpaint/
|
||||||
|
|
||||||
# September 21, 2002 - October 23, 2005
|
# 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.
|
||||||
|
#
|
||||||
|
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
# (See COPYING.txt)
|
||||||
|
|
||||||
|
|
||||||
|
# September 21, 2002 - February 17, 2006
|
||||||
|
|
||||||
|
|
||||||
SAVEDIR=$HOME/.tuxpaint/saved
|
SAVEDIR=$HOME/.tuxpaint/saved
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,30 @@
|
||||||
# vim: noai et ts=4 tw=0
|
# vim: noai et ts=4 tw=0
|
||||||
|
#
|
||||||
|
# Nullsoft Installer file
|
||||||
|
# for Tux Paint
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
# (See COPYING.txt)
|
||||||
|
#
|
||||||
# with a few tiny modifications by Phil Harper(philh@theopencd.org)
|
# with a few tiny modifications by Phil Harper(philh@theopencd.org)
|
||||||
|
#
|
||||||
|
# Last modified: 2006.02.17
|
||||||
|
#
|
||||||
|
# NOTE: Is this file used any more???
|
||||||
|
|
||||||
!define PKG_VERSION "0.9.14-cvs"
|
!define PKG_VERSION "0.9.16"
|
||||||
!define PKG_PREFIX "tuxpaint"
|
!define PKG_PREFIX "tuxpaint"
|
||||||
|
|
||||||
!define APP_PREFIX "TuxPaint"
|
!define APP_PREFIX "TuxPaint"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue