Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/net
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv14640
Added Files:
erc.info erc.patch
Log Message:
Update from tracker #1504499
--- NEW FILE: erc.info ---
Package: erc
Depends: emacsen
Description: Use IRC within emacs
Homepage: http://www.emacswiki.org/cgi-bin/wiki/EmacsIRCClient
Version: 5.1.2
Revision: 1
Maintainer: Jesse Alama <[EMAIL PROTECTED]>
Source: mirror:sourceforge:%n/%n-%v.tar.gz
Source-MD5: 1c79609f8597bc158785487f9795dd78
License: GPL
DocFiles: AUTHORS CREDITS ChangeLog ChangeLog.2001 ChangeLog.2002
ChangeLog.2003 ChangeLog.2004 ChangeLog.2005 HISTORY NEWS README servers.pl
fink/README.fink fink/erc.copyright
InfoDocs: erc
PatchScript: sed 's|@PREFIX@|%p|g' < %a/%n.patch | patch -p1
CompileScript: makeinfo erc.texi
InstallScript: <<
mkdir -p %i/share/emacs/site-lisp/erc
install -m 644 *.el %i/share/emacs/site-lisp/erc
install -m 644 erc-auto.in %i/share/emacs/site-lisp/erc
install -m 644 Makefile %i/share/emacs/site-lisp/erc
mkdir -p %i/share/emacs/site-lisp/erc/images
install -m 644 images/*.png %i/share/emacs/site-lisp/erc/images
mkdir -p %i/share/info
install -m 644 erc.info %i/share/info/erc
mkdir -p %i/lib/emacsen-common/packages/install
mkdir -p %i/lib/emacsen-common/packages/remove
install -m 755 fink/emacsen-install %i/lib/emacsen-common/packages/install/%n
install -m 755 fink/emacsen-remove %i/lib/emacsen-common/packages/remove/%n
<<
PostInstScript: %p/lib/emacsen-common/emacs-package-install %n
PreRmScript: %p/lib/emacsen-common/emacs-package-remove %n
DescDetail: <<
ERC is an advanced IRC client for emacsen. It provides a number of
convenient features and extensions for various other emacs packages
(for example, emacs-chess and the bbdb).
<<
DescUsage: <<
The function `erc-select' is the main entry point into the ERC system.
ERC's emacs customization group is `erc'. Thus, to begin customizing
ERC, execute the key sequence `M-x customize-group RET erc RET'.
<<
--- NEW FILE: erc.patch ---
diff -Naur --exclude='*~' erc-5.1.2/fink/README.fink
erc-5.1.2.fink/fink/README.fink
--- erc-5.1.2/fink/README.fink 1969-12-31 16:00:00.000000000 -0800
+++ erc-5.1.2.fink/fink/README.fink 2006-06-11 14:35:11.000000000 -0700
@@ -0,0 +1,11 @@
+To use erc, add the form
+
+(require 'erc)
+
+to your emacs initialization file. The main entry point into the
+system is the function `erc-select'.
+
+ERC is currently not compiled for XEmacs, since xemacs does not
+register itself with emacsen-common via emacs-install (as of December
+14, 2005). However, ERC for XEmacs can be obtained using the XEmacs
+package system. (That package may not correspond to version 5.1.2.)
diff -Naur --exclude='*~' erc-5.1.2/fink/emacsen-install
erc-5.1.2.fink/fink/emacsen-install
--- erc-5.1.2/fink/emacsen-install 1969-12-31 16:00:00.000000000 -0800
+++ erc-5.1.2.fink/fink/emacsen-install 2006-06-11 14:46:33.000000000 -0700
@@ -0,0 +1,45 @@
+#!/bin/bash -e
+#
+# install file for the fink erc emacs package.
+
+set -o posix
+
+FLAVOR=${1}
+
+echo >&2 "install/erc: Handling install of emacsen flavor ${FLAVOR}"
+
+if [ ${FLAVOR} == emacs20 ]
+then
+ echo "install/erc: Skipping unsupported flavor ${FLAVOR}"
+ exit 0
+fi
+
+if [ ${FLAVOR} == emacs ]
+then
+ echo "install/erc: Done."
+ exit 0
+fi
+
+echo >&2 -n "install/erc: Byte-compiling for ${FLAVOR}..."
+mkdir -p @PREFIX@/share/${FLAVOR}/site-lisp/erc;
+for i in erc-auto.el erc-autoaway.el erc-autojoin.el erc-backend.el
erc-bbdb.el erc-button.el erc-chess.el erc-compat.el erc-complete.el erc-dcc.el
erc-ezbounce.el erc-fill.el erc-goodies.el erc-ibuffer.el erc-identd.el
erc-imenu.el erc-lang.el erc-list.el erc-log.el erc-maint.el erc-match.el
erc-menu.el erc-nets.el erc-netsplit.el erc-nicklist.el erc-nickserv.el
erc-notify.el erc-page.el erc-pcomplete.el erc-replace.el erc-ring.el
erc-sound.el erc-speak.el erc-speedbar.el erc-spelling.el erc-stamp.el
erc-track.el erc-truncate.el erc-viper.el erc-xdcc.el erc.el Makefile ; do
+ ln -s @PREFIX@/share/emacs/site-lisp/erc/${i}
@PREFIX@/share/${FLAVOR}/site-lisp/erc/${i};
+done
+
+mkdir -p @PREFIX@/share/${FLAVOR}/site-lisp/erc/images;
+for i in icq-offline.png icq-online.png irc-offline.png irc-online.png
msn-offline.png msn-online.png; do
+ ln -s @PREFIX@/share/emacs/site-lisp/erc/images/${i}
@PREFIX@/share/${FLAVOR}/site-lisp/erc/images/${i};
+done
+
+cd @PREFIX@/share/${FLAVOR}/site-lisp/erc;
+
+(make EMACS=${FLAVOR} lisp --keep-going 2>&1) | gzip -9qf >
@PREFIX@/share/doc/erc/CompilationLog-${FLAVOR}.gz
+
+rm -f @PREFIX@/share/${FLAVOR}/site-lisp/erc/Makefile;
+rm -f @PREFIX@/share/${FLAVOR}/site-lisp/erc/erc-auto.in
+rm -f @PREFIX@/share/${FLAVOR}/site-lisp/erc/erc-auto.el~;
+
+echo >&2 "done."
+echo >&2 "install/erc: Compilation log saved in
@PREFIX@/share/doc/erc/CompilationLog-${FLAVOR}.gz."
+
+exit 0
diff -Naur --exclude='*~' erc-5.1.2/fink/emacsen-remove
erc-5.1.2.fink/fink/emacsen-remove
--- erc-5.1.2/fink/emacsen-remove 1969-12-31 16:00:00.000000000 -0800
+++ erc-5.1.2.fink/fink/emacsen-remove 2005-12-14 16:42:34.000000000 -0800
@@ -0,0 +1,21 @@
+#!/bin/bash -e
+#
+# This is the Fink version of the erc emacs package.
+set -o posix
+
+FLAVOR=${1}
+
+echo "remove/erc: Handling removal for emacsen flavor ${FLAVOR}"
+
+if [ ${FLAVOR} == emacs20 ]
+then
+ echo "remove/erc: Skipping unsupported flavor ${FLAVOR}"
+ exit 0
+fi
+
+echo >&2 -n "remove/erc: Purging compilation log and byte-compiled files for
${FLAVOR}..."
+rm -f @PREFIX@/share/doc/erc/CompilationLog-${FLAVOR}.gz
+rm -Rf @PREFIX@/share/${FLAVOR}/site-lisp/erc
+echo >&2 "done."
+
+exit 0
diff -Naur --exclude='*~' erc-5.1.2/fink/erc.copyright
erc-5.1.2.fink/fink/erc.copyright
--- erc-5.1.2/fink/erc.copyright 1969-12-31 16:00:00.000000000 -0800
+++ erc-5.1.2.fink/fink/erc.copyright 2005-12-15 20:38:23.000000000 -0800
@@ -0,0 +1,55 @@
+This package was finkified by Jesse Alama <[EMAIL PROTECTED]>
+
+It was downloaded from
+ http://sourceforge.net/projects/erc/
+
+Upstream Authors: Alexander L. Belikoff ([EMAIL PROTECTED]),
+ Sergey Berezin ([EMAIL PROTECTED]),
+ Mario Lang ([EMAIL PROTECTED]),
+ Alex Schroeder ([EMAIL PROTECTED]),
+ Gergely Nagy ([EMAIL PROTECTED]),
+ Andreas Fuchs ([EMAIL PROTECTED]),
+ Tijs van Bakel ([EMAIL PROTECTED]),
+ Brian P Templeton ([EMAIL PROTECTED]),
+ John Wiegley ([EMAIL PROTECTED]),
+ Diane Murray ([EMAIL PROTECTED]),
+ Benjamin Drieu ([EMAIL PROTECTED]),
+ Jorgen Schaefer ([EMAIL PROTECTED]),
+ Francis Litterio ([EMAIL PROTECTED]),
+ Damien Elmes ([EMAIL PROTECTED]),
+ Lawrence Mitchell ([EMAIL PROTECTED]),
+ Sandra Jean Chua ([EMAIL PROTECTED]),
+ Jeremy Bertram Maitin-Shepard ([EMAIL PROTECTED]),
+ Johan Bockgard ([EMAIL PROTECTED]),
+ Edward O'Connor ([EMAIL PROTECTED]),
+ Brian Palmer ([EMAIL PROTECTED]),
+ Adrian Aichner ([EMAIL PROTECTED]),
+ Michael Olson ([EMAIL PROTECTED])
+
+Copyright:
+
+ Copyright (C) 1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,
+ 2003,2004,2005 Free Software Foundation, Inc.
+ Copyright (C) 2001 Tijs van Bakel
+ Copyright (C) 2001,2002 Gergely Nagy
+ Copyright (C) 2003,2004 Adrian Aichner
+ Copyright (C) 2003 Arne Schwabe
+ Copyright (C) 2003,2004 Jeremy Bertram Maitin-Shepard
+ Copyright (C) 2004 Brian Palmer
+
+ This package 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; version 2 dated June, 1991.
+
+ This package 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.
+
+ You should have received a copy of the GNU General Public License
+ along with this package; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ 02111-1307, USA.
+
+The complete text of the GNU General Public License can be found in
[EMAIL PROTECTED]@/share/doc/fink/COPYING'.
_______________________________________________
Fink-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fink-commits