Browse Source

gnocl: Updated (0.9.91 -> 0.9.95)

stable/0.2
Christian Wiese 14 years ago
parent
commit
c50eb1ccfb
  1. 6
      gnome2/gnocl/gnocl.desc
  2. 38
      gnome2/gnocl/rebuild_safe.patch

6
gnome2/gnocl/gnocl.desc

@ -2,7 +2,7 @@
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY]
[COPY] Filename: package/.../gnocl/gnocl.desc
[COPY] Copyright (C) 2009 The OpenSDE Project
[COPY] Copyright (C) 2009 - 2011 The OpenSDE Project
[COPY] Copyright (C) 2004 - 2006 The T2 SDE Project
[COPY]
[COPY] More information can be found in the files COPYING and README.
@ -29,9 +29,9 @@
[L] BSD
[S] Beta
[V] 0.9.91
[V] 0.9.95
[P] X -----5---9 800.000
[O] . $base/package/*/*/gnome2-conf.in
[D] 787140536 gnocl-0.9.91.tar.bz2 http://dl.sourceforge.net/sourceforge/gnocl/
[D] 959471024 gnocl-0.9.95.tar.bz2 http://dl.sourceforge.net/sourceforge/gnocl/

38
gnome2/gnocl/rebuild_safe.patch

@ -1,38 +0,0 @@
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../gnocl/rebuild_safe.patch
# Copyright (C) 2004 - 2006 The T2 SDE Project
#
# More information can be found in the files COPYING and README.
#
# This patch file is dual-licensed. It is available under the license the
# patched project is licensed under, as long as it is an OpenSource license
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or 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.
# --- SDE-COPYRIGHT-NOTE-END ---
--- ./src/install.tcl.orig 2005-11-09 18:26:32.212398624 -0300
+++ ./src/install.tcl 2005-11-09 18:35:19.788404016 -0300
@@ -20,17 +20,13 @@
set destDir [file join $dir gnocl-$version]
switch -- $what {
"install" {
- if { [file exists $destDir] } {
- puts "$destDir exists already. Aborting installation."
- exit -1
- }
puts "Creating $destDir"
- file mkdir $destDir
+ file mkdir -p $destDir
set files [glob *.so]
lappend files pkgIndex.tcl
foreach file $files {
puts "Copying $file"
- file copy $file $destDir
+ file copy -force $file $destDir
}
}
"test" {
Loading…
Cancel
Save