summaryrefslogtreecommitdiff
path: root/print/acroreadwrapper
diff options
context:
space:
mode:
authorHiroki Sato <hrs@FreeBSD.org>2006-02-22 06:58:02 +0000
committerHiroki Sato <hrs@FreeBSD.org>2006-02-22 06:58:02 +0000
commit92ec75f7f7672a69d42f05253f341a62798df227 (patch)
treeb0cf80eecc515bcd531aa21f582bf7a8f3ad5c86 /print/acroreadwrapper
parentAdd note about change of print/acroread7 and the localized versions. (diff)
Fix plugin directory (not under %%LINUXBASE%%).
Pointed out by: nyan
Notes
Notes: svn path=/head/; revision=156647
Diffstat (limited to 'print/acroreadwrapper')
-rw-r--r--print/acroreadwrapper/Makefile2
-rw-r--r--print/acroreadwrapper/files/acroread.in8
2 files changed, 5 insertions, 5 deletions
diff --git a/print/acroreadwrapper/Makefile b/print/acroreadwrapper/Makefile
index 688ae9efce28..73cb9d4b4b30 100644
--- a/print/acroreadwrapper/Makefile
+++ b/print/acroreadwrapper/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= acroreadwrapper
-PORTVERSION= 0.0.20060220
+PORTVERSION= 0.0.20060221
CATEGORIES= print
MASTER_SITES= # empty
DISTFILES= # empty
diff --git a/print/acroreadwrapper/files/acroread.in b/print/acroreadwrapper/files/acroread.in
index 1470d868a020..73dc120fd770 100644
--- a/print/acroreadwrapper/files/acroread.in
+++ b/print/acroreadwrapper/files/acroread.in
@@ -58,15 +58,15 @@ case $1 in
--install-plugin)
echo "installing PDF plugin..."
echo "%%PREFIX%%/%%ACRODIR%%/${ADOBE_LANG}/Browser/intellinux/nppdf.so -> %%PREFIX%%/%%PLUGINDIR%%/nppdf.so"
- mkdir -p %%PREFIX%%/%%PLUGINDIR%%
+ mkdir -p /../%%PREFIX%%/%%PLUGINDIR%%
ln -s -f %%PREFIX%%/%%ACRODIR%%/${ADOBE_LANG}/Browser/intellinux/nppdf.so \
- %%PREFIX%%/%%PLUGINDIR%%/nppdf.so
+ /../%%PREFIX%%/%%PLUGINDIR%%/nppdf.so
exit 0
;;
--deinstall-plugin)
echo "deinstalling PDF plugin..."
- rm -f %%PREFIX%%/%%PLUGINDIR%%/nppdf.so
- rmdir %%PREFIX%%/%%PLUGINDIR%% 2> /dev/null || true
+ rm -f /../%%PREFIX%%/%%PLUGINDIR%%/nppdf.so
+ rmdir /../%%PREFIX%%/%%PLUGINDIR%% 2> /dev/null || true
exit 0
;;
esac