Date: Friday, May 1, 2020 @ 18:40:52 Author: muflone Revision: 624154
upgpkg: sweethome3d 6.3-1: sweethome3d Modified: sweethome3d/trunk/PKGBUILD sweethome3d/trunk/sweethome3d.install sweethome3d/trunk/sweethome3d.sh ---------------------+ PKGBUILD | 6 +++--- sweethome3d.install | 7 ++++--- sweethome3d.sh | 8 ++++---- 3 files changed, 11 insertions(+), 10 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-05-01 18:40:30 UTC (rev 624153) +++ PKGBUILD 2020-05-01 18:40:52 UTC (rev 624154) @@ -6,7 +6,7 @@ # Contributor: Archan Paul <[email protected]> pkgname=sweethome3d -pkgver=6.2 +pkgver=6.3 pkgrel=1 pkgdesc="An interior design application to draw the plan of your house in a 3D environment" arch=('x86_64') @@ -19,9 +19,9 @@ "${pkgname}.sh" "${pkgname}.desktop" "${pkgname}.xml") -sha256sums=('285cb97aee9254de66a195469e494fb28bb77dc1f14b0a92802e7896bd7870ad' +sha256sums=('b741adc7ae8f893a971e5251b1bc07e61efcecd42ba56039182649815145d640' '524286451144548fdc5ae0ca9e4f9180c96eb4bc00e86121d7f38ab3ecad07ff' - '6a5e2fd8de2ec37975a6a299befe7523d106f82c20f8838b48c17191928d7e2d' + '9fd31f209e53de4aa4ef6c8b2e5adff9228d6226e76fd33f6793abbb079700ed' '5eea3337d956d773b05ddef69fe9d34b940ff550370dc92bf307f1b9a3957f9e' 'ec0ad1a0671f708af68ced46bec1f4ab377e24ca1a0a9984867ee5fe484f57c5') install="${pkgname}.install" Modified: sweethome3d.install =================================================================== --- sweethome3d.install 2020-05-01 18:40:30 UTC (rev 624153) +++ sweethome3d.install 2020-05-01 18:40:52 UTC (rev 624154) @@ -1,7 +1,8 @@ post_install() { - echo "If the application claims there's no graphic support for 3D rendering" - echo "you can switch to Java3D 1.5 by using:" - echo "SWEETHOME3D_JAVA3D=1.5 sweethome3d" + echo "If the application crashes during the startup or claims there's" + echo "no graphic support for 3D rendering you can switch to Java3D 1.6" + echo "by using:" + echo "SWEETHOME3D_JAVA3D=1.6 sweethome3d" echo "or set the SWEETHOME3D_JAVA3D environment variable in your profile" } Modified: sweethome3d.sh =================================================================== --- sweethome3d.sh 2020-05-01 18:40:30 UTC (rev 624153) +++ sweethome3d.sh 2020-05-01 18:40:52 UTC (rev 624154) @@ -23,13 +23,13 @@ # Build classpath APP_CLASSPATH="SweetHome3D.jar:Furniture.jar:Textures.jar:Examples.jar:Help.jar:iText-2.1.7.jar:freehep-vectorgraphics-svg-2.1.1b.jar:sunflow-0.07.3i.jar:jmf.jar:batik-svgpathparser-1.7.jar:jeksparser-calculator.jar:jnlp.jar" -if [ "${SWEETHOME3D_JAVA3D}" = "1.5" ] +if [ "${SWEETHOME3D_JAVA3D}" = "1.6" ] then + JAVA_OPTS="${JAVA_OPTS} -Djava.library.path=/usr/lib/sweethome3d/java3d-1.6 -Djogamp.gluegen.UseTempJarCache=false" + APP_CLASSPATH="${APP_CLASSPATH}:/usr/lib/sweethome3d/java3d-1.6/j3dcore.jar:/usr/lib/sweethome3d/java3d-1.6/j3dutils.jar:/usr/lib/sweethome3d/java3d-1.6/vecmath.jar:/usr/lib/sweethome3d/java3d-1.6/gluegen-rt.jar:/usr/lib/sweethome3d/java3d-1.6/jogl-all.jar" +else JAVA_OPTS="${JAVA_OPTS} -Djava.library.path=/usr/lib/sweethome3d/java3d-1.5" APP_CLASSPATH="${APP_CLASSPATH}:/usr/lib/sweethome3d/java3d-1.5/j3dcore.jar:/usr/lib/sweethome3d/java3d-1.5/j3dutils.jar:/usr/lib/sweethome3d/java3d-1.5/vecmath.jar" -else - JAVA_OPTS="${JAVA_OPTS} -Djava.library.path=/usr/lib/sweethome3d/java3d-1.6 -Djogamp.gluegen.UseTempJarCache=false" - APP_CLASSPATH="${APP_CLASSPATH}:/usr/lib/sweethome3d/java3d-1.6/j3dcore.jar:/usr/lib/sweethome3d/java3d-1.6/j3dutils.jar:/usr/lib/sweethome3d/java3d-1.6/vecmath.jar:/usr/lib/sweethome3d/java3d-1.6/gluegen-rt.jar:/usr/lib/sweethome3d/java3d-1.6/jogl-all.jar" fi cd "/usr/share/java/sweethome3d"
