2012-01-09 22:21:06 +01:00
|
|
|
APP_ROOT := /var/airport
|
2012-01-19 02:01:00 +01:00
|
|
|
AIRPORT_REPO ?= https://bitbucket.org/marduk/airport
|
2012-09-12 21:17:40 +02:00
|
|
|
PGVER := 9.2
|
2012-01-19 02:01:00 +01:00
|
|
|
|
|
|
|
rcdefault := /etc/runlevels/default
|
2012-01-09 22:21:06 +01:00
|
|
|
|
|
|
|
preinstall:
|
2012-12-10 19:08:35 +01:00
|
|
|
$(inroot) $(EMERGE) -n $(USEPKG) python:2.7
|
2012-09-12 21:17:40 +02:00
|
|
|
$(inroot) eselect python set python2.7
|
|
|
|
$(inroot) python-updater
|
2012-01-09 22:21:06 +01:00
|
|
|
|
|
|
|
|
|
|
|
postinstall: airport.service settings.py airport.wsgi default_vhost.include firstboot.start issue
|
|
|
|
sed -i 's/^APACHE2_OPTS=.*/APACHE2_OPTS="-D DEFAULT_VHOST -D INFO -D WSGI"/' $(CHROOT)/etc/conf.d/apache2
|
|
|
|
$(inroot) rc-update add apache2 default
|
2012-09-12 21:17:40 +02:00
|
|
|
sed -i 's/^PG_INITDB_OPTS.*/PG_INITDB_OPTS="--locale=en_US.UTF-8"/' $(CHROOT)/etc/conf.d/postgresql-$(PGVER)
|
|
|
|
$(inroot) eselect postgresql set $(PGVER)
|
|
|
|
rm -rf $(CHROOT)/var/lib/postgresql/$(PGVER)
|
|
|
|
yes | $(inroot) $(EMERGE) --config postgresql-server:$(PGVER)
|
|
|
|
$(inroot) rc-update add postgresql-$(PGVER) default
|
2012-01-09 22:21:06 +01:00
|
|
|
$(inroot) chsh -s /bin/sh postgres
|
|
|
|
$(inroot) $(EMERGE) -1n $(USEPKG) dev-python/virtualenv
|
|
|
|
rm -rf $(CHROOT)/$(APP_ROOT)
|
2012-01-19 02:01:00 +01:00
|
|
|
hg clone $(AIRPORT_REPO) $(CHROOT)/$(APP_ROOT)
|
2012-01-09 22:21:06 +01:00
|
|
|
echo 'VERSION="'`date +1.%y%m%d.%H%m`'"' > $(CHROOT)/$(APP_ROOT)/djangoproject/airport/__init__.py
|
2013-08-30 21:06:16 +02:00
|
|
|
chroot $(CHROOT) virtualenv -p /usr/bin/python2.7 $(APP_ROOT)
|
2012-01-09 22:21:06 +01:00
|
|
|
$(inroot) bash -c ". $(APP_ROOT)/bin/activate ; pip install -r $(APP_ROOT)/requirements.txt"
|
|
|
|
$(inroot) bash -c ". $(APP_ROOT)/bin/activate ; pip install psycopg2"
|
|
|
|
mkdir -p $(CHROOT)/$(APP_ROOT)/etc
|
|
|
|
touch $(CHROOT)/$(APP_ROOT)/etc/__init__.py
|
|
|
|
cp settings.py $(CHROOT)/$(APP_ROOT)/etc
|
|
|
|
cp default_vhost.include $(CHROOT)/etc/apache2/vhosts.d
|
|
|
|
cp airport.wsgi $(CHROOT)/var/www/localhost
|
|
|
|
$(inroot) id -u airport >/dev/null || $(inroot) useradd -d $(APP_ROOT) -M -s /bin/false -U -G postgres airport
|
|
|
|
$(inroot) gpasswd -a apache postgres
|
|
|
|
cp firstboot.start $(CHROOT)/etc/local.d
|
|
|
|
cp issue $(CHROOT)/etc/issue
|
|
|
|
ifeq ($(AVAHI),YES)
|
|
|
|
$(inroot) $(EMERGE) -n $(USEPKG) net-dns/avahi
|
|
|
|
$(inroot) rm -f /etc/avahi/services/*
|
|
|
|
cp airport.service $(CHROOT)/etc/avahi/services
|
|
|
|
$(inroot) ln -sf /etc/init.d/avahi-daemon $(rcdefault)/avahi-daemon
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
clean:
|
|
|
|
|