diff options
author | Tom Knight <tomk@gentoo.org> | 2007-04-03 22:25:50 +0000 |
---|---|---|
committer | Tom Knight <tomk@gentoo.org> | 2007-04-03 22:25:50 +0000 |
commit | af59af67e5d80a6ba527da1570cb45c72ce6f4c5 (patch) | |
tree | e0ae53c6f7d364754601abe22e3bf63310d231e6 /dev-lang/ucblogo/files | |
parent | Stable on sparc (diff) | |
download | historical-af59af67e5d80a6ba527da1570cb45c72ce6f4c5.tar.gz historical-af59af67e5d80a6ba527da1570cb45c72ce6f4c5.tar.bz2 historical-af59af67e5d80a6ba527da1570cb45c72ce6f4c5.zip |
Fixed to work with USE="-emacs", fixes bug #146348
Package-Manager: portage-2.1.2.2
Diffstat (limited to 'dev-lang/ucblogo/files')
-rw-r--r-- | dev-lang/ucblogo/files/ucblogo-5.5-no-emacs.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-lang/ucblogo/files/ucblogo-5.5-no-emacs.patch b/dev-lang/ucblogo/files/ucblogo-5.5-no-emacs.patch new file mode 100644 index 000000000000..03c78fc179f6 --- /dev/null +++ b/dev-lang/ucblogo/files/ucblogo-5.5-no-emacs.patch @@ -0,0 +1,28 @@ +--- makefile.in~ 2007-04-03 22:50:58.000000000 +0100 ++++ makefile.in 2007-04-03 22:50:58.000000000 +0100 +@@ -57,12 +57,10 @@ + + clean: + rm -f *.o libloc.c +- cd emacs; $(MAKE) clean + + ship: + rm -f config.h config.cache config.log config.status + rm -f makefile makehelp logo *.o libloc.c +- cd emacs; $(MAKE) ship + cd docs; $(MAKE) ship + + install: all +@@ -71,12 +69,10 @@ + cp -f logolib/* $(DESTDIR)$(LIBLOC)/logolib/. + cp -f helpfiles/* $(DESTDIR)$(LIBLOC)/helpfiles/. + cp -f csls/* $(DESTDIR)$(LIBLOC)/csls/. +- (cd emacs; prefix=$(prefix) LIBLOC=$(LIBLOC) BINDIR=$(BINDIR) DESTDIR=$(DESTDIR) $(MAKE) install) + (cd docs; prefix=$(prefix) LIBLOC=$(LIBLOC) BINDIR=$(BINDIR) DESTDIR=$(DESTDIR) $(MAKE) install) + # prefix=$(prefix); LIBLOC=$(LIBLOC); BINDIR=$(BINDIR); export prefix LIBLOC BINDIR; cd emacs; $(MAKE) install + + logo-mode: +- (cd emacs; prefix=$(prefix) LIBLOC=$(LIBLOC) BINDIR=$(BINDIR) $(MAKE)) + # @prefix=$(prefix); LIBLOC=$(LIBLOC); BINDIR=$(BINDIR); export prefix LIBLOC BINDIR; cd emacs; $(MAKE) + + make-docs: |