Current Path : /usr/src/contrib/ntp/scripts/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/contrib/ntp/scripts/VersionName |
#! /bin/sh # This script must be executed from the TLD of the source tree... . ./packageinfo.sh NAME="$version" case $point in [0-9]*) NAME="${NAME}p$point" ;; NEW) ;; '') ;; *) echo "Unexpected value for 'point' <$point>!" exit 1 ;; esac case $special in '') ;; *) NAME="${NAME}-$special" ;; esac case $releasecandidate in [Nn][Oo]) ;; [Yy][Ee][Ss]) NAME="${NAME}-RC" ;; *) echo "Unexpected value for 'releasecandidate' <$releasecandidate>!" exit 1 ;; esac case $repotype in stable) case $rcpoint in [0-9]*) NAME="${NAME}$rcpoint" ;; esac ;; esac echo "$NAME"