Date: Fri, 10 Aug 2012 09:03:12 +0000 (UTC) From: Rene Ladan <rene@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r302381 - in head/astro/boinc-astropulse: . files Message-ID: <201208100903.q7A93CNi014204@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rene Date: Fri Aug 10 09:03:12 2012 New Revision: 302381 URL: http://svn.freebsd.org/changeset/ports/302381 Log: - Make sure the package is properly deinstalled by using the proper sh syntax. - Bump PORTREVISION Modified: head/astro/boinc-astropulse/Makefile head/astro/boinc-astropulse/files/pkg-deinstall.in Modified: head/astro/boinc-astropulse/Makefile ============================================================================== --- head/astro/boinc-astropulse/Makefile Fri Aug 10 08:59:03 2012 (r302380) +++ head/astro/boinc-astropulse/Makefile Fri Aug 10 09:03:12 2012 (r302381) @@ -6,7 +6,7 @@ PORTNAME= boinc-astropulse PORTVERSION= 6.01 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= astro MASTER_SITES= ftp://rene-ladan.nl/pub/distfiles/ DISTNAME= astropulse-svn-1280 Modified: head/astro/boinc-astropulse/files/pkg-deinstall.in ============================================================================== --- head/astro/boinc-astropulse/files/pkg-deinstall.in Fri Aug 10 08:59:03 2012 (r302380) +++ head/astro/boinc-astropulse/files/pkg-deinstall.in Fri Aug 10 09:03:12 2012 (r302381) @@ -14,8 +14,8 @@ if [ $? -ne 0 ]; then echo $F is corrupt exit 1 fi -l1=$((l-1)) -l2=$((l+13)) +l1=$(($l-1)) +l2=$(($l+13)) sed -i.bak "${l1},${l2}d" $F # sed wants the braces rm $F.bak
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208100903.q7A93CNi014204>