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 | b742145c2bf7ba961cd4e68630e64983fb265f81 (patch) | |
tree | 65244649ce4f5e7054f8ecdb57699f353eb347cc /dev-lang/ucblogo/files/ucblogo-5.5-destdir.patch | |
parent | deps are implied by games-rpg/adonthell (diff) | |
download | historical-b742145c2bf7ba961cd4e68630e64983fb265f81.tar.gz historical-b742145c2bf7ba961cd4e68630e64983fb265f81.tar.bz2 historical-b742145c2bf7ba961cd4e68630e64983fb265f81.zip |
Fix by Lukasz Demianiuk to add support for DESTDIR to emacs dir #127354.
Package-Manager: portage-2.1_pre6-r6
Diffstat (limited to 'dev-lang/ucblogo/files/ucblogo-5.5-destdir.patch')
-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)/. |