From 9a848d8fbf2ddc26d1663b892a8f8319b7205574 Mon Sep 17 00:00:00 2001 From: darco Date: Thu, 23 Feb 2006 19:31:52 +0000 Subject: [PATCH] Version bump git-svn-id: http://svn.voria.com/code@126 1f10aa63-cdf2-0310-b900-c93c546f37ac --- synfig-core/trunk/ChangeLog | 24 +++++++++ synfig-core/trunk/config/build.cfg | 2 +- .../pkg-info/macosx/core-resources/upgrade.sh | 58 ++++++++++++++++++++++ 3 files changed, 83 insertions(+), 1 deletion(-) create mode 100755 synfig-core/trunk/pkg-info/macosx/core-resources/upgrade.sh diff --git a/synfig-core/trunk/ChangeLog b/synfig-core/trunk/ChangeLog index 52fbf52..4ae6860 100644 --- a/synfig-core/trunk/ChangeLog +++ b/synfig-core/trunk/ChangeLog @@ -1,3 +1,27 @@ +2006-02-04 03:06:01 pabs + * Fix 1423944: switch to AC_LIBLTDL_INSTALLABLE so we'll use the system libltdl when it's available. + +2006-01-30 22:44:07 pabs + * Prevent FTBFS when we have both xft and freetype2 installed. + +2006-01-29 23:48:07 pabs + * Fix 1402909: update doxygen files + +2006-01-26 17:30:11 pabs + * Fix #1414370: don't distribute .cpp files as includes + +2006-01-24 21:31:21 darco + * Oops, I seem to be missing a K here... + +2006-01-10 13:05:13 darco + * more updates + +2005-12-24 15:11:59 darco + * Fixed some copyright issues + +2005-12-24 darco + * Fixed weird localization issue where saves SIF files would use number in the local format + 2005-11-28 Robert Quattlebaum * src/modules/lyr_std/sphere_distort.cpp/h: Clarified namespace issues 2005-11-08 Robert Quattlebaum diff --git a/synfig-core/trunk/config/build.cfg b/synfig-core/trunk/config/build.cfg index 70ff3cd..fd0b6a7 100644 --- a/synfig-core/trunk/config/build.cfg +++ b/synfig-core/trunk/config/build.cfg @@ -4,7 +4,7 @@ PACKAGE_BUGREPORT="darco@voria.com" PACKAGE_TARNAME=synfig VERSION_MAJ="0" VERSION_MIN="61" -VERSION_REV="04" +VERSION_REV="05" [ -d ".svn" ] && VERSION_REL=`svn info | grep Revision | sed "s/.* \([0123456789]*\)/\1/"` SVN_REPOSITORY="https://svn.voria.com/code/synfig-core" diff --git a/synfig-core/trunk/pkg-info/macosx/core-resources/upgrade.sh b/synfig-core/trunk/pkg-info/macosx/core-resources/upgrade.sh new file mode 100755 index 0000000..60f8537 --- /dev/null +++ b/synfig-core/trunk/pkg-info/macosx/core-resources/upgrade.sh @@ -0,0 +1,58 @@ +#!/bin/sh +# finish up the installation +# this script should be executed using the sudo command +# this file is copied to sinfg-devel.post_install and sinfg-devel.post_upgrade +# inside the .pkg bundle +LOGFILE="/sinfg_install.log" + +exit 0 + + +umask 022 + +RESOURCE_DIR=`dirname $0` +PREFIX=/usr/local + +cd $RESOURCE_DIR + +echo "Creating sinfg-config script" +[ -d $PREFIX ] || mkdir $PREFIX +[ -d $PREFIX/bin ] || mkdir $PREFIX/bin +[ -d $PREFIX/include ] || mkdir $PREFIX/include +[ -d $PREFIX/lib ] || mkdir $PREFIX/lib +[ -d $PREFIX/sbin ] || mkdir $PREFIX/sbin + +echo "Cleaning up any previous installation" +[ -d $PREFIX/include/sinfg ] && rm -fr $PREFIX/include/sinfg +ln -s /Library/Frameworks/sinfg.framework/Headers $PREFIX/include/sinfg + +sed ' +s:@exec_prefix@:/usr/local:g; +s:@prefix@:/usr/local:g; +s:@bindir@:$exec_prefix/bin:g; +s:@libdir@:$exec_prefix/lib:g; +s:@includedir@:$prefix/include:g; +s:@VERSION@:@_VERSION_@:g; +s:@PACKAGE@:@_PACKAGE_@:g; +s:@LIBS@::g; +s:@VERSION@:@_VERSION_@:; +s:@PACKAGE@:@_PACKAGE_@:; +s:@CONFIG_LIBS@:-F/Library/Frameworks/sinfg.framework:; +s:@SINFG_LIBS@:-F/Library/Frameworks/sinfg.framework:; +s:@CONFIG_CFLAGS@:-framework sinfg:; +' < $RESOURCE_DIR/sinfg-config.in > $PREFIX/bin/sinfg-config +chmod 775 $PREFIX/bin/sinfg-config + +echo "Precompiling Headers" +#/usr/bin/c++ -precomp /Library/Frameworks/sinfg.framework/Headers/sinfg.h -o /Library/Frameworks/sinfg.framework/Headers/sinfg.p + +echo "Moving sinfg tool" +cp $RESOURCE_DIR/sinfg $PREFIX/bin || exit 1 + +echo "Done with shell script" + + +exit 0 + + + -- 2.7.4