diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-03-24 00:12:51 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-03-24 00:12:51 +0000 |
commit | 48a172e05f2e9c09c9079baff5440a512cf458c9 (patch) | |
tree | eef7f84b7afb8021dace7cfde193a618fd7a6f25 /dev-lang/ucblogo/files | |
parent | deps are implied by games-rpg/adonthell (diff) | |
download | gentoo-2-48a172e05f2e9c09c9079baff5440a512cf458c9.tar.gz gentoo-2-48a172e05f2e9c09c9079baff5440a512cf458c9.tar.bz2 gentoo-2-48a172e05f2e9c09c9079baff5440a512cf458c9.zip |
Fix by Lukasz Demianiuk to add support for DESTDIR to emacs dir #127354.
(Portage version: 2.1_pre6-r6)
Diffstat (limited to 'dev-lang/ucblogo/files')
-rw-r--r-- | dev-lang/ucblogo/files/ucblogo-5.5-destdir.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-lang/ucblogo/files/ucblogo-5.5-destdir.patch b/dev-lang/ucblogo/files/ucblogo-5.5-destdir.patch index 36c4c63d7d04..89fd129c488e 100644 --- a/dev-lang/ucblogo/files/ucblogo-5.5-destdir.patch +++ b/dev-lang/ucblogo/files/ucblogo-5.5-destdir.patch @@ -41,3 +41,35 @@ + -cp -f usermanual.pdf $(DESTDIR)$(DOCSDIR)/. + -cp -f usermanual.texi $(DESTDIR)$(DOCSDIR)/. + -cp -f ../usermanual $(DESTDIR)$(DOCSDIR)/. +--- emacs/makefile ++++ emacs/makefile +@@ -40,16 +40,16 @@ + -rm -f add.user install-logo-mode dot.emacs dot.loops *.elc + + install: all +- for d in $(EMACSDIR); do [ -d $$d ] || mkdir -p $$d || exit 1; done +- cp -f logo.* $(EMACSDIR)/. +- cp -f letrec.* $(EMACSDIR)/. +- cp -f comint*.* $(EMACSDIR)/. +- cp -f tutor* $(EMACSDIR)/. +- cp -f dot.loops $(EMACSDIR)/. +- cp -f dot.logo $(EMACSDIR)/.logo +- cp -f dot.LOOPS $(EMACSDIR)/.LOOPS +- cp -f dot.emacs $(EMACSDIR)/. +- cp -f README $(EMACSDIR)/. +- cp -p install-logo-mode $(BINDIR)/. +- cp -f edfunc.el $(EMACSDIR)/. +- cp -f check.lg $(EMACSDIR)/. ++ for d in $(EMACSDIR); do [ -d $(DESTDIR)$$d ] || mkdir -p $(DESTDIR)$$d || exit 1; done ++ cp -f logo.* $(DESTDIR)$(EMACSDIR)/. ++ cp -f letrec.* $(DESTDIR)$(EMACSDIR)/. ++ cp -f comint*.* $(DESTDIR)$(EMACSDIR)/. ++ cp -f tutor* $(DESTDIR)$(EMACSDIR)/. ++ cp -f dot.loops $(DESTDIR)$(EMACSDIR)/. ++ cp -f dot.logo $(DESTDIR)$(EMACSDIR)/.logo ++ cp -f dot.LOOPS $(DESTDIR)$(EMACSDIR)/.LOOPS ++ cp -f dot.emacs $(DESTDIR)$(EMACSDIR)/. ++ cp -f README $(DESTDIR)$(EMACSDIR)/. ++ cp -p install-logo-mode $(DESTDIR)$(BINDIR)/. ++ cp -f edfunc.el $(DESTDIR)$(EMACSDIR)/. ++ cp -f check.lg $(DESTDIR)$(EMACSDIR)/. |