summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 23bc42e1b5d79150bbf8faefdeeae1a1a2126856 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
PACKAGE = draksnapshot
VERSION:=0.20.5

NAME = draksnapshot
SUBDIRS = data po

PREFIX = /
DATADIR = $(PREFIX)/usr/share
ICONSDIR = $(DATADIR)/icons
PIXDIR = $(DATADIR)/$(NAME)
SBINDIR = $(PREFIX)/usr/sbin
BINDIR = $(PREFIX)/usr/bin
SYSCONFDIR = $(PREFIX)/etc/sysconfig
SBINREL = ../sbin
PERL_VENDORLIB=$(DESTDIR)/$(shell perl -V:installvendorlib   | perl -pi -e "s/.*=//; s/[;']//g")

localedir = $(PREFIX)/usr/share/locale

override CFLAGS += -DPACKAGE=\"$(NAME)\" -DLOCALEDIR=\"$(localedir)\"

all:
	for d in $(SUBDIRS); do ( cd $$d ; make $@ ) ; done

clean:
	$(MAKE) -C po $@
	rm -f core .#*[0-9]
	for d in $(SUBDIRS); do ( cd $$d ; make $@ ) ; done
	find . -name '*~' | xargs rm -f

install:
	install -d $(PREFIX)/usr/{sbin,bin,libexec,share/{mime/packages,$(NAME)/pixmaps,autostart,gnome/autostart,icons/{mini,large},polkit-1/actions}}
	install -m755 draksnapshot-config $(PREFIX)/usr/libexec/
	install -m755 wrapper $(BINDIR)/draksnapshot-config
	install -m644 org.mageia.draksnapshot-config.policy $(PREFIX)/usr/share/polkit-1/actions/
	install -m755 draksnapshot-restore $(SBINDIR)
	install -m755 draksnapshot-applet $(SBINDIR)
	install -d $(SYSCONFDIR)
	install -m644 icons/$(NAME).png $(ICONSDIR)/mini/$(NAME).png
	install -m644 icons/$(NAME).png $(ICONSDIR)/$(NAME).png
	install -m644 icons/$(NAME)-big.png $(ICONSDIR)/large/$(NAME).png
	install -m644 icons/*.png $(PIXDIR)/pixmaps
	for d in $(SUBDIRS); do make -C $$d $@; done
	mkdir -p $(PERL_VENDORLIB)/MDV/Snapshot
	install -m 644 lib/MDV/Snapshot/*.pm $(PERL_VENDORLIB)/MDV/Snapshot

cleandist:
	rm -rf $(PACKAGE)-$(VERSION) ../$(PACKAGE)-$(VERSION).tar.bz2

tar:
	git archive --prefix $(PACKAGE)-$(VERSION)/ HEAD | xz -9 > $(PACKAGE)-$(VERSION).tar.xz

dist: cleandist tar

log:changelog

changelog: ../common/username
#svn2cl is available in our contrib.
	svn2cl --authors ../common/username.xml --accum
	rm -f ChangeLog.bak
	svn commit -m "Generated by svn2cl the `date '+%c'`" ChangeLog