mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
4d0c4cd69f
Also it contains example script to keep your bash.org.ru fortunes up to date. WWW: http://bash.org.ru PR: ports/111932 Submitted by: dindin at dindin.ru
15 lines
323 B
Bash
15 lines
323 B
Bash
#!/bin/sh
|
|
# $FreeBSD: /tmp/pcvs/ports/russian/fortune-bashorgru/pkg-install,v 1.1 2007-04-20 12:13:55 miwi Exp $
|
|
#
|
|
|
|
if [ "$2" != "PRE-INSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
if [ ! -x "/usr/games/strfile" ]; then
|
|
echo ""
|
|
echo "You must have the ``games'' distribution installed to use this port."
|
|
echo ""
|
|
exit 1
|
|
fi
|