Compare commits
4 Commits
Author | SHA1 | Date |
---|---|---|
Albert Hopkins | 4f4cfb9ace | |
Albert Hopkins | e53c2116da | |
Albert Hopkins | c82d5c781d | |
Albert Hopkins | 82162dfffa |
9
Makefile
9
Makefile
|
@ -173,10 +173,11 @@ endif
|
||||||
$(inroot) eselect profile set 1
|
$(inroot) eselect profile set 1
|
||||||
cp configs/locale.gen $(CHROOT)/etc/locale.gen
|
cp configs/locale.gen $(CHROOT)/etc/locale.gen
|
||||||
$(inroot) locale-gen
|
$(inroot) locale-gen
|
||||||
mkdir -p $(CHROOT)/etc/portage
|
for f in $(PACKAGE_FILES); do \
|
||||||
ifdef PACKAGE_FILES
|
base=`basename $$f` ; \
|
||||||
cp $(PACKAGE_FILES) $(CHROOT)/etc/portage/
|
mkdir -p $(CHROOT)/etc/portage/$$base; \
|
||||||
endif
|
cp $$f $(CHROOT)/etc/portage/$$base/virtual-appliance-$$base; \
|
||||||
|
done
|
||||||
touch compile_options
|
touch compile_options
|
||||||
|
|
||||||
base_system: mounts compile_options
|
base_system: mounts compile_options
|
||||||
|
|
|
@ -44,6 +44,7 @@ net-print/cups dbus
|
||||||
dev-python/PyQt4 X dbus declarative sql svg webkit
|
dev-python/PyQt4 X dbus declarative sql svg webkit
|
||||||
sys-fs/udev hwdb gudev
|
sys-fs/udev hwdb gudev
|
||||||
virtual/udev hwdb gudev
|
virtual/udev hwdb gudev
|
||||||
|
app-crypt/qca openssl
|
||||||
app-crypt/pinentry qt4
|
app-crypt/pinentry qt4
|
||||||
dev-libs/boost threads
|
dev-libs/boost threads
|
||||||
sys-libs/zlib minizip
|
sys-libs/zlib minizip
|
||||||
|
|
|
@ -11,7 +11,8 @@ import os
|
||||||
DEBUG = False
|
DEBUG = False
|
||||||
TEMPLATE_DEBUG = DEBUG
|
TEMPLATE_DEBUG = DEBUG
|
||||||
|
|
||||||
TIME_ZONE = 'America/New_York'
|
TIME_ZONE = 'UTC'
|
||||||
|
USE_TZ = False
|
||||||
|
|
||||||
# Language code for this installation. All choices can be found here:
|
# Language code for this installation. All choices can be found here:
|
||||||
# http://www.i18nguy.com/unicode/language-identifiers.html
|
# http://www.i18nguy.com/unicode/language-identifiers.html
|
||||||
|
|
Loading…
Reference in New Issue