wok diff emacs-lisp-sources/receipt @ rev 14084

Up: emacs-lisp-sources (24.2)
author Dominique Corbex <domcox@slitaz.org>
date Fri Feb 22 20:44:22 2013 +0100 (2013-02-22)
parents a91f4b450f79
children 5f1434518c87
line diff
     1.1 --- a/emacs-lisp-sources/receipt	Mon Feb 20 16:50:59 2012 -0500
     1.2 +++ b/emacs-lisp-sources/receipt	Fri Feb 22 20:44:22 2013 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="emacs-lisp-sources"
     1.7 -VERSION="23.4"
     1.8 +VERSION="24.2"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="The GNU Emacs editor - Lisp source files"
    1.11  MAINTAINER="domcox@slitaz.org"
    1.12 @@ -13,39 +13,51 @@
    1.13  genpkg_rules()
    1.14  {
    1.15  	# lisp files
    1.16 -	LISP_DIR="  lisp lisp/calc lisp/calendar lisp/cedet lisp/cedet/ede lisp/cedet/semantic \
    1.17 -				lisp/cedet/semantic/analyze lisp/cedet/semantic/bovine lisp/cedet/semantic/decorate \
    1.18 -				lisp/cedet/semantic/symref lisp/cedet/semantic/wisent lisp/emacs-lisp lisp/emulation \
    1.19 -				lisp/erc lisp/eshell lisp/gnus lisp/international lisp/language lisp/mail lisp/mh-e \
    1.20 -				lisp/net lisp/nxml lisp/obsolete lisp/org lisp/play lisp/progmodes lisp/textmodes lisp/url"
    1.21 +	LISP_DIR="lisp lisp/calc lisp/calendar lisp/cedet lisp/cedet/ede \
    1.22 +lisp/cedet/semantic lisp/cedet/semantic/analyze lisp/cedet/semantic/bovine \
    1.23 +lisp/cedet/semantic/decorate lisp/cedet/semantic/symref lisp/cedet/srecode \
    1.24 +lisp/cedet/semantic/wisent lisp/emacs-lisp lisp/emulation lisp/erc lisp/eshell \
    1.25 +lisp/gnus lisp/international lisp/language lisp/mail lisp/mh-e lisp/net \
    1.26 +lisp/nxml lisp/obsolete lisp/org lisp/play lisp/progmodes lisp/textmodes \
    1.27 +lisp/url lisp/vc"
    1.28  
    1.29  	for dir in $LISP_DIR; do
    1.30  		echo -n "Copying $dir sources"
    1.31 -		mkdir -p $fs/usr/share/$WANTED/${VERSION:0:4}/$dir && \
    1.32 -		cp $_pkg/usr/share/$WANTED/${VERSION:0:4}/$dir/*.el.gz $fs/usr/share/$WANTED/${VERSION:0:4}/$dir
    1.33 +		mkdir -p $fs/usr/share/$WANTED/$VERSION/$dir && \
    1.34 +		cp -a $_pkg/usr/share/$WANTED/$VERSION/$dir/*.el.gz \
    1.35 +			$fs/usr/share/$WANTED/$VERSION/$dir
    1.36  		status
    1.37  	done
    1.38  	# Use linux term only
    1.39  	LINUX_TERM="rxvt.el.gz tty-colors.el.gz vt100.el.gz xterm.el.gz"
    1.40  	echo -n "Copying lisp/term sources"
    1.41 -	mkdir -p $fs/usr/share/$WANTED/${VERSION:0:4}/lisp/term && \
    1.42 +	mkdir -p $fs/usr/share/$WANTED/$VERSION/lisp/term && \
    1.43  	for file in $LINUX_TERM; do
    1.44 -		cp -a $_pkg/usr/share/$WANTED/${VERSION:0:4}/lisp/term/$file $fs/usr/share/$WANTED/${VERSION:0:4}/lisp/term
    1.45 +		cp -a $_pkg/usr/share/$WANTED/$VERSION/lisp/term/$file \
    1.46 +			$fs/usr/share/$WANTED/$VERSION/lisp/term
    1.47  	done
    1.48  	status
    1.49  	# leim files
    1.50  	LEIM_FILES="leim/ja-dic leim/quail"
    1.51  	for dir in $LEIM_FILES; do
    1.52  		echo -n "Copying $dir sources"
    1.53 -		mkdir -p $fs/usr/share/$WANTED/${VERSION:0:4}/$dir && \
    1.54 -		cp $_pkg/usr/share/$WANTED/${VERSION:0:4}/$dir/*.el.gz $fs/usr/share/$WANTED/${VERSION:0:4}/$dir && \
    1.55 +		mkdir -p $fs/usr/share/$WANTED/$VERSION/$dir && \
    1.56 +		cp -a $_pkg/usr/share/$WANTED/$VERSION/$dir/*.el.gz \
    1.57 +			$fs/usr/share/$WANTED/$VERSION/$dir && \
    1.58  		status
    1.59  	done
    1.60 +	# refcards
    1.61 +	echo -n "Copying refcards sources"
    1.62 +	mkdir -p $fs/usr/share/$WANTED/$VERSION/etc/refcards
    1.63 +	cp -a $_pkg/usr/share/$WANTED/$VERSION/etc/refcards/*tex \
    1.64 +		$fs/usr/share/$WANTED/$VERSION/etc/refcards
    1.65 +	status
    1.66  	# Doc
    1.67  	echo -n "Copying doc files"
    1.68  	DOC_FILES="CONTRIBUTE DEBUG MACHINES MAILINGLISTS TODO"
    1.69  	for file in $DOC_FILES; do
    1.70 -		cp -a $_pkg/usr/share/emacs/${VERSION:0:4}/etc/$file $fs/usr/share/emacs/${VERSION:0:4}/etc
    1.71 +		cp -a $_pkg/usr/share/emacs/$VERSION/etc/$file \
    1.72 +			$fs/usr/share/emacs/$VERSION/etc
    1.73  	done
    1.74  	status
    1.75  }