mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
80afc7818f
that /usr/bin/perl5 doesn't exist, which violates some of use.perl's assumptions. Take care of this case. [1] Also in the case of a recent 5-CURRENT, automatically perform "use.perl port" during package/port installation. This helps the installation of sysinstall's new "Perl distribution", in that sysinstall doesn't need to do this explicitly as Yet Another Special Case. [2] PORTREVISION bump after all this good stuff. Requested by: bmah [1], jhb [2] Submitted by: tobez (port MAINTAINER) Approved by: portmgr (kris)
23 lines
437 B
Bash
23 lines
437 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" != POST-INSTALL ] ; then
|
|
exit 0
|
|
fi
|
|
|
|
INCLUDEDIR=/usr/include
|
|
|
|
install -d ${PKG_PREFIX}/lib/perl5/site_perl/5.6.1/mach
|
|
cd ${INCLUDEDIR} && ${PKG_PREFIX}/bin/h2ph *.h machine/*.h sys/*.h
|
|
|
|
if [ -f /sbin/sysctl -a -x /sbin/sysctl ] ; then
|
|
osreldate=`/sbin/sysctl -n kern.osreldate`
|
|
else
|
|
osreldate=`/usr/sbin/sysctl -n kern.osreldate`
|
|
fi
|
|
|
|
if [ $osreldate -ge 500043 ] ; then
|
|
${PKG_PREFIX}/bin/use.perl port
|
|
fi
|
|
|
|
exit 0
|