Remove obsolete liece pkg
[packages] / xemacs-packages / riece / Makefile
1 # Makefile for Riece lisp code
2
3 # This file is part of XEmacs.
4
5 # XEmacs is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by the
7 # Free Software Foundation; either version 2, or (at your option) any
8 # later version.
9
10 # XEmacs is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13 # for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with XEmacs; see the file COPYING.  If not, write to
17 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 # Boston, MA 02111-1307, USA.
19
20 # This XEmacs package contains the riece IRC client package
21
22 VERSION = 1.26
23 AUTHOR_VERSION = 3.1.2
24 MAINTAINER = Daiki Ueno <ueno@unixuser.org>
25 PACKAGE = riece
26 PKG_TYPE = regular
27 REQUIRES = xemacs-base mail-lib bbdb
28 CATEGORY = standard
29
30 include ../../Local.rules.inc
31
32 ELCS = lisp/riece.elc lisp/riece-000.elc lisp/riece-200.elc            \
33 lisp/riece-300.elc lisp/riece-400.elc lisp/riece-500.elc               \
34 lisp/riece-addon-modules.elc lisp/riece-addon.elc lisp/riece-alias.elc \
35 lisp/riece-async.elc lisp/riece-biff.elc lisp/riece-button.elc         \
36 lisp/riece-cache.elc lisp/riece-channel.elc lisp/riece-coding.elc      \
37 lisp/riece-commands.elc lisp/riece-compat.elc lisp/riece-complete.elc  \
38 lisp/riece-ctcp.elc lisp/riece-ctlseq.elc lisp/riece-debug.elc         \
39 lisp/riece-develop.elc lisp/riece-display.elc lisp/riece-doctor.elc    \
40 lisp/riece-epg.elc lisp/riece-eval-ruby.elc lisp/riece-eval.elc        \
41 lisp/riece-filter.elc lisp/riece-foolproof.elc lisp/riece-globals.elc  \
42 lisp/riece-google.elc lisp/riece-guess.elc lisp/riece-handle.elc       \
43 lisp/riece-hangman.elc lisp/riece-highlight.elc lisp/riece-history.elc \
44 lisp/riece-icon.elc lisp/riece-identity.elc lisp/riece-ignore.elc      \
45 lisp/riece-irc.elc lisp/riece-kakasi.elc lisp/riece-keepalive.elc      \
46 lisp/riece-keyword.elc lisp/riece-layout.elc lisp/riece-log.elc        \
47 lisp/riece-lsdb.elc lisp/riece-menu.elc lisp/riece-message.elc         \
48 lisp/riece-mini.elc lisp/riece-misc.elc lisp/riece-mode.elc            \
49 lisp/riece-naming.elc lisp/riece-options.elc                           \
50 lisp/riece-package-info.elc lisp/riece-rdcc.elc lisp/riece-ruby.elc    \
51 lisp/riece-server.elc lisp/riece-shrink-buffer.elc                     \
52 lisp/riece-signal.elc lisp/riece-toolbar.elc lisp/riece-unread.elc     \
53 lisp/riece-url.elc lisp/riece-user.elc lisp/riece-version.elc          \
54 lisp/riece-xemacs.elc lisp/riece-xface.elc lisp/riece-xfaceb.elc       \
55 lisp/riece-yank.elc
56
57 EXTRA_SOURCES = lisp/riece-emacs.el lisp/riece-ndcc.el \
58         lisp/riece-skk-kakutei.el lisp/riece-mcat.el \
59         lisp/riece-mcat-japanese.el lisp/riece-package-info.el.in \
60         lisp/url-riece.el
61 AUTOLOAD_PATH = lisp
62
63 EXPLICIT_DOCS = doc/riece-en.texi
64 ifeq ($(BUILD_WITHOUT_MULE),)
65 COMPILE_INFO_AS_MULE = t
66 EXPLICIT_DOCS += doc/riece-ja.texi
67 ELCS += lisp/riece-skk-kakutei.elc lisp/riece-mcat.elc \
68         lisp/riece-mcat-japanese.elc
69 endif
70
71 PRELOADS = -eval \("push \"./lisp\" load-path"\)
72
73 DATA_FILES = AUTHORS NEWS NEWS.ja README README.ja doc/HACKING doc/HACKING.ja
74 DATA_DEST = $(PACKAGE)
75
76 DATA_1_FILES = $(wildcard lisp/*.xpm)
77 DATA_1_DEST = $(PACKAGE)
78
79 DATA_2_FILES = $(wildcard lisp/*.rb)
80 DATA_2_DEST = $(PACKAGE)
81
82 include ../../XEmacs.rules