Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
$NetBSD: patch-Makefile,v 1.1.1.1 2011/10/11 19:52:48 minskim Exp $
* Adding "." to the load-path by '--eval' seems not working though I
don't know why.
* There is no actual texinfo documents so install-info fails
miserably.
--- Makefile.orig 2006-05-28 13:23:31.000000000 +0000
+++ Makefile
@@ -47,7 +47,7 @@ $(AUTOLOADFILE).elc: $(AUTOLOADFILE).el
%.elc: %.el
@$(EMACS) $(OPTIONCOMPILE) \
- --eval '(setq load-path (cons "." load-path))' \
+ -L . \
-f batch-byte-compile $<
%.info: %.texi
@@ -79,7 +79,7 @@ install-bin: lisp
install -m 0644 $(ALLSOURCE) $(TARGET) $(ELISPDIR)
install -m 0644 $(THEMES_FILES) $(TARGET) $(ELISPDIR)/themes
-install: install-bin install-info
+install: install-bin #install-info
## DO NOT TOUCH THIS !
## HELPERS FOR MAINTAINER(S)