From: madduck Date: Tue, 11 Jul 2006 23:30:35 +0000 (+0000) Subject: adding misc stuff X-Git-Url: https://git.madduck.net/debian/graphs/package-cycle.git/commitdiff_plain/11a792acf9bcc3a92e537683b6a22d622aa67f7a adding misc stuff git-svn-id: svn+ssh://svn.madduck.net/srv/svn/svn.madduck.net/debian/misc/graphs/package-cycle@27 d3a7e407-1618-0410-b472-f1f387cadc13 --- 11a792acf9bcc3a92e537683b6a22d622aa67f7a diff --git a/ABOUT b/ABOUT new file mode 100644 index 0000000..cbd7ecc --- /dev/null +++ b/ABOUT @@ -0,0 +1,24 @@ +Life-cycle of a Debian package +============================== + +(c) 2005 Martin F. Krafft + based on work (c) 2004 by Kevin Mark, + with help by Sven Müller and Martin Schulze + +Released under the Artistic License + +This chart was put together mainly for inclusion in my forthcoming book: + + http://debianbook.info + +I hope that it will also appear on http://packages.debian.org, or in the +developer's reference. + +If you have comments or suggestions, I would love to hear them. + +The official URL is http://people.debian.org/~madduck/graphs/package-cycle/ + +Thanks go to Goswin Brederlow, Bernhard Link, and Kenshi Muto, as well as the +author and contributors of the original work (see above). + + -- martin f. krafft Sat, 12 Feb 2005 16:03:17 +0100 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..366e1ee --- /dev/null +++ b/Makefile @@ -0,0 +1,36 @@ +BASES = en/package-cycle +EXTS = eps png ps pdf +FILES = $(foreach ext,$(EXTS),$(foreach base,$(BASES),$(base).$(ext))) + +.PHONY: all +all: $(FILES) + +.PRECIOUS: %.eps +%.eps: %.dia + dia -t eps $< + chmod 644 $@ + +.PRECIOUS: %.png +%.png: %.eps + convert $< $@ + chmod 644 $@ + +.PRECIOUS: %.ps +%.ps: %.eps + convert $< $@ + chmod 644 $@ + +.PRECIOUS: %.pdf +%.pdf: %.ps + ps2pdf $< $@ + chmod 644 $@ + +.PHONY: clean +clean: + rm -f $(FILES) + +.PHONY: upload +upload: + $(MAKE) -s all + chmod -R a+rX $(CURDIR) + rsync -Pva --delete $(CURDIR)/ people.debian.org:public_html/graphs/package-cycle diff --git a/en/package-cycle.dia b/en/package-cycle.dia new file mode 100644 index 0000000..7d49ece Binary files /dev/null and b/en/package-cycle.dia differ