diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2005-10-07 09:48:27 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2005-10-07 09:48:27 +0000 |
commit | 52e0d357f1c08003d1cf5ad0d76b0c8e34050b9d (patch) | |
tree | 1563e2a4df5294efffe2afc7df7246284be32a5f /print/acroread7/files | |
parent | d0bb4728ae41689dab74ba85c50a46580363cc8e (diff) | |
download | ports-52e0d357f1c08003d1cf5ad0d76b0c8e34050b9d.tar.gz ports-52e0d357f1c08003d1cf5ad0d76b0c8e34050b9d.zip |
Finish the support for slave ports:
- allow slave ports to override CATEGORIES
- slave ports install in different directories, depending on PKGNAMEPREFIX
- new variable INSTDIR, abbreviation for the aformentioned directory
where the program is installed
- new variable CMD_SUFFIX, to be set by the slave ports, is appended
to the name of our wrapper script that wraps Adobe's wrapper
script, so that different slave ports will have different copies
of this script (if CMD_SUFFIX is foo, the user runs acroread7-foo
to start the program).
Notes
Notes:
svn path=/head/; revision=144458
Diffstat (limited to 'print/acroread7/files')
-rw-r--r-- | print/acroread7/files/acroread7.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print/acroread7/files/acroread7.in b/print/acroread7/files/acroread7.in index aad637c484b0..db7c265788a7 100644 --- a/print/acroread7/files/acroread7.in +++ b/print/acroread7/files/acroread7.in @@ -1,3 +1,3 @@ #!/bin/sh UNAME_s=Linux; export UNAME_s -exec %%PREFIX%%/lib/acroread/usr/local/Adobe/Acrobat7.0/bin/acroread "$@" +exec %%PREFIX%%/%%INSTDIR%%/usr/local/Adobe/Acrobat7.0/bin/acroread "$@" |