diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2007-05-11 19:52:12 +0000 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2007-05-11 19:52:12 +0000 |
commit | 456c494c6ff027f5c33a43d51179c87ee1a8401d (patch) | |
tree | 35cd837d71e71aa5b3ec4cf02da0f2a69ceb2051 /app-crypt/mcrypt/files | |
parent | Added missing includes to ncpfs-2.2.6 fixing compile errors (bug #157462 and ... (diff) | |
download | gentoo-2-456c494c6ff027f5c33a43d51179c87ee1a8401d.tar.gz gentoo-2-456c494c6ff027f5c33a43d51179c87ee1a8401d.tar.bz2 gentoo-2-456c494c6ff027f5c33a43d51179c87ee1a8401d.zip |
Fixed build errors, bug#176672
(Portage version: 2.1.2.7)
Diffstat (limited to 'app-crypt/mcrypt/files')
-rw-r--r-- | app-crypt/mcrypt/files/mcrypt-2.6.5-build.patch | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/app-crypt/mcrypt/files/mcrypt-2.6.5-build.patch b/app-crypt/mcrypt/files/mcrypt-2.6.5-build.patch new file mode 100644 index 000000000000..a4b42c1c2d93 --- /dev/null +++ b/app-crypt/mcrypt/files/mcrypt-2.6.5-build.patch @@ -0,0 +1,46 @@ +diff -urNp mcrypt-2.6.5.org/Makefile.am mcrypt-2.6.5/Makefile.am +--- mcrypt-2.6.5.org/Makefile.am 2003-01-19 20:09:30.000000000 +0200 ++++ mcrypt-2.6.5/Makefile.am 2007-05-11 22:52:14.000000000 +0300 +@@ -3,10 +3,10 @@ + EXTRA_DIST = config.rpath INSTALL.generic THANKS NEWS + SUBDIRS = m4 doc src po + install-exec-hook: +- -$(RM) -f $(bindir)/mdecrypt +- $(LN_S) mcrypt $(bindir)/mdecrypt ++ -$(RM) -f $(DESTDIR)$(bindir)/mdecrypt ++ $(LN_S) mcrypt $(DESTDIR)$(bindir)/mdecrypt + uninstall-local: +- -$(RM) -f $(bindir)/mdecrypt ++ -$(RM) -f $(DESTDIR)$(bindir)/mdecrypt + + ChangeLog: + cvs2cl --utc --fsf -t -S --prune +diff -urNp mcrypt-2.6.5.org/Makefile.in mcrypt-2.6.5/Makefile.in +--- mcrypt-2.6.5.org/Makefile.in 2007-02-19 08:47:03.000000000 +0200 ++++ mcrypt-2.6.5/Makefile.in 2007-05-11 22:52:33.000000000 +0300 +@@ -636,10 +636,10 @@ uninstall-info: uninstall-info-recursive + uninstall uninstall-am uninstall-info-am uninstall-local + + install-exec-hook: +- -$(RM) -f $(bindir)/mdecrypt +- $(LN_S) mcrypt $(bindir)/mdecrypt ++ -$(RM) -f $(DESTDIR)$(bindir)/mdecrypt ++ $(LN_S) mcrypt $(DESTDIR)$(bindir)/mdecrypt + uninstall-local: +- -$(RM) -f $(bindir)/mdecrypt ++ -$(RM) -f $(DESTDIR)$(bindir)/mdecrypt + + ChangeLog: + cvs2cl --utc --fsf -t -S --prune +diff -urNp mcrypt-2.6.5.org/po/Makefile.in.in mcrypt-2.6.5/po/Makefile.in.in +--- mcrypt-2.6.5.org/po/Makefile.in.in 2003-02-21 19:45:55.000000000 +0200 ++++ mcrypt-2.6.5/po/Makefile.in.in 2007-05-11 22:50:07.000000000 +0300 +@@ -27,7 +27,7 @@ gettextsrcdir = $(datadir)/gettext/po + INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + MKINSTALLDIRS = @MKINSTALLDIRS@ +-mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac` ++mkinstalldirs = $(MKINSTALLDIRS) + + GMSGFMT = @GMSGFMT@ + MSGFMT = @MSGFMT@ |