diff options
author | Tobias Scherbaum <dertobi123@gentoo.org> | 2006-04-16 21:44:24 +0000 |
---|---|---|
committer | Tobias Scherbaum <dertobi123@gentoo.org> | 2006-04-16 21:44:24 +0000 |
commit | 7f7ee9440f67d8c2edf7838a1158ce0763efcd89 (patch) | |
tree | 8edf9c68f176d60fe28ae7fee835e5c756bf7945 /x11-misc/grsync/files | |
parent | Add a dependency for >=gcc-3.4.6 on 2.6.16.4. (diff) | |
download | gentoo-2-7f7ee9440f67d8c2edf7838a1158ce0763efcd89.tar.gz gentoo-2-7f7ee9440f67d8c2edf7838a1158ce0763efcd89.tar.bz2 gentoo-2-7f7ee9440f67d8c2edf7838a1158ce0763efcd89.zip |
Initial import. Ebuild provided by Luca Marturana in bug #129624.
(Portage version: 2.1_pre8-r5)
Diffstat (limited to 'x11-misc/grsync/files')
-rw-r--r-- | x11-misc/grsync/files/digest-grsync-0.3.2 | 3 | ||||
-rw-r--r-- | x11-misc/grsync/files/grsync-0.3.2-destdir.patch | 24 |
2 files changed, 27 insertions, 0 deletions
diff --git a/x11-misc/grsync/files/digest-grsync-0.3.2 b/x11-misc/grsync/files/digest-grsync-0.3.2 new file mode 100644 index 000000000000..75d5cb2e8a55 --- /dev/null +++ b/x11-misc/grsync/files/digest-grsync-0.3.2 @@ -0,0 +1,3 @@ +MD5 04aee17ad4d952cb665efed8a460cf2a grsync-0.3.2.tar.gz 131612 +RMD160 41591caea56df7803d1f63803a2ffdcd0170cd5e grsync-0.3.2.tar.gz 131612 +SHA256 ac8368e4c522f5b79f4a824dc918d9d444d9a1d2dfac7314018a72a872ec1e77 grsync-0.3.2.tar.gz 131612 diff --git a/x11-misc/grsync/files/grsync-0.3.2-destdir.patch b/x11-misc/grsync/files/grsync-0.3.2-destdir.patch new file mode 100644 index 000000000000..0c788d9f8f00 --- /dev/null +++ b/x11-misc/grsync/files/grsync-0.3.2-destdir.patch @@ -0,0 +1,24 @@ +--- Makefile.in 2006-04-11 20:51:00.437529750 +0200 ++++ Makefile.in 2006-04-11 20:54:18.821928000 +0200 +@@ -692,10 +692,10 @@ + install-data-local: + @$(NORMAL_INSTALL) + if test -d $(srcdir)/pixmaps; then \ +- $(mkinstalldirs) $(datadir)/pixmaps; \ ++ $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps; \ + for pixmap in $(srcdir)/pixmaps/*; do \ + if test -f $$pixmap; then \ +- $(INSTALL_DATA) $$pixmap $(datadir)/pixmaps; \ ++ $(INSTALL_DATA) $$pixmap $(DESTDIR)$(datadir)/pixmaps; \ + fi \ + done \ + fi +@@ -705,7 +705,7 @@ + mkdir $(distdir)/pixmaps; \ + for pixmap in pixmaps/*; do \ + if test -f $$pixmap; then \ +- cp -p $$pixmap $(distdir)/pixmaps; \ ++ cp -p $$pixmap $(DESTDIR)$(distdir)/pixmaps; \ + fi \ + done \ + fi |