Changeset 915

Show
Ignore:
Timestamp:
2008年01月12日 13時24分30秒 (8 months ago)
Author:
koichiro
Message:
  • setup.ini (ruby-mode-14912): [Curr] Release.
  • setup.ini (ruby): New package.
  • ruby/Makefile.pkg: Fix.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/3.00/pkginfo/ChangeLog

    r914 r915  
     12008-01-12  Koichiro Ohba  <koichiro@meadowy.org> 
     2 
     3        * setup.ini (ruby-mode-14912): [Curr] Release. 
     4        * setup.ini (ruby): New package. 
     5 
     6        * ruby/Makefile.pkg: Fix. 
     7 
    182008-01-09  Koichiro Ohba  <koichiro@meadowy.org> 
    29 
  • branches/3.00/pkginfo/meadow.defs

    r661 r915  
    44# Copyright (C) 2002 The Meadow Team 
    55# Author: KOSEKI Yoshinori <kose@meadowy.org> 
     6#         Koichiro Ohba <koichiro@meadowy.org> 
    67# 
    78 
    8 ifeq ($(shell uname),CYGWIN_NT-5.1
     9ifeq ($(findstring CYGWIN_NT, $(shell uname)),CYGWIN_NT
    910  MEADOW_VERSION = 3.00 
    1011  PREFIX = c:/Meadow 
  • branches/3.00/pkginfo/ruby/Makefile.pkg

    r914 r915  
    11####################################################### 
    2 # $Id: $ 
    32# 
    4 # Copyright (C) 2007 The Meadow Team 
     3# Copyright (C) 2008 The Meadow Team 
    54# Author: Koichiro Ohba <koichiro@meadowy.org> 
    65# 
     
    2019PKG_PATCH= 
    2120PKG_PKGINFO="URL: http://svn.ruby-lang.org/repos/ruby/trunk/misc/README" 
    22 TARGET=ruby-mode.elc inf-ruby.elc rdebug.elc ruby-electric.elc ruby-style.elc rubydb3x.elc 
    23 PKG_SRC=ruby-mode.el inf-ruby.el rdebug.el ruby-electric.el ruby-style.el rubydb3x.el 
     21TARGET=ruby-mode.elc 
    2422 
    2523######### 
     
    3634POSTARG=-eval "(texinfo-format-buffer)" -eval "(save-buffer)"  
    3735 
    38 install: $(LISPDIR)/$(TARGET) 
     36install: $(LISPDIR)/$(BASE)/$(TARGET) 
    3937 
    40 $(LISPDIR)/$(TARGET): $(PKG_SRC) 
    41         $(EMACS) -q -batch -no-site-file -eval '(byte-compile-file "$<")' 
    42         chmod 666 $<* 
    43         cp -p $<* $(LISPDIR)/ 
     38$(LISPDIR)/$(BASE)/$(TARGET): $(PKG) 
     39        (cd $(PKG); \ 
     40        $(EMACS) -q -batch -no-site-file -eval '(byte-compile-file "ruby-mode.el")'; \ 
     41        $(EMACS) -q -batch -no-site-file -eval '(setq load-path (push "." load-path))' -eval '(byte-compile-file "ruby-electric.el")'; \ 
     42        $(EMACS) -q -batch -no-site-file -eval '(setq load-path (push "." load-path))' -eval '(byte-compile-file "ruby-style.el")'; \ 
     43        $(EMACS) -q -batch -no-site-file -eval '(setq load-path (push "." load-path))' -eval '(byte-compile-file "rdebug.el")'; \ 
     44        $(EMACS) -q -batch -no-site-file -eval '(setq load-path (push "." load-path))' -eval '(byte-compile-file "rubydb3x.el")'; \ 
     45        $(EMACS) -q -batch -no-site-file -eval '(setq load-path (push "." load-path))' -eval '(byte-compile-file "inf-ruby.el")';) 
     46        if test ! -d $(LISPDIR)/$(BASE); then mkdir -p $(LISPDIR)/$(BASE); fi 
     47        cp -p $(PKG)/* $(LISPDIR)/$(BASE)/ 
    4448 
    45 .el.elc: 
    46         $(EMACS) -q -batch -no-site-file -eval '(byte-compile-file "$<")' 
    47  
    48 $(PKG_SRC): 
    49         wget $(PKG_URL)$@ 
     49$(PKG) : 
     50        svn export $(PKG_URL) $@ 
    5051 
    5152uninstall: 
    52         rm -f $(LISPDIR)/ruby* 
    53         rm -rf $(PKGINFO)/$(BASE) 
     53        rm -rf $(LISPDIR)/$(BASE) 
     54        rm -rf $(PKGINFO)/$(BASE)/ 
    5455 
    5556pkg: $(PKG)-$(PKG_VERSION)-pkg.tar.bz2 
    5657 
    57 $(PKG)-$(PKG_VERSION)-pkg.tar.bz2 : $(LISPDIR)/$(TARGET) 
     58$(PKG)-$(PKG_VERSION)-pkg.tar.bz2 : $(LISPDIR)/$(BASE)/$(TARGET) 
    5859        rm -rf $(PKGINFO)/$(BASE) 
    5960        if test ! -d $(PKGINFO)/$(BASE); then mkdir -p $(PKGINFO)/$(BASE); fi 
     
    6263        echo $(PKG_PKGINFO) > $(PKGINFO)/$(BASE)/_pkginfo 
    6364        chmod 666 $(PKGINFO)/$(BASE)/* 
    64         tar -C $(PREFIX) -cf $(basename $@) packages/pkginfo/$(BASE) $(PKG_INFO) \ 
    65                 packages/lisp/*.el packages/lisp/*.elc 
     65        tar -C $(PREFIX) -cf $(basename $@) packages/lisp/$(BASE) \ 
     66                packages/pkginfo/$(BASE) $(PKG_INFO) 
    6667        echo packages/pkginfo/$(BASE)/MANIFEST > $(PKGINFO)/$(BASE)/MANIFEST 
    6768        tar tf $(basename $@) >> $(PKGINFO)/$(BASE)/MANIFEST 
     
    7677 
    7778maintainer-clean: 
    78         rm -f $(PKG_SRC) $(TARGET
     79        $(RM) -r $(PKG
    7980 
    8081# end 
  • branches/3.00/pkginfo/ruby/auto-autoloads.el

    r914 r915  
    22;;; 
    33;;; pkginfo/ruby/auto-autoloads.el 
    4 ;;; Copyright (C) 2007 The Meadow Team 
     4;;; Copyright (C) 2008 The Meadow Team 
    55;;; Author: Koichiro Ohba <koichiro@meadowy.org> 
    66 
  • branches/3.00/pkginfo/setup.ini

    r913 r915  
    441441install: packages/sudoku-0.3-1-pkg.tar.gz 44049 83564303521128ba31bdda0840cab9c2 
    442442 
     443@ ruby-mode 
     444sdesc: "Ruby editing mode." 
     445ldesc: "Ruby editing mode." 
     446category: devel 
     447version: 14912-1 
     448install: packages/ruby-mode-14912-1-pkg.tar.bz2 31180 c12b5cfa73791f718996d90341eb2bb4 
     449 
    443450@ Emacs 
    444451sdesc: "NTEmacs i386 binary package"