With this commit the work on the client (system) updates daemon is complete. The *thing* works over dbus, exporting a bunch of methods and sending signals whenever new updates are downloaded. For more information look at the file itself, for now.
110 lines
4.1 KiB
Makefile
110 lines
4.1 KiB
Makefile
PKGNAME = entropy
|
|
PYTHON = python2
|
|
SUBDIRS = client conf docs entropy-notification-applet handlers libraries misc/po misc server spritz
|
|
SERVER_INSPKGS = reagent.py activator.py server_reagent.py server_activator.py repository-admin-daemon repository-services-daemon.example server_query.py
|
|
|
|
all:
|
|
for d in $(SUBDIRS); do make -C $$d; done
|
|
|
|
clean:
|
|
for d in $(SUBDIRS); do make -C $$d clean; done
|
|
cd pylzma && $(PYTHON) setup.py clean --all
|
|
|
|
pylzma:
|
|
cd pylzma && $(PYTHON) setup.py build
|
|
|
|
entropy-install:
|
|
|
|
mkdir -p $(DESTDIR)/$(LIBDIR)/entropy/libraries
|
|
mkdir -p $(DESTDIR)/usr/sbin
|
|
mkdir -p $(DESTDIR)/etc/entropy
|
|
mkdir -p $(DESTDIR)/etc/env.d
|
|
mkdir -p $(DESTDIR)/etc/init.d
|
|
cp libraries $(DESTDIR)/$(LIBDIR)/entropy/ -Ra
|
|
install -m 755 services/repository-admin-daemon $(DESTDIR)/usr/sbin/
|
|
install -m 755 services/repository-services-daemon.example $(DESTDIR)/usr/sbin/
|
|
install -m 755 misc/entropy.sh $(DESTDIR)/usr/sbin/
|
|
install -m 755 services/repository_admin $(DESTDIR)/etc/init.d/
|
|
install -m 755 services/repository_services $(DESTDIR)/etc/init.d/
|
|
|
|
install -m 644 conf/entropy.conf $(DESTDIR)/etc/entropy/
|
|
install -m 644 conf/fsdirs.conf $(DESTDIR)/etc/entropy/
|
|
install -m 644 conf/fsdirsmask.conf $(DESTDIR)/etc/entropy/
|
|
install -m 644 conf/repositories.conf.example $(DESTDIR)/etc/entropy/
|
|
install -m 644 conf/socket* $(DESTDIR)/etc/entropy/
|
|
install -m 644 conf/entropy.conf $(DESTDIR)/etc/entropy/
|
|
cp conf/packages $(DESTDIR)/etc/entropy/ -Ra
|
|
install -m 644 misc/05entropy.envd $(DESTDIR)/etc/env.d/05entropy
|
|
|
|
make DESTDIR="$(DESTDIR)" -C misc/po install
|
|
|
|
entropy-server-install:
|
|
|
|
mkdir -p $(DESTDIR)/$(LIBDIR)/entropy/server
|
|
mkdir -p $(DESTDIR)/etc/entropy
|
|
mkdir -p $(DESTDIR)/usr/sbin
|
|
mkdir -p $(DESTDIR)/usr/share/man/man1
|
|
|
|
install -m 644 conf/server.conf.example $(DESTDIR)/etc/entropy/
|
|
|
|
install -m 755 server/reagent.py $(DESTDIR)/$(LIBDIR)/entropy/server/
|
|
install -m 755 server/activator.py $(DESTDIR)/$(LIBDIR)/entropy/server/
|
|
ln -sf /$(LIBDIR)/entropy/server/reagent.py $(DESTDIR)/usr/sbin/reagent
|
|
ln -sf /$(LIBDIR)/entropy/server/activator.py $(DESTDIR)/usr/sbin/activator
|
|
|
|
# copy man pages
|
|
install -m 644 docs/man/man1/reagent.1 $(DESTDIR)/usr/share/man/man1/
|
|
install -m 644 docs/man/man1/activator.1 $(DESTDIR)/usr/share/man/man1/
|
|
|
|
equo-install:
|
|
|
|
mkdir -p $(DESTDIR)/$(LIBDIR)/entropy/client
|
|
mkdir -p $(DESTDIR)/etc/portage
|
|
mkdir -p $(DESTDIR)/etc/entropy
|
|
mkdir -p $(DESTDIR)/usr/bin
|
|
mkdir -p $(DESTDIR)/usr/share/man/man1
|
|
|
|
# copying portage bashrc
|
|
install -m 644 conf/bashrc.entropy $(DESTDIR)/etc/portage/bashrc.entropy
|
|
install -m 644 conf/client.conf $(DESTDIR)/etc/entropy/
|
|
|
|
install -m 644 client/*.py $(DESTDIR)/$(LIBDIR)/entropy/client/
|
|
install -m 644 client/entropy-system-test-client $(DESTDIR)/$(LIBDIR)/entropy/client/
|
|
install -m 755 client/equo.py $(DESTDIR)/$(LIBDIR)/entropy/client/
|
|
|
|
ln -sf /$(LIBDIR)/entropy/client/equo.py $(DESTDIR)/usr/bin/equo
|
|
|
|
# copy man page
|
|
install -m 644 docs/man/man1/equo.1 $(DESTDIR)/usr/share/man/man1/
|
|
|
|
|
|
updates-daemon-install:
|
|
|
|
mkdir -p $(DESTDIR)/etc/dbus-1/system.d/
|
|
mkdir -p $(DESTDIR)/usr/sbin/
|
|
mkdir -p $(DESTDIR)/usr/share/dbus-1/system-services/
|
|
mkdir -p $(DESTDIR)/usr/share/dbus-1/interfaces/
|
|
install -m 744 services/client-updates-daemon $(DESTDIR)/usr/sbin/
|
|
install -m 644 misc/dbus/system.d/org.entropy.Client.conf $(DESTDIR)/etc/dbus-1/system.d/
|
|
install -m 644 misc/dbus/system-services/org.entropy.Client.service $(DESTDIR)/usr/share/dbus-1/system-services/
|
|
install -m 644 misc/dbus/interfaces/org.entropy.Client.xml $(DESTDIR)/usr/share/dbus-1/interfaces/
|
|
|
|
notification-applet-install:
|
|
|
|
make DESTDIR="$(DESTDIR)" -C entropy-notification-applet install
|
|
|
|
spritz-install:
|
|
|
|
make DESTDIR="$(DESTDIR)" -C spritz install
|
|
|
|
pylzma-install:
|
|
|
|
mkdir -p $(DESTDIR)/$(LIBDIR)/entropy/libraries/pylzma/
|
|
cd pylzma && $(PYTHON) setup.py install --root="$(DESTDIR)" --install-lib="$(LIBDIR)/entropy/libraries/pylzma/"
|
|
|
|
pycompile-all:
|
|
|
|
$(PYTHON) -c "import compileall; compileall.compile_dir('$(DESTDIR)/usr/', force = True, quiet = True)"
|
|
|
|
install: entropy-install entropy-server-install equo-install notification-applet-install spritz-install pycompile-all updates-daemon-install
|