324 lines
9.5 KiB
Makefile
324 lines
9.5 KiB
Makefile
ifndef HAS_UTIL_MK
|
|
include $(HOME)/Documents/mk/util.mk
|
|
endif
|
|
|
|
.PHONY: all elisp-all update
|
|
|
|
all: elisp-all
|
|
|
|
elisp-all: ess org-mode gnus dvc auctex reftex
|
|
#apel flim semi wanderlust
|
|
|
|
update: updaterepos
|
|
|
|
|
|
$(call include-once,$(MK_DIR)/vcs.mk)
|
|
$(call include-once,$(MK_DIR)/emacsd-defs.mk)
|
|
|
|
|
|
GIT_DIRS :=\
|
|
emacswiki\
|
|
use-package\
|
|
org-mode\
|
|
gnus\
|
|
bbdb\
|
|
emacs-jabber\
|
|
w3\
|
|
doxymacs\
|
|
|
|
# apel\
|
|
semi\
|
|
flim\
|
|
wanderlust\
|
|
|
|
URL-emacswiki := https://github.com/emacsmirror/emacswiki.org.git
|
|
URL-use-package := https://github.com/jwiegley/use-package.git
|
|
URL-apel := http://github.com/wanderlust/apel.git
|
|
URL-semi := http://github.com/wanderlust/semi.git
|
|
URL-flim := http://github.com/wanderlust/flim.git
|
|
URL-wanderlust := http://github.com/wanderlust/wanderlust.git
|
|
URL-org-mode := http://orgmode.org/org-mode.git
|
|
URL-gnus := http://git.gnus.org/gnus.git
|
|
URL-w3 := http://git.sv.gnu.org/r/w3.git
|
|
URL-bbdb := http://git.savannah.nongnu.org/r/bbdb.git
|
|
URL-emacs-jabber := git://emacs-jabber.git.sourceforge.net/gitroot/emacs-jabber/emacs-jabber
|
|
URL-doxymacs := git://doxymacs.git.sourceforge.net/gitroot/doxymacs/doxymacs
|
|
|
|
SVN_DIRS :=\
|
|
ess\
|
|
|
|
URL-ess := https://svn.r-project.org/ESS/trunk
|
|
|
|
|
|
CVS_DIRS :=\
|
|
auctex\
|
|
reftex\
|
|
|
|
URL-auctex := :pserver:anonymous@cvs.savannah.gnu.org:/sources/auctex
|
|
URL-reftex := :pserver:anonymous@cvs.savannah.gnu.org:/sources/auctex
|
|
|
|
# :pserver:anonymous@cvs.namazu.org:/storage/cvsroot login
|
|
# :pserver:anonymous@cvs.namazu.org:/storage/cvsroot co emacs-w3m
|
|
|
|
BZR_DIRS :=\
|
|
dvc\
|
|
|
|
URL-dvc := http://bzr.xsteve.at/dvc/
|
|
|
|
$(foreach d,$(HG_DIRS) ,$(call eval-vcs-template,HG_TMPL,$d))
|
|
$(foreach d,$(GIT_DIRS),$(call eval-vcs-template,GIT_TMPL,$d))
|
|
#$(foreach d,$(GIT_DIRS),$(call info-vcs-template,GIT_TMPL,$d))
|
|
$(foreach d,$(BZR_DIRS),$(call eval-vcs-template,BZR_TMPL,$d))
|
|
$(foreach d,$(SVN_DIRS),$(call eval-vcs-template,SVN_TMPL,$d))
|
|
$(foreach d,$(CVS_DIRS),$(call eval-vcs-template,CVS_TMPL,$d))
|
|
|
|
|
|
# #########################################################################
|
|
# auctex
|
|
# #########################################################################
|
|
.PHONY: auctex
|
|
auctex/configure: auctex/autogen.sh auctex/configure.ac
|
|
cd $(@D) && ./autogen.sh
|
|
|
|
auctex/Makefile: auctex/configure Makefile
|
|
cd $(@D) && ./configure\
|
|
--infodir=$(INFO_DIR)\
|
|
--datarootdir=$(DOT_DIR)/var\
|
|
--localstatedir=$(DOT_DIR)/var\
|
|
--with-lispdir=$(LISP_DIR)\
|
|
--with-texmf-dir=$(DOT_DIR)/var/texmf\
|
|
|
|
auctex: auctex/Makefile
|
|
$(MAKE) -C $(DIR-$@) clean
|
|
$(MAKE) -C $(DIR-$@) lisp info install\
|
|
EMACS="'$(EMACS)' --eval '(setq vc-handled-backends nil)'"
|
|
|
|
|
|
# #########################################################################
|
|
# reftex
|
|
# #########################################################################
|
|
.PHONY: reftex
|
|
cd reftex:
|
|
$(MAKE) -C $(DIR-$@) clean
|
|
$(MAKE) -C $(DIR-$@) lisp info install\
|
|
infodir=$(INFO_DIR)\
|
|
lispdir=$(LISP_DIR)/reftex\
|
|
EMACS="'$(EMACS)' --eval '(setq vc-handled-backends nil)'"
|
|
|
|
|
|
# #########################################################################
|
|
# ess
|
|
# #########################################################################
|
|
.PHONY: ess
|
|
ess:
|
|
-install-info --info-dir=$(INFO_DIR) --remove $(INFO_DIR)/ess.info
|
|
$(MAKE) -C $(DIR-$@) all install\
|
|
PREFIX=$(DOT_DIR)\
|
|
LISPDIR=$(LISP_DIR)/ess\
|
|
ETCDIR=$(LISP_DIR)/ess/etc\
|
|
INFODIR=$(INFO_DIR)\
|
|
EMACS="'$(EMACS)' --eval '(setq vc-handled-backends nil)'"
|
|
|
|
|
|
# #########################################################################
|
|
# doxymacs
|
|
# #########################################################################
|
|
.PHONY: doxymacs
|
|
doxymacs/configure: doxymacs/bootstrap doxymacs/configure.ac
|
|
cd $(@D) && ./bootstrap
|
|
|
|
doxymacs/Makefile: doxymacs/configure Makefile
|
|
cd $(@D) && ./configure\
|
|
--prefix=$(LISP_DIR)/doxymacs\
|
|
--bindir=$(BIN_DIR)\
|
|
--with-lispdir=$(LISP_DIR)/doxymacs\
|
|
|
|
doxymacs: doxymacs/Makefile $(wildcard doxymacs/lisp/*.el)
|
|
$(MAKE) -C $(DIR-$@) clean
|
|
$(MAKE) -C $(DIR-$@) all install\
|
|
EMACS="'$(EMACS)' --eval '(setq vc-handled-backends nil)'"\
|
|
|
|
|
|
# #########################################################################
|
|
# gnus
|
|
# #########################################################################
|
|
.PHONY: gnus
|
|
gnus/configure :| gnus/.git
|
|
gnus/Makefile: gnus/configure
|
|
cd $(@D) && ./configure\
|
|
--prefix=$(LISP_DIR)/gnus\
|
|
--infodir=$(INFO_DIR)\
|
|
|
|
gnus: gnus/Makefile
|
|
$(MAKE) -C $(DIR-$@) clean
|
|
$(MAKE) -C $(DIR-$@) all\
|
|
EMACS="'$(EMACS)' --eval '(setq vc-handled-backends nil)'"\
|
|
|
|
|
|
# #########################################################################
|
|
# dvc
|
|
# #########################################################################
|
|
.PHONY: dvc
|
|
dvc/configure: dvc/configure.ac
|
|
cd $(@D) && autoreconf
|
|
|
|
dvc/Makefile: dvc/configure Makefile
|
|
cd $(@D) && ./configure\
|
|
--prefix=$(LISP_DIR)/dvc\
|
|
--bindir=$(BIN_DIR)\
|
|
--infodir=$(INFO_DIR)\
|
|
--with-lispdir=$(LISP_DIR)/dvc\
|
|
|
|
dvc: dvc/Makefile
|
|
-install-info --info-dir=$(INFO_DIR) --remove $(INFO_DIR)/dvc.info
|
|
$(MAKE) -C $(DIR-$@) clean
|
|
$(MAKE) -C $(DIR-$@) all install\
|
|
EMACS="'$(EMACS)' --eval '(setq vc-handled-backends nil)'"\
|
|
|
|
|
|
# #########################################################################
|
|
# org-mode
|
|
# #########################################################################
|
|
.PHONY: org-mode
|
|
org-mode:
|
|
-install-info --info-dir=$(INFO_DIR) --remove $(INFO_DIR)/org
|
|
$(MAKE) -C $(DIR-$@) cleanall\
|
|
prefix=$(DOT_DIR)\
|
|
infodir=$(INFO_DIR)\
|
|
lispdir=$(LISP_DIR)/org-mode\
|
|
datadir=$(DOT_DIR)/var/share
|
|
$(MAKE) -C $(DIR-$@) install install-info doc\
|
|
EMACS="'$(EMACS)' --eval '(setq vc-handled-backends nil)'"\
|
|
prefix=$(DOT_DIR)\
|
|
infodir=$(INFO_DIR)\
|
|
lispdir=$(LISP_DIR)/org-mode\
|
|
datadir=$(DOT_DIR)/var/share
|
|
|
|
|
|
# #########################################################################
|
|
# apel
|
|
# #########################################################################
|
|
.PHONY: apel
|
|
apel:
|
|
mv $(DIR-$@)/APEL-CFG $(DIR-$@)/APEL-CFG.org
|
|
gsed\
|
|
-e '/setq APEL_DIR \"~/s@^[; ]*@@'\
|
|
-e '/setq EMU_DIR \"~/s@^[; ]*@@'\
|
|
-e 's@^\([^;].*~\)/lib/emacs@\1/.emacs.d@'\
|
|
-e 's@^\([^;].*\)/lisp/emu@\1/lisp/apel@'\
|
|
$(DIR-$@)/APEL-CFG.org > $(DIR-$@)/APEL-CFG
|
|
$(MAKE) -C $(DIR-$@) install\
|
|
EMACS="'$(EMACS)'"\
|
|
LISPDIR=$(LISP_DIR)
|
|
echo diff -u $(DIR-$@)/APEL-CFG.org $(DIR-$@)/APEL-CFG||exit 0&&exit 0
|
|
mv $(DIR-$@)/APEL-CFG.org $(DIR-$@)/APEL-CFG
|
|
|
|
|
|
# #########################################################################
|
|
# flim
|
|
# #########################################################################
|
|
.PHONY: flim
|
|
flim:
|
|
$(MAKE) -C $(DIR-$@) install\
|
|
EMACS="'$(EMACS)'"\
|
|
PACKAGEDIR=$(DOT_DIR)\
|
|
PREFIX=$(LISP_DIR)\
|
|
LISPDIR=$(LISP_DIR)
|
|
|
|
|
|
# #########################################################################
|
|
# semi
|
|
# #########################################################################
|
|
.PHONY: semi
|
|
semi:
|
|
$(MAKE) -C $(DIR-$@) install\
|
|
EMACS="'$(EMACS)'"\
|
|
PACKAGEDIR=$(DOT_DIR)\
|
|
PREFIX=$(LISP_DIR)\
|
|
LISPDIR=$(LISP_DIR)
|
|
|
|
|
|
# #########################################################################
|
|
# wanderlust
|
|
# #########################################################################
|
|
.PHONY: wanderlust
|
|
wanderlust:
|
|
mv $(DIR-$@)/WL-CFG $(DIR-$@)/WL-CFG.org
|
|
gsed -e '/setq load-path/,/^ *$$/s@^;*@@'\
|
|
-e 's@/usr/local/share/mule/site-@~/.emacs.d/@'\
|
|
-e '/wl-\(install\|info\|news\)/s@^;\+@@'\
|
|
-e 's@\"ja\" \"en\"@\"en\"@'\
|
|
$(DIR-$@)/WL-CFG.org > $(DIR-$@)/WL-CFG
|
|
$(MAKE) -C $(DIR-$@) install install-info\
|
|
EMACS="'$(EMACS)'"\
|
|
LISPDIR=$(LISP_DIR)\
|
|
INFODIR=$(INFO_DIR)\
|
|
PIXMAPDIR=$(LISP_DIR)/wl/icons
|
|
echo diff -u $(DIR-$@)/WL-CFG.org $(DIR-$@)/WL-CFG||exit 0&&exit 0
|
|
mv $(DIR-$@)/WL-CFG.org $(DIR-$@)/WL-CFG
|
|
|
|
|
|
# #########################################################################
|
|
# emacs-jabber
|
|
# #########################################################################
|
|
.PHONY: emacs-jabber
|
|
$(ELISP_DIR)/emacs-jabber/configure:
|
|
cd $(@D) && autoreconf -i
|
|
|
|
$(ELISP_DIR)/emacs-jabber/Makefile: $(ELISP_DIR)/emacs-jabber/configure
|
|
cd $(@D) && ./configure
|
|
|
|
emacs-jabber: $(ELISP_DIR)/emacs-jabber/Makefile
|
|
$(MAKE) -C $(DIR-$@) install\
|
|
EMACS="'$(EMACS)'"\
|
|
prefix=$(DOT_DIR)\
|
|
lispdir=$(LISP_DIR)/jabber\
|
|
infodir=$(INFO_DIR)\
|
|
libexecdir=$(LISP_DIR)/jabber/bin
|
|
|
|
|
|
# #########################################################################
|
|
# bbdb
|
|
# #########################################################################
|
|
.PHONY: bbdb
|
|
$(ELISP_DIR)/bbdb/configure :\
|
|
$(ELISP_DIR)/bbdb/configure.ac
|
|
cd $(ELISP_DIR)/bbdb && autoconf
|
|
|
|
$(ELISP_DIR)/bbdb/Makefile :\
|
|
$(ELISP_DIR)/bbdb/configure\
|
|
$(ELISP_DIR)/bbdb/Makefile.in\
|
|
$(ELISP_DIR)/bbdb/doc/Makefile.in\
|
|
$(ELISP_DIR)/bbdb/lisp/Makefile.in\
|
|
$(ELISP_DIR)/bbdb/tex/Makefile.in
|
|
cd $(@D) && ./configure\
|
|
--datarootdir=$(DOT_DIR)\
|
|
--with-lispdir=$(LISP_DIR)/bbdb\
|
|
--with-texmf-dir=$(DOT_DIR)/var/texmf
|
|
bbdb: $(ELISP_DIR)/bbdb/Makefile
|
|
$(MAKE) -C $(DIR-$@) install EMACS='"$(EMACS)"'
|
|
|
|
|
|
# #########################################################################
|
|
# w3
|
|
# #########################################################################
|
|
.PHONY: w3
|
|
w3:
|
|
$(MAKE) -C $(DIR-$@) install\
|
|
EMACS="'$(EMACS)'"\
|
|
prefix=$(DOT_DIR)\
|
|
lispdir=$(LISP_DIR)/w3\
|
|
infodir=$(INFO_DIR)\
|
|
libexecdir=$(LISP_DIR)/w3/bin\
|
|
datadir=$(DOT_DIR)/var/share\
|
|
|
|
|
|
# #########################################################################
|
|
# include .el pattern rules
|
|
# #########################################################################
|
|
$(call include-once,$(MK_DIR)/emacsd-rules.mk)
|
|
|
|
# Local Variables:
|
|
# tab-width: 2
|
|
# End:
|