Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/net
In directory vz-cvs-3.sog:/tmp/cvs-serv11310
Added Files:
erc.info erc.patch
Log Message:
sync. w/ 10.!4/stable, validated on powerpc-darwin8
--- 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.4
Revision: 4
Maintainer: Jesse Alama <[email protected]>
Source: mirror:gnu:%n/%n-%v.tar.gz
Source-MD5: 93d10ee426a4b259a2a07436f8fd71a2
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
BuildDepends: fink (>= 0.24.12)
PatchFile: %n.patch
PatchFile-MD5: 5c26cfd2d94b94b45841b959b6b39ba7
PatchScript: sed 's|@PREFIX@|%p|g' < %{PatchFile} | 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'.
<<
--- NEW FILE: erc.patch ---
diff -Naur --exclude='*~' erc-5.1.4/fink/README.fink
erc-5.1.4.fink/fink/README.fink
--- erc-5.1.4/fink/README.fink 1969-12-31 16:00:00.000000000 -0800
+++ erc-5.1.4.fink/fink/README.fink 2005-12-14 14:16:59.000000000 -0800
@@ -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.
diff -Naur --exclude='*~' erc-5.1.4/fink/emacsen-install
erc-5.1.4.fink/fink/emacsen-install
--- erc-5.1.4/fink/emacsen-install 1969-12-31 16:00:00.000000000 -0800
+++ erc-5.1.4.fink/fink/emacsen-install 2006-09-17 19:34:27.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 erc-auto.in
Makefile; do
+ ln -fs @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 -fs @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.4/fink/emacsen-remove
erc-5.1.4.fink/fink/emacsen-remove
--- erc-5.1.4/fink/emacsen-remove 1969-12-31 16:00:00.000000000 -0800
+++ erc-5.1.4.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.4/fink/erc.copyright
erc-5.1.4.fink/fink/erc.copyright
--- erc-5.1.4/fink/erc.copyright 1969-12-31 16:00:00.000000000 -0800
+++ erc-5.1.4.fink/fink/erc.copyright 2006-09-17 19:11:23.000000000 -0700
@@ -0,0 +1,56 @@
+This package was finkified by Jesse Alama <[email protected]>
+
+It was downloaded from
+ http://ftp.gnu.org/gnu/erc
+
+Upstream authors:
+
+algernon Gergely Nagy <[email protected]>
+anaran Adrian Aichner <[email protected]>
+antifuchs Andreas Fuchs <[email protected]>
+benj2 Benjamin Drieu <[email protected]>
+bojohan Johan Bockgard <[email protected]>
+bpalmer Brian Palmer <[email protected]>
+disumu Diane Murray <[email protected]>
+forcer Jorgen Schaefer <[email protected]>
+franl Francis Litterio <[email protected]>
+hober Edward O'Connor <[email protected]>
+jbms Jeremy Bertram Maitin-Shepard <[email protected]>
+jwiegley John Wiegley <[email protected]>
+kensanata Alex Schroeder <[email protected]>
+mlang Mario Lang <[email protected]>
+mtoledo Marcelo Toledo <[email protected]>
+mwolson Michael Olson <[email protected]>
+plovre Brian P Templeton <[email protected]>
+resolve Damien Elmes <[email protected]>
+sachachua Sandra Jean Chua <[email protected]>
+smoke Tijs van Bakel <[email protected]>
+wence Lawrence Mitchell <[email protected]>
+
+Copyright:
+
+ Copyright (C) 1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,
+ 2003,2004,2005,2006 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
+`@PREFIX@/share/doc/fink/COPYING'.
------------------------------------------------------------------------------
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
_______________________________________________
Fink-commits mailing list
[email protected]
http://news.gmane.org/gmane.os.apple.fink.cvs