diff options
author | 2007-09-13 05:50:18 +0000 | |
---|---|---|
committer | 2007-09-13 05:50:18 +0000 | |
commit | a1cc5b7b27bfbeff80752a24d88b2869f9a3461e (patch) | |
tree | 628752e72b25dc9f06ebf3a9c592ced8772f4f89 /app-doc/gimp-help/files | |
parent | Stable for HPPA (bug #189690). (diff) | |
download | gentoo-2-a1cc5b7b27bfbeff80752a24d88b2869f9a3461e.tar.gz gentoo-2-a1cc5b7b27bfbeff80752a24d88b2869f9a3461e.tar.bz2 gentoo-2-a1cc5b7b27bfbeff80752a24d88b2869f9a3461e.zip |
Pruning old ebuilds
(Portage version: 2.1.3.9)
Diffstat (limited to 'app-doc/gimp-help/files')
4 files changed, 0 insertions, 81 deletions
diff --git a/app-doc/gimp-help/files/digest-gimp-help-0.10 b/app-doc/gimp-help/files/digest-gimp-help-0.10 deleted file mode 100644 index e0bc242a9b1c..000000000000 --- a/app-doc/gimp-help/files/digest-gimp-help-0.10 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 22a1e10c314c5547fe8721c4f6f0b30a gimp-help-2-0.10.tar.gz 41802089 -RMD160 8bf675b1973077f810382d90f36e8c4057e22aea gimp-help-2-0.10.tar.gz 41802089 -SHA256 cd1cd381435823809264e10ede6d597ec46d443c5bcd7b803da4190ba505454f gimp-help-2-0.10.tar.gz 41802089 diff --git a/app-doc/gimp-help/files/digest-gimp-help-0.11 b/app-doc/gimp-help/files/digest-gimp-help-0.11 deleted file mode 100644 index a742112cb5fc..000000000000 --- a/app-doc/gimp-help/files/digest-gimp-help-0.11 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 1becf4914fe51d8f0ce4142202c8cb92 gimp-help-2-0.11.tar.gz 52058316 -RMD160 edfa32797ed6c93048e510b2c4f39f4738468b49 gimp-help-2-0.11.tar.gz 52058316 -SHA256 ad1238962ac3eea36b2d07f210e7716f4892b46b49efb313de03c3b71499f9e6 gimp-help-2-0.11.tar.gz 52058316 diff --git a/app-doc/gimp-help/files/digest-gimp-help-0.11-r2 b/app-doc/gimp-help/files/digest-gimp-help-0.11-r2 deleted file mode 100644 index a742112cb5fc..000000000000 --- a/app-doc/gimp-help/files/digest-gimp-help-0.11-r2 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 1becf4914fe51d8f0ce4142202c8cb92 gimp-help-2-0.11.tar.gz 52058316 -RMD160 edfa32797ed6c93048e510b2c4f39f4738468b49 gimp-help-2-0.11.tar.gz 52058316 -SHA256 ad1238962ac3eea36b2d07f210e7716f4892b46b49efb313de03c3b71499f9e6 gimp-help-2-0.11.tar.gz 52058316 diff --git a/app-doc/gimp-help/files/gimp-help-2.0.11-image-honour-ALL_LINGUAS.patch b/app-doc/gimp-help/files/gimp-help-2.0.11-image-honour-ALL_LINGUAS.patch deleted file mode 100644 index 7cdb9b6cc7c9..000000000000 --- a/app-doc/gimp-help/files/gimp-help-2.0.11-image-honour-ALL_LINGUAS.patch +++ /dev/null @@ -1,72 +0,0 @@ ---- Makefile.am.orig 2006-12-02 14:23:01.000000000 +0300 -+++ Makefile.am 2007-01-27 10:34:19.000000000 +0300 -@@ -3,17 +3,19 @@ - STAMP_DIR = stamps - - IMAGE_DIRS = \ -+ . \ -+ callouts \ - dialogs \ - dialogs/examples\ - filters \ - filters/examples\ - glossary \ -+ math \ -+ menus \ -+ preferences \ - tool-options \ - toolbox \ -- callouts \ -- preferences \ -- using \ -- menus -+ using - - IMAGE_FILES = \ - $(wildcard $(top_srcdir)/images/*.png) \ -@@ -93,9 +95,20 @@ - @echo '*** Creating directories ***' - - # we care only for HTML here -- @for name in `find $(top_srcdir)/images/ -name "*.png" -o -name "*.jpg"`;\ -- do $(mkinstalldirs) `dirname html/$$name`; \ -+ # I suppose IMAGE_DIRS to be updated each time whenever you add new image directory -+ # and it should not list empty directories -+ @echo 'Creating base image dirrectories.'; \ -+ for dir in $(IMAGE_DIRS); do \ -+ $(mkinstalldirs) html/images/$$dir; \ -+ done -+ -+ @for lang in $(ALL_LINGUAS); do \ -+ echo 'Creating image dirrectories for language: '$$lang; \ -+ for file in `find images/ -name "*.png" -o -name "*.jpg" | grep "/$$lang/"`; do \ -+ $(mkinstalldirs) `dirname html/$$file`; \ -+ done; \ - done; -+ - # only create a link in the PDF directory, because image files are - # included in the PDF anyways - @echo '*** Creating link in PDF directory to images ***' -@@ -133,8 +146,20 @@ - @echo '*** Copying images ***' - - # copy the image files to html directory -- @for name in `find $(top_srcdir)/images/ -name "*.png" -o -name "*.jpg"`;\ -- do cp $$name html/$$name; \ -+ @echo 'Copying common images.'; \ -+ for dir in $(IMAGE_DIRS); do \ -+ for file in `echo $(top_srcdir)/images/$$dir/*.png` `echo $(top_srcdir)/images/$$dir/*.jpg`; do \ -+ if test -f $$file ; then \ -+ cp $$file html/$$file || exit $$?; \ -+ fi; \ -+ done; \ -+ done; -+ -+ @for lang in $(ALL_LINGUAS); do \ -+ echo 'Copying images for '$$lang ; \ -+ for file in `find images/ -name "*.png" -o -name "*.jpg" | grep "/$$lang/"`; do \ -+ cp $$file html/$$file || exit $$?; \ -+ done; \ - done; - - @touch $@ |