mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
fc5b96f1a8
to security/gnupg1. Thanks to: dougb, lofi
15 lines
199 B
Bash
15 lines
199 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ "$2" != "POST-INSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
if [ -r ${PKG_PREFIX}/bin/gpg ] || [ -L ${PKG_PREFIX}/bin/gpg ]; then
|
|
# Skip.
|
|
else
|
|
ln -s gpg2 ${PKG_PREFIX}/bin/gpg
|
|
fi
|