Files
entropy/Makefile
Fabio Erculiani 59245892aa [magneto] welcome to Magneto (the new Entropy Updates Notification Applet)
Entropy Notification Applet is dead!
Long life to Entropy Notification Applet (Magneto).
Magneto is fully integrated with both KDE and GNOME featuring two
heads (one GTK and one KDE).
2009-07-22 19:39:30 +02:00

133 lines
4.8 KiB
Makefile

PKGNAME = entropy
PYTHON = python2
SUBDIRS = client conf docs handlers libraries misc/po misc server sulfur
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)/usr/bin
mkdir -p $(DESTDIR)/etc/entropy
mkdir -p $(DESTDIR)/etc/env.d
mkdir -p $(DESTDIR)/etc/init.d
mkdir -p $(DESTDIR)/$(LIBDIR)/entropy/services
cp libraries/entropy $(DESTDIR)/$(LIBDIR)/entropy/libraries/ -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 755 services/smartapp_wrapper $(DESTDIR)/$(LIBDIR)/entropy/services/
install -m 755 misc/entropy_hwgen.sh $(DESTDIR)/usr/bin/
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/brokensyms.conf $(DESTDIR)/etc/entropy/
install -m 644 conf/fssymlinks.conf $(DESTDIR)/etc/entropy/
install -m 644 conf/brokenlibsmask.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
install -m 644 docs/COPYING $(DESTDIR)/$(LIBDIR)/entropy/
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/*.py $(DESTDIR)/$(LIBDIR)/entropy/server/
install -m 755 server/*.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/
magneto-core-install:
make DESTDIR="$(DESTDIR)" -C magneto magneto-core-install
magneto-loader-install:
make DESTDIR="$(DESTDIR)" -C magneto magneto-loader-install
magneto-gtk-install:
make DESTDIR="$(DESTDIR)" -C magneto magneto-gtk-install
magneto-kde-install:
make DESTDIR="$(DESTDIR)" -C magneto magneto-kde-install
sulfur-install:
make DESTDIR="$(DESTDIR)" -C sulfur 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)/$(LIBDIR)/entropy', force = True, quiet = True)"
install: entropy-install entropy-server-install equo-install sulfur-install updates-daemon-install magneto-core-install magneto-loader-install magneto-gtk-install magneto-kde-install