msbxa, I'd love to see a write up comparing them all. I'm guessing you need to make the files executable.
I went ahead and tried installing per their directions. After a little bit of troubleshooting, I have a loaded default web page, so it seems to be working. Here's the steps:
# Use the bash shell
bash
# Create the jail
iocage create -n "sickgear" -r 11.2-RELEASE interfaces="vnet0:bridge0" defaultrouter="none" vnet="on" dhcp="on" bpf="yes" allow_raw_sockets="1" boot="on"
# Update to the latest repo
iocage exec sickgear "mkdir -p /usr/local/etc/pkg/repos"
iocage exec sickgear echo -e 'FreeBSD: { url: \"pkg+
http://pkg.FreeBSD.org/\${ABI}/latest\" }' > /usr/local/etc/pkg/repos/FreeBSD.conf
# Install sickgear and dependencies
iocage exec sickgear pkg install -y python27 py27-pip git py27-sqlite3
# Mount storage and config (your directories will be different)
iocage fstab -a sickgear /mnt/Vol1/media /media nullfs rw 0 0
iocage fstab -a sickgear /mnt/Vol1/jail_config_data/sickgear /var/db/sickgear nullfs rw 0 0
# Create media
iocage exec sickgear "pw groupadd media -g 816"
iocage exec sickgear "pw useradd -n media -u 1001 -d /nonexistent -s /usr/sbin/nologin"
iocage exec sickgear git clone
https://github.com/SickGear/SickGear.git /usr/local/sickgear
# Set permissions on install and config
iocage exec sickgear chown -R media:media /usr/local/sickgear
iocage exec sickgear chown -R media:media /var/db/sickgear
# iocage exec sickgear pip-2.7 install --upgrade pip
iocage exec sickgear pip-2.7 install -r /usr/local/sickgear/requirements.txt
iocage exec sickgear pip-2.7 install regex
iocage exec sickgear pip-2.7 install scandir
# lxml is listed as optional, it gave errors on install, so I'm ignoring
# iocage exec sickgear pip-2.7 install lxml
# Copy init scripts and make executable
iocage exec sickgear cp /usr/local/sickgear/init-scripts/init.freebsd /usr/local/etc/rc.d/sickgear
iocage exec sickgear chmod u+x /usr/local/etc/rc.d/sickgear
iocage exec sickgear sysrc sickgear_enable=YES
iocage exec sickgear sysrc sickgear_user=media
iocage exec sickgear sysrc sickgear_group=media
iocage exec sickgear sysrc sickgear_datadir=/var/db/sickgear
# Disable IPv6 (for my personal install)
iocage exec sickgear vi /etc/rc.conf
# Create a sym link from python2 to python2.7
iocage exec sickgear ln -sf /usr/local/bin/python2.7 /usr/local/bin/python2
iocage exec sickgear service sickgear start