From 5bb6beb42b86a255991f29fc2a4faabe93d1991c Mon Sep 17 00:00:00 2001 From: Torsten Hilbrich Date: Fri, 14 Jun 2002 19:31:00 +0200 Subject: Imported version 1.8.2 from tarball fixed Makefile --- Makefile | 98 ++++++++++++++++++++++++++++------------ deb/README.debian | 10 +++++ deb/changelog | 122 ++++++++++++++++++++++++++++++++++++++++++++++++++ deb/changelog~ | 116 +++++++++++++++++++++++++++++++++++++++++++++++ deb/control | 18 ++++++++ deb/copyright | 13 ++++++ deb/dirs | 5 +++ deb/files | 1 + deb/install.debian | 30 +++++++++++++ deb/postinst | 6 +++ deb/prerm | 5 +++ deb/remove.debian | 17 +++++++ deb/rules | 53 ++++++++++++++++++++++ debian/README.debian | 10 ----- debian/changelog | 116 ----------------------------------------------- debian/control | 18 -------- debian/copyright | 13 ------ debian/dirs | 5 --- debian/files | 1 - debian/install.debian | 30 ------------- debian/postinst | 6 --- debian/prerm | 5 --- debian/remove.debian | 17 ------- debian/rules | 53 ---------------------- 24 files changed, 466 insertions(+), 302 deletions(-) create mode 100644 deb/README.debian create mode 100644 deb/changelog create mode 100644 deb/changelog~ create mode 100644 deb/control create mode 100644 deb/copyright create mode 100644 deb/dirs create mode 100644 deb/files create mode 100755 deb/install.debian create mode 100755 deb/postinst create mode 100755 deb/prerm create mode 100755 deb/remove.debian create mode 100755 deb/rules delete mode 100644 debian/README.debian delete mode 100644 debian/changelog delete mode 100644 debian/control delete mode 100644 debian/copyright delete mode 100644 debian/dirs delete mode 100644 debian/files delete mode 100755 debian/install.debian delete mode 100755 debian/postinst delete mode 100755 debian/prerm delete mode 100755 debian/remove.debian delete mode 100755 debian/rules diff --git a/Makefile b/Makefile index b562a0a..6005920 100644 --- a/Makefile +++ b/Makefile @@ -1,42 +1,84 @@ -# Makefile for dictionary code +# -*- Makefile -*- $Id: Makefile.upstream,v 1.5 2002/05/17 17:48:04 torsten Exp $ -# This file is part of XEmacs. +EMACS=emacs -# XEmacs is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by the -# Free Software Foundation; either version 2, or (at your option) any -# later version. +VERSION=1.8 +PACKAGE=dictionary +TYPE=comm +XEMACS-PACKAGE=$(PACKAGE)-$(VERSION)-pkg.tar.gz -# XEmacs is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -# for more details. +SOURCES=dictionary.el connection.el link.el +COMPILED=dictionary.elc connection.elc link.elc -# You should have received a copy of the GNU General Public License -# along with XEmacs; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. +.SUFFIXES: .elc .el -VERSION = 1.10 -AUTHOR_VERSION = 1.8 -MAINTAINER = Torsten Hilbrich -PACKAGE = dictionary -PKG_TYPE = regular -REQUIRES = xemacs-base -CATEGORY = standard +.el.elc: + $(EMACS) -q -no-site-file -no-init-file -batch -l lpath.el \ + -f batch-byte-compile $< -ELCS = dictionary.elc connection.elc link.elc +.PHONY: all +all: $(COMPILED) -EXTRA_SOURCES = README GPL +.PHONY: debian +debian: + [ -x debian ] || ln -s deb debian + @if [ -x /usr/bin/fakeroot ]; then \ + dpkg-buildpackage -us -uc -rfakeroot; \ + elif [ `id -u` -ne 0 ]; then \ + echo "You are not root and fakeroot is not installed, aborting"; \ + exit 1; \ + else \ + dpkg-buildpackage -us -uc; \ + fi + @echo "You can now install the debian package, the previous output tells" + @echo "you its location (probably stored in ..)" + @echo + @echo "Please note, this debian package is unofficial, report bugs" + @echo "to me only, not to the Debian Bugtracking System." -GENERATED += custom-load.elc +.PHONY: package +package: $(XEMACS-PACKAGE) -include ../../XEmacs.rules +$(XEMACS-PACKAGE): $(COMPILED) + @case $(EMACS) in emacs*) printf "\aNote, packages work with XEmacs 21 only, hope you know what you are doing\n\n";; esac + @mkdir -p lisp/$(PACKAGE) + @mkdir -p pkginfo + @printf ";;;###autoload\n(package-provide '$(PACKAGE)\n:version $(VERSION)\n:type '$(TYPE))\n" > lisp/$(PACKAGE)/_pkg.el + @rm -f lisp/$(PACKAGE)/auto-autoloads.el lisp/$(PACKAGE)/custom-load.el + @cp $(SOURCES) $(COMPILED) lisp/$(PACKAGE) + @cd lisp && \ + $(EMACS) -vanilla -batch -l autoload -f batch-update-directory $(PACKAGE) && \ + $(EMACS) -vanilla -batch -l cus-dep -f Custom-make-dependencies $(PACKAGE) && \ + $(EMACS) -vanilla -batch -f batch-byte-compile $(PACKAGE)/auto-autoloads.el $(PACKAGE)/custom-load.el + @touch pkginfo/MANIFEST.$(PACKAGE) + @find lisp pkginfo -type f > pkginfo/MANIFEST.$(PACKAGE) + @tar cf - pkginfo lisp | gzip -c > $(XEMACS-PACKAGE) -all:: $(ELCS) auto-autoloads.elc custom-load.elc +.PHONY: package-install +package-install: package + @if [ `id -u` -ne 0 ]; then printf "\aWarning, you are not root; the installation might fail\n\n"; fi + @$(EMACS) -vanilla -batch -l install-package.el -f install-package `pwd`/$(XEMACS-PACKAGE) -srckit: srckit-std +.PHONY: view-info +view-info: info + info doc/dictionary.info -binkit: binkit-common +.PHONY: doc +doc: info html +.PHONY: info +info: doc/dictionary.info +doc/dictionary.info: doc/dictionary.texi + cd doc && makeinfo --output dictionary.info dictionary + +.PHONY: html +html: doc/dictionary + +doc/dictionary: doc/dictionary.texi + cd doc && makeinfo --html dictionary + +.PHONY: clean +clean: + rm -f $(XEMACS-PACKAGE) $(COMPILED) build + rm -rf debian/tmp lisp pkginfo diff --git a/deb/README.debian b/deb/README.debian new file mode 100644 index 0000000..524ea98 --- /dev/null +++ b/deb/README.debian @@ -0,0 +1,10 @@ +dictionary for Debian +---------------------- + +This is an unofficial debian package for the dictionary client found +at http://www.myrkr.in-berlin.de/dictionary.html. + +Instructions on using this package can be found in the +/usr/share/doc/dictionary/README.gz file or in the above location. + +Torsten Hilbrich , Sun, 13 May 2001 09:55:20 +0200 diff --git a/deb/changelog b/deb/changelog new file mode 100644 index 0000000..425d785 --- /dev/null +++ b/deb/changelog @@ -0,0 +1,122 @@ +dictionary (1.8-2) unstable; urgency=low + + * fixed Makefile + + -- Torsten Hilbrich Fri, 14 Jun 2002 19:31:53 +0200 + +dictionary (1.8-1) unstable; urgency=low + + * added search for similiar words when the searched word is not found. + + -- Torsten Hilbrich Wed, 20 Mar 2002 21:27:54 +0100 + +dictionary (1.7.4-1) unstable; urgency=low + + * dictionary.el (dictionary-do-matching): removed quotes around + dictionary name and match strategy + + * dictionary.el (dictionary-do-search): removed quotes around dictionary + name + + * dictionary.el (dictionary-display-more-info): removed quotes around + dictionary name + + This problem (occurring with jdictd) was reported by E C Vijil + + -- Torsten Hilbrich Fri, 15 Mar 2002 21:19:23 +0100 + +dictionary (1.7.3-1) unstable; urgency=low + + * dictionary.el (dictionary-default-popup-strategy): added this + variable and changed dictionary-popup-matching-words to use + this as matching strategy (suggested by Renaud Pons) + + -- Torsten Hilbrich Tue, 29 Jan 2002 10:27:49 +0100 + +dictionary (1.7.2-1) unstable; urgency=low + + * link.el (link-initialize-keymap): fixed keybinding bug (reported by + David A. Panariti) + + -- Torsten Hilbrich Fri, 21 Dec 2001 18:50:20 +0100 + +dictionary (1.7.1-1) unstable; urgency=low + + * Fixed bug in dictionary-coding-system, the detection of non-mule + Emacsen was not correct + + -- Torsten Hilbrich Sat, 15 Dec 2001 14:29:29 +0100 + +dictionary (1.7-1) unstable; urgency=low + + * Added first support for dictionaries with different encodings than + utf-8. + + -- Torsten Hilbrich Sun, 9 Dec 2001 14:21:57 +0100 + +dictionary (1.6-1) unstable; urgency=low + + * added HTTP proxy support using the CONNECT request type + + -- Torsten Hilbrich Tue, 4 Dec 2001 20:22:03 +0100 + +dictionary (1.5.3-1) unstable; urgency=low + + * changed name of "select dictionary" button + * "select dictionary" and "select matching strategie" now has a better + feedback (by returning to the previous state) + * added support for non-colored display, the links are surrounded by + braces + + -- Torsten Hilbrich Sun, 14 Oct 2001 16:08:12 +0200 + +dictionary (1.5.2-1) unstable; urgency=low + + * popup menu now correctly records the selected window + + -- Torsten Hilbrich Sun, 2 Sep 2001 10:40:59 +0200 + +dictionary (1.5.1-1) unstable; urgency=low + + * corrected bug with dictionary-previous (found by Rui Zhu) + * corrected key bindings in link.el + + -- Torsten Hilbrich Tue, 17 Jul 2001 20:47:58 +0200 + +dictionary (1.5-1) unstable; urgency=low + + * added tooltip support for emacs + + -- Torsten Hilbrich Sun, 8 Jul 2001 21:01:12 +0200 + +dictionary (1.4.1-1) unstable; urgency=low + + * changed recognition of utf-8 support (suggested by Enrico Scholz) + + -- Torsten Hilbrich Fri, 6 Jul 2001 23:08:48 +0200 + +dictionary (1.4-1) unstable; urgency=low + + * support for popup menus + + -- Torsten Hilbrich Fri, 6 Jul 2001 19:54:54 +0200 + +dictionary (1.3.3-1) unstable; urgency=low + + * added support for xemacs 21 packages (no changes for debian) + + -- Torsten Hilbrich Wed, 27 Jun 2001 17:56:44 +0200 + +dictionary (1.3.2-1) unstable; urgency=low + + * removed use of set-text-properties in link.el + + -- Torsten Hilbrich Fri, 22 Jun 2001 21:39:47 +0200 + +dictionary (1.3.1-1) unstable; urgency=low + + * Initial release. + + -- Torsten Hilbrich Sun, 13 May 2001 09:55:20 +0200 + + diff --git a/deb/changelog~ b/deb/changelog~ new file mode 100644 index 0000000..86c3080 --- /dev/null +++ b/deb/changelog~ @@ -0,0 +1,116 @@ +dictionary (1.8-1) unstable; urgency=low + + * added search for similiar words when the searched word is not found. + + -- Torsten Hilbrich Wed, 20 Mar 2002 21:27:54 +0100 + +dictionary (1.7.4-1) unstable; urgency=low + + * dictionary.el (dictionary-do-matching): removed quotes around + dictionary name and match strategy + + * dictionary.el (dictionary-do-search): removed quotes around dictionary + name + + * dictionary.el (dictionary-display-more-info): removed quotes around + dictionary name + + This problem (occurring with jdictd) was reported by E C Vijil + + -- Torsten Hilbrich Fri, 15 Mar 2002 21:19:23 +0100 + +dictionary (1.7.3-1) unstable; urgency=low + + * dictionary.el (dictionary-default-popup-strategy): added this + variable and changed dictionary-popup-matching-words to use + this as matching strategy (suggested by Renaud Pons) + + -- Torsten Hilbrich Tue, 29 Jan 2002 10:27:49 +0100 + +dictionary (1.7.2-1) unstable; urgency=low + + * link.el (link-initialize-keymap): fixed keybinding bug (reported by + David A. Panariti) + + -- Torsten Hilbrich Fri, 21 Dec 2001 18:50:20 +0100 + +dictionary (1.7.1-1) unstable; urgency=low + + * Fixed bug in dictionary-coding-system, the detection of non-mule + Emacsen was not correct + + -- Torsten Hilbrich Sat, 15 Dec 2001 14:29:29 +0100 + +dictionary (1.7-1) unstable; urgency=low + + * Added first support for dictionaries with different encodings than + utf-8. + + -- Torsten Hilbrich Sun, 9 Dec 2001 14:21:57 +0100 + +dictionary (1.6-1) unstable; urgency=low + + * added HTTP proxy support using the CONNECT request type + + -- Torsten Hilbrich Tue, 4 Dec 2001 20:22:03 +0100 + +dictionary (1.5.3-1) unstable; urgency=low + + * changed name of "select dictionary" button + * "select dictionary" and "select matching strategie" now has a better + feedback (by returning to the previous state) + * added support for non-colored display, the links are surrounded by + braces + + -- Torsten Hilbrich Sun, 14 Oct 2001 16:08:12 +0200 + +dictionary (1.5.2-1) unstable; urgency=low + + * popup menu now correctly records the selected window + + -- Torsten Hilbrich Sun, 2 Sep 2001 10:40:59 +0200 + +dictionary (1.5.1-1) unstable; urgency=low + + * corrected bug with dictionary-previous (found by Rui Zhu) + * corrected key bindings in link.el + + -- Torsten Hilbrich Tue, 17 Jul 2001 20:47:58 +0200 + +dictionary (1.5-1) unstable; urgency=low + + * added tooltip support for emacs + + -- Torsten Hilbrich Sun, 8 Jul 2001 21:01:12 +0200 + +dictionary (1.4.1-1) unstable; urgency=low + + * changed recognition of utf-8 support (suggested by Enrico Scholz) + + -- Torsten Hilbrich Fri, 6 Jul 2001 23:08:48 +0200 + +dictionary (1.4-1) unstable; urgency=low + + * support for popup menus + + -- Torsten Hilbrich Fri, 6 Jul 2001 19:54:54 +0200 + +dictionary (1.3.3-1) unstable; urgency=low + + * added support for xemacs 21 packages (no changes for debian) + + -- Torsten Hilbrich Wed, 27 Jun 2001 17:56:44 +0200 + +dictionary (1.3.2-1) unstable; urgency=low + + * removed use of set-text-properties in link.el + + -- Torsten Hilbrich Fri, 22 Jun 2001 21:39:47 +0200 + +dictionary (1.3.1-1) unstable; urgency=low + + * Initial release. + + -- Torsten Hilbrich Sun, 13 May 2001 09:55:20 +0200 + + diff --git a/deb/control b/deb/control new file mode 100644 index 0000000..fed4dd5 --- /dev/null +++ b/deb/control @@ -0,0 +1,18 @@ +Source: dictionary +Section: unofficial +Priority: optional +Maintainer: Torsten Hilbrich +Build-Depends: dpkg-dev, debmake +Standards-Version: 3.2.1 + +Package: dictionary +Architecture: all +Depends: emacsen +Description: dictionary client for emacs + This dictionary client provides access to a dictionary server + (as defined in RFC 2229) from within Emacs or XEmacs. + . + It supports utf-8 (currently available in Emacs 21) and allows + to follow links (marked by {braces}) within the definitions. + . + This is an unofficial debian package. diff --git a/deb/copyright b/deb/copyright new file mode 100644 index 0000000..b82cc97 --- /dev/null +++ b/deb/copyright @@ -0,0 +1,13 @@ +This package was debianized by Torsten Hilbrich on Sun, 13 May 2001 09:55:20 +0200. + +It was downloaded from http://www.myrkr.in-berlin.de/dictionary.html + +Copyright: + +dictionary is licensed under the GNU General Public License version 2 or +higher. + +On Debian systems the full text of this licence can be found +in /usr/share/common-licenses/GPL. + + diff --git a/deb/dirs b/deb/dirs new file mode 100644 index 0000000..9d129ef --- /dev/null +++ b/deb/dirs @@ -0,0 +1,5 @@ +usr/lib/emacsen-common/packages/install +usr/lib/emacsen-common/packages/remove +usr/share/doc/dictionary +usr/share/emacs/site-lisp + diff --git a/deb/files b/deb/files new file mode 100644 index 0000000..e5456d4 --- /dev/null +++ b/deb/files @@ -0,0 +1 @@ +dictionary_1.7.4-1_all.deb unofficial optional diff --git a/deb/install.debian b/deb/install.debian new file mode 100755 index 0000000..ad76efb --- /dev/null +++ b/deb/install.debian @@ -0,0 +1,30 @@ +#!/bin/sh + +PACKAGE=dictionary +FLAVOUR=$1 +ELDIR=/usr/share/emacs/site-lisp/ +ELCDIR=/usr/share/$FLAVOUR/site-lisp/ +EFLAGS="-batch -q -l lpath.el -f batch-byte-compile" +CONFFILE=${ELDIR}/${PACKAGE}-init.el +CONFDIR=/etc/$FLAVOUR/site-start.d/ + +SOURCES="dictionary.el connection.el link.el" + +case "$FLAVOUR" in + emacs) echo "install/$PACKAGE: Ignoring emacs";; + *) echo -n "install/$PACKAGE: Byte-compiling for $FLAVOUR..." + install -m 755 -d $ELCDIR + for i in $SOURCES; do cp $ELDIR/$i $ELCDIR; done + (cd $ELCDIR && \ + echo '(setq load-path (cons "." load-path))' > lpath.el + $FLAVOUR $EFLAGS $SOURCES 2>/dev/null + rm lpath.el ) + cp ${CONFFILE} ${CONFDIR}/50${PACKAGE}.el + cd $ELCDIR + for i in $SOURCES; do rm -f $ELCDIR/*.el; done + echo " done." + ;; +esac + + + diff --git a/deb/postinst b/deb/postinst new file mode 100755 index 0000000..2333df3 --- /dev/null +++ b/deb/postinst @@ -0,0 +1,6 @@ +#!/bin/sh + +PACKAGE=dictionary + +/usr/lib/emacsen-common/emacs-package-install $PACKAGE + diff --git a/deb/prerm b/deb/prerm new file mode 100755 index 0000000..bc7ec08 --- /dev/null +++ b/deb/prerm @@ -0,0 +1,5 @@ +#!/bin/sh + +PACKAGE=dictionary + +/usr/lib/emacsen-common/emacs-package-remove $PACKAGE diff --git a/deb/remove.debian b/deb/remove.debian new file mode 100755 index 0000000..991d208 --- /dev/null +++ b/deb/remove.debian @@ -0,0 +1,17 @@ +#!/bin/sh +PACKAGE=dictionary +FLAVOUR=$1 +ELCDIR=/usr/share/$FLAVOUR/site-lisp/ + +SOURCE="connection.el dictionary.el link.el" +CONFFILE=/etc/$FLAVOUR/site-start.d/50${PACKAGE}.el + +case "$FLAVOUR" in + emacs) echo "install/$PACKAGE: Ignoring emacs";; + *) echo -n "remove/$PACKAGE: Removing for $FLAVOUR..." + cd $ELCDIR + for i in $SOURCE; do rm -f ${i}c; done + rm ${CONFFILE} + echo " done." + ;; +esac diff --git a/deb/rules b/deb/rules new file mode 100755 index 0000000..1a67696 --- /dev/null +++ b/deb/rules @@ -0,0 +1,53 @@ +#!/usr/bin/make -f +# Made with the aid of debmake, by Christoph Lameter, +# based on the sample debian/rules file for GNU hello by Ian Jackson. + +package=dictionary + +build: + $(checkdir) + + touch build + +clean: + $(checkdir) + -rm -f build + -rm -f `find . -name "*~"` + -rm -rf debian/tmp debian/files* core debian/substvars + +binary-indep: checkroot build + $(checkdir) +# There are no architecture-independent files to be uploaded +# generated by this package. If there were any they would be +# made here. + +binary-arch: checkroot build + $(checkdir) + -rm -rf debian/tmp + install -d debian/tmp + cd debian/tmp && install -d `cat ../dirs` + + cp dictionary.el connection.el link.el dictionary-init.el \ + debian/tmp/usr/share/emacs/site-lisp + cp debian/install.debian debian/tmp/usr/lib/emacsen-common/packages/install/dictionary + chmod 755 debian/tmp/usr/lib/emacsen-common/packages/install/dictionary + cp debian/remove.debian debian/tmp/usr/lib/emacsen-common/packages/remove/dictionary + chmod 755 debian/tmp/usr/lib/emacsen-common/packages/remove/dictionary + + debstd README + dpkg-gencontrol -isp + chown -R root.root debian/tmp + chmod -R go=rX debian/tmp + dpkg --build debian/tmp .. + +define checkdir + test -f debian/rules +endef + +binary: binary-indep binary-arch + +checkroot: + $(checkdir) + test root = "`whoami`" + +.PHONY: binary binary-arch binary-indep clean checkroot diff --git a/debian/README.debian b/debian/README.debian deleted file mode 100644 index 524ea98..0000000 --- a/debian/README.debian +++ /dev/null @@ -1,10 +0,0 @@ -dictionary for Debian ----------------------- - -This is an unofficial debian package for the dictionary client found -at http://www.myrkr.in-berlin.de/dictionary.html. - -Instructions on using this package can be found in the -/usr/share/doc/dictionary/README.gz file or in the above location. - -Torsten Hilbrich , Sun, 13 May 2001 09:55:20 +0200 diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index 86c3080..0000000 --- a/debian/changelog +++ /dev/null @@ -1,116 +0,0 @@ -dictionary (1.8-1) unstable; urgency=low - - * added search for similiar words when the searched word is not found. - - -- Torsten Hilbrich Wed, 20 Mar 2002 21:27:54 +0100 - -dictionary (1.7.4-1) unstable; urgency=low - - * dictionary.el (dictionary-do-matching): removed quotes around - dictionary name and match strategy - - * dictionary.el (dictionary-do-search): removed quotes around dictionary - name - - * dictionary.el (dictionary-display-more-info): removed quotes around - dictionary name - - This problem (occurring with jdictd) was reported by E C Vijil - - -- Torsten Hilbrich Fri, 15 Mar 2002 21:19:23 +0100 - -dictionary (1.7.3-1) unstable; urgency=low - - * dictionary.el (dictionary-default-popup-strategy): added this - variable and changed dictionary-popup-matching-words to use - this as matching strategy (suggested by Renaud Pons) - - -- Torsten Hilbrich Tue, 29 Jan 2002 10:27:49 +0100 - -dictionary (1.7.2-1) unstable; urgency=low - - * link.el (link-initialize-keymap): fixed keybinding bug (reported by - David A. Panariti) - - -- Torsten Hilbrich Fri, 21 Dec 2001 18:50:20 +0100 - -dictionary (1.7.1-1) unstable; urgency=low - - * Fixed bug in dictionary-coding-system, the detection of non-mule - Emacsen was not correct - - -- Torsten Hilbrich Sat, 15 Dec 2001 14:29:29 +0100 - -dictionary (1.7-1) unstable; urgency=low - - * Added first support for dictionaries with different encodings than - utf-8. - - -- Torsten Hilbrich Sun, 9 Dec 2001 14:21:57 +0100 - -dictionary (1.6-1) unstable; urgency=low - - * added HTTP proxy support using the CONNECT request type - - -- Torsten Hilbrich Tue, 4 Dec 2001 20:22:03 +0100 - -dictionary (1.5.3-1) unstable; urgency=low - - * changed name of "select dictionary" button - * "select dictionary" and "select matching strategie" now has a better - feedback (by returning to the previous state) - * added support for non-colored display, the links are surrounded by - braces - - -- Torsten Hilbrich Sun, 14 Oct 2001 16:08:12 +0200 - -dictionary (1.5.2-1) unstable; urgency=low - - * popup menu now correctly records the selected window - - -- Torsten Hilbrich Sun, 2 Sep 2001 10:40:59 +0200 - -dictionary (1.5.1-1) unstable; urgency=low - - * corrected bug with dictionary-previous (found by Rui Zhu) - * corrected key bindings in link.el - - -- Torsten Hilbrich Tue, 17 Jul 2001 20:47:58 +0200 - -dictionary (1.5-1) unstable; urgency=low - - * added tooltip support for emacs - - -- Torsten Hilbrich Sun, 8 Jul 2001 21:01:12 +0200 - -dictionary (1.4.1-1) unstable; urgency=low - - * changed recognition of utf-8 support (suggested by Enrico Scholz) - - -- Torsten Hilbrich Fri, 6 Jul 2001 23:08:48 +0200 - -dictionary (1.4-1) unstable; urgency=low - - * support for popup menus - - -- Torsten Hilbrich Fri, 6 Jul 2001 19:54:54 +0200 - -dictionary (1.3.3-1) unstable; urgency=low - - * added support for xemacs 21 packages (no changes for debian) - - -- Torsten Hilbrich Wed, 27 Jun 2001 17:56:44 +0200 - -dictionary (1.3.2-1) unstable; urgency=low - - * removed use of set-text-properties in link.el - - -- Torsten Hilbrich Fri, 22 Jun 2001 21:39:47 +0200 - -dictionary (1.3.1-1) unstable; urgency=low - - * Initial release. - - -- Torsten Hilbrich Sun, 13 May 2001 09:55:20 +0200 - - diff --git a/debian/control b/debian/control deleted file mode 100644 index fed4dd5..0000000 --- a/debian/control +++ /dev/null @@ -1,18 +0,0 @@ -Source: dictionary -Section: unofficial -Priority: optional -Maintainer: Torsten Hilbrich -Build-Depends: dpkg-dev, debmake -Standards-Version: 3.2.1 - -Package: dictionary -Architecture: all -Depends: emacsen -Description: dictionary client for emacs - This dictionary client provides access to a dictionary server - (as defined in RFC 2229) from within Emacs or XEmacs. - . - It supports utf-8 (currently available in Emacs 21) and allows - to follow links (marked by {braces}) within the definitions. - . - This is an unofficial debian package. diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index b82cc97..0000000 --- a/debian/copyright +++ /dev/null @@ -1,13 +0,0 @@ -This package was debianized by Torsten Hilbrich on Sun, 13 May 2001 09:55:20 +0200. - -It was downloaded from http://www.myrkr.in-berlin.de/dictionary.html - -Copyright: - -dictionary is licensed under the GNU General Public License version 2 or -higher. - -On Debian systems the full text of this licence can be found -in /usr/share/common-licenses/GPL. - - diff --git a/debian/dirs b/debian/dirs deleted file mode 100644 index 9d129ef..0000000 --- a/debian/dirs +++ /dev/null @@ -1,5 +0,0 @@ -usr/lib/emacsen-common/packages/install -usr/lib/emacsen-common/packages/remove -usr/share/doc/dictionary -usr/share/emacs/site-lisp - diff --git a/debian/files b/debian/files deleted file mode 100644 index e5456d4..0000000 --- a/debian/files +++ /dev/null @@ -1 +0,0 @@ -dictionary_1.7.4-1_all.deb unofficial optional diff --git a/debian/install.debian b/debian/install.debian deleted file mode 100755 index ad76efb..0000000 --- a/debian/install.debian +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh - -PACKAGE=dictionary -FLAVOUR=$1 -ELDIR=/usr/share/emacs/site-lisp/ -ELCDIR=/usr/share/$FLAVOUR/site-lisp/ -EFLAGS="-batch -q -l lpath.el -f batch-byte-compile" -CONFFILE=${ELDIR}/${PACKAGE}-init.el -CONFDIR=/etc/$FLAVOUR/site-start.d/ - -SOURCES="dictionary.el connection.el link.el" - -case "$FLAVOUR" in - emacs) echo "install/$PACKAGE: Ignoring emacs";; - *) echo -n "install/$PACKAGE: Byte-compiling for $FLAVOUR..." - install -m 755 -d $ELCDIR - for i in $SOURCES; do cp $ELDIR/$i $ELCDIR; done - (cd $ELCDIR && \ - echo '(setq load-path (cons "." load-path))' > lpath.el - $FLAVOUR $EFLAGS $SOURCES 2>/dev/null - rm lpath.el ) - cp ${CONFFILE} ${CONFDIR}/50${PACKAGE}.el - cd $ELCDIR - for i in $SOURCES; do rm -f $ELCDIR/*.el; done - echo " done." - ;; -esac - - - diff --git a/debian/postinst b/debian/postinst deleted file mode 100755 index 2333df3..0000000 --- a/debian/postinst +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -PACKAGE=dictionary - -/usr/lib/emacsen-common/emacs-package-install $PACKAGE - diff --git a/debian/prerm b/debian/prerm deleted file mode 100755 index bc7ec08..0000000 --- a/debian/prerm +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -PACKAGE=dictionary - -/usr/lib/emacsen-common/emacs-package-remove $PACKAGE diff --git a/debian/remove.debian b/debian/remove.debian deleted file mode 100755 index 991d208..0000000 --- a/debian/remove.debian +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -PACKAGE=dictionary -FLAVOUR=$1 -ELCDIR=/usr/share/$FLAVOUR/site-lisp/ - -SOURCE="connection.el dictionary.el link.el" -CONFFILE=/etc/$FLAVOUR/site-start.d/50${PACKAGE}.el - -case "$FLAVOUR" in - emacs) echo "install/$PACKAGE: Ignoring emacs";; - *) echo -n "remove/$PACKAGE: Removing for $FLAVOUR..." - cd $ELCDIR - for i in $SOURCE; do rm -f ${i}c; done - rm ${CONFFILE} - echo " done." - ;; -esac diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 1a67696..0000000 --- a/debian/rules +++ /dev/null @@ -1,53 +0,0 @@ -#!/usr/bin/make -f -# Made with the aid of debmake, by Christoph Lameter, -# based on the sample debian/rules file for GNU hello by Ian Jackson. - -package=dictionary - -build: - $(checkdir) - - touch build - -clean: - $(checkdir) - -rm -f build - -rm -f `find . -name "*~"` - -rm -rf debian/tmp debian/files* core debian/substvars - -binary-indep: checkroot build - $(checkdir) -# There are no architecture-independent files to be uploaded -# generated by this package. If there were any they would be -# made here. - -binary-arch: checkroot build - $(checkdir) - -rm -rf debian/tmp - install -d debian/tmp - cd debian/tmp && install -d `cat ../dirs` - - cp dictionary.el connection.el link.el dictionary-init.el \ - debian/tmp/usr/share/emacs/site-lisp - cp debian/install.debian debian/tmp/usr/lib/emacsen-common/packages/install/dictionary - chmod 755 debian/tmp/usr/lib/emacsen-common/packages/install/dictionary - cp debian/remove.debian debian/tmp/usr/lib/emacsen-common/packages/remove/dictionary - chmod 755 debian/tmp/usr/lib/emacsen-common/packages/remove/dictionary - - debstd README - dpkg-gencontrol -isp - chown -R root.root debian/tmp - chmod -R go=rX debian/tmp - dpkg --build debian/tmp .. - -define checkdir - test -f debian/rules -endef - -binary: binary-indep binary-arch - -checkroot: - $(checkdir) - test root = "`whoami`" - -.PHONY: binary binary-arch binary-indep clean checkroot -- cgit v1.2.3