diff options
author | tmclaugh <tmclaugh@FreeBSD.org> | 2006-04-24 21:46:41 +0800 |
---|---|---|
committer | tmclaugh <tmclaugh@FreeBSD.org> | 2006-04-24 21:46:41 +0800 |
commit | 792bda78df678bf5981a57bb13be9dfbb92eb687 (patch) | |
tree | 6fd94209d329cc6789af9e20e7e7d53b6dd5ce88 /graphics | |
parent | 34e4ec939a48dcbf6c6f71e18086902750bf9c12 (diff) | |
download | freebsd-ports-gnome-792bda78df678bf5981a57bb13be9dfbb92eb687.tar.gz freebsd-ports-gnome-792bda78df678bf5981a57bb13be9dfbb92eb687.tar.zst freebsd-ports-gnome-792bda78df678bf5981a57bb13be9dfbb92eb687.zip |
Fix startup script by removing the bashism '-a f-spot' from exec line.
PR: 96258
Submitted by: Frank Altpeter <freddy@pegasus.dyndns.info>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/f-spot/Makefile | 2 | ||||
-rw-r--r-- | graphics/f-spot/files/patch-src_f-spot.in | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/graphics/f-spot/Makefile b/graphics/f-spot/Makefile index fc88410f51dc..62df1c9977b5 100644 --- a/graphics/f-spot/Makefile +++ b/graphics/f-spot/Makefile @@ -8,7 +8,7 @@ PORTNAME= f-spot PORTVERSION= 0.1.11 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.1 diff --git a/graphics/f-spot/files/patch-src_f-spot.in b/graphics/f-spot/files/patch-src_f-spot.in new file mode 100644 index 000000000000..9acd06472903 --- /dev/null +++ b/graphics/f-spot/files/patch-src_f-spot.in @@ -0,0 +1,8 @@ +--- src/f-spot.in.orig Wed Mar 1 02:51:19 2006 ++++ src/f-spot.in Mon Apr 24 09:31:17 2006 +@@ -17,4 +17,4 @@ + echo "*** Running F-Spot in Debug Mode ***" + esac + +-exec -a @PACKAGE@ mono $MONO_OPTIONS $EXE_TO_RUN "$@" ++exec mono $MONO_OPTIONS $EXE_TO_RUN "$@" |