diff options
author | Harald van Dijk <truedfx@gentoo.org> | 2006-05-24 05:47:48 +0000 |
---|---|---|
committer | Harald van Dijk <truedfx@gentoo.org> | 2006-05-24 05:47:48 +0000 |
commit | 7b74f244e7a3917215d380f3f920a9214df1e9a1 (patch) | |
tree | 4e85af5efd5045b97ce261c916fe7f8a116b6a90 /app-misc/glastree/files | |
parent | Set PATCH_VER in the ebuild to pull in the xmms patchset which includes a fix... (diff) | |
download | historical-7b74f244e7a3917215d380f3f920a9214df1e9a1.tar.gz historical-7b74f244e7a3917215d380f3f920a9214df1e9a1.tar.bz2 historical-7b74f244e7a3917215d380f3f920a9214df1e9a1.zip |
#134070 and version bump
Package-Manager: portage-2.1_rc2
Diffstat (limited to 'app-misc/glastree/files')
-rw-r--r-- | app-misc/glastree/files/digest-glastree-1.04 | 3 | ||||
-rw-r--r-- | app-misc/glastree/files/glastree-posix-make.patch | 16 |
2 files changed, 19 insertions, 0 deletions
diff --git a/app-misc/glastree/files/digest-glastree-1.04 b/app-misc/glastree/files/digest-glastree-1.04 new file mode 100644 index 000000000000..63f31e60e812 --- /dev/null +++ b/app-misc/glastree/files/digest-glastree-1.04 @@ -0,0 +1,3 @@ +MD5 021c8f9e9521bd041e1844f121edffa4 glastree-1.04.tar.gz 5846 +RMD160 bb45ee731fc20a791c06f6303c0f4f91380d857a glastree-1.04.tar.gz 5846 +SHA256 067d01d98ae155f1fa1ba25a27dd72d27d4455d71107c3e6e6f1cdc41a0e0fd3 glastree-1.04.tar.gz 5846 diff --git a/app-misc/glastree/files/glastree-posix-make.patch b/app-misc/glastree/files/glastree-posix-make.patch new file mode 100644 index 000000000000..07e4bf6ec91a --- /dev/null +++ b/app-misc/glastree/files/glastree-posix-make.patch @@ -0,0 +1,16 @@ +Make sure the perl code is valid both with and without the backslashes. +Some make versions strip them, others don't. + +--- glastree-1.04/Makefile ++++ glastree-1.04/Makefile +@@ -24,8 +24,8 @@ + + install: + @perl -e 'eval "use Date::Calc"; \ +- print "Checking for prereq Date::Calc..."; \ +- if ($$@) { print "\nThis program requires the Date::Calc module.\n"; exit 1; } \ ++ print "Checking for prereq Date::Calc..."; if ($$@) { \ ++ print "\nThis program requires the Date::Calc module.\n"; exit 1; } \ + print " OK\n"; ' + + $(INSTALL) -d $(INSTROOT)/$(INSTBIN) |