Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/editors
In directory sc8-pr-cvs17:/tmp/cvs-serv20023/main/finkinfo/editors
Modified Files:
Tag: pangocairo-branch
bluefish-doc-html.info bluefish-doc-pdf.info bluefish.info
vim.info yc.info yc.patch
Added Files:
Tag: pangocairo-branch
bluefish-gnomevfs2.info cedet.info cedet.patch jdee.info
jdee.patch
Log Message:
mege from head
--- NEW FILE: cedet.patch ---
--- cedet-1.0pre4/fink/cedet-install 1969-12-31 19:00:00.000000000 -0500
+++ cedet-1.0pre4.copy/fink/cedet-install 2007-09-05 00:50:27.000000000
-0400
@@ -0,0 +1,99 @@
+#! /bin/bash -e
+#
+# <% elisp %> Emacs install script for cedet
+# Adapted from the Emacs install script for auctex by John Ridgway
+#
+# Original Copyright (C) 1997, 98, 99, 2000, 01, 02, 03, 04, 05, 06
+# by Davide G. M. Salvetti.
+#
+# This program 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 of the License, or (at your
+# option) any later version.
+#
+# This program 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 program; if not, write to: The Free Software Foundation, Inc.,
+# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+
+set -o posix
+
+FLAVOR=${1}
+
+INSTALL="install -o root -g admin -m 644"
+INSTDIR="${INSTALL} -m 755 -d"
+
+do_install () {
+ /bin/echo >&2 "install/cedet: Setting up for ${FLAVOR}... " \
+ "(log file: @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog)... \c"
+ cd @PREFIX@/share/emacs/site-lisp/cedet/; umask 0022;
+ ${INSTDIR} @PREFIX@/share/${FLAVOR}/site-lisp/cedet
+ rm -f @PREFIX@/share/${FLAVOR}/site-lisp/cedet/common/icons \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1
+ cp -pr @PREFIX@/share/emacs/site-lisp/cedet/*
@PREFIX@/share/${FLAVOR}/site-lisp/cedet/
+ rm -rf @PREFIX@/share/${FLAVOR}/site-lisp/cedet/common/icons \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1
+ cd @PREFIX@/share/${FLAVOR}/site-lisp/cedet
+ (cd common && make EMACS=${FLAVOR} autoloads init setup common \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1)
+ (cd ede && make EMACS=${FLAVOR} autoloads init ede aux-lisp \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1)
+ (cd speedbar && make EMACS=${FLAVOR} autoloads init speedbar \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1)
+ (cd eieio && make EMACS=${FLAVOR} autoloads init eieio examples \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1)
+ (cd semantic && make EMACS=${FLAVOR} autoloads metagrammar scripts example
init semantic Languages tools senator wisent bovinator \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1)
+ (cd cogre && make EMACS=${FLAVOR} wy autoloads init dot Mode misc hacks
COGRE \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1)
+ (cd contrib && make EMACS=${FLAVOR} autoloads init setup wy lisp \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1)
+ /bin/echo >&2 "install/cedet: --cleaning up... " \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1
+ find @PREFIX@/share/${FLAVOR}/site-lisp/cedet/ \
+ -type f -name \*.el -print0 | xargs -0 rm -f ,dummy, \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1
+ find @PREFIX@/share/${FLAVOR}/site-lisp/cedet/ \
+ -type f -name \*.el~ -print0 | xargs -0 rm -f ,dummy, \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1
+ find @PREFIX@/share/${FLAVOR}/site-lisp/cedet/ \
+ -type f -name \*.el.~1~ -print0 | xargs -0 rm -f ,dummy, \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1
+ find @PREFIX@/share/${FLAVOR}/site-lisp/cedet/ \
+ -type f -name \*-script -print0 | xargs -0 rm -f ,dummy, \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1
+ find @PREFIX@/share/${FLAVOR}/site-lisp/cedet/ \
+ -type f -name \*.wy -print0 | xargs -0 rm -f ,dummy, \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1
+ find @PREFIX@/share/${FLAVOR}/site-lisp/cedet/ \
+ -type f -name \*.by -print0 | xargs -0 rm -f ,dummy, \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1
+ find @PREFIX@/share/${FLAVOR}/site-lisp/cedet/ \
+ -type f -name Makefile -print0 | xargs -0 rm -f ,dummy, \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1
+ find @PREFIX@/share/${FLAVOR}/site-lisp/cedet/ \
+ -type f -name Project.ede -print0 | xargs -0 rm -f ,dummy, \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1
+ rm -f @PREFIX@/share/${FLAVOR}/site-lisp/cedet/common/icons \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1
+ ln -s @PREFIX@/share/emacs/site-lisp/cedet/common/icons
@PREFIX@/share/${FLAVOR}/site-lisp/cedet/common/icons \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog 2>&1
+ gzip -9fq @PREFIX@/share/${FLAVOR}/site-lisp/cedet/CompilationLog
+ echo >&2 "done."
+ return 0
+}
+
+case "${FLAVOR}" in
+ (emacs) : ;;
+ (emacs21 | emacs22)
+ do_install ;;
+ (*) echo >&2 "install/cedet:" \
+ "Ignoring emacsen flavor: \"${FLAVOR}\"."
+ ;;
+esac
+
+exit 0
diff -x '*~' -urN /Users/ridgway/Desktop/cedet-1.0pre4/fink/cedet-remove
/Users/ridgway/Desktop/cedet-1.0pre4.copy/fink/cedet-remove
--- cedet-1.0pre4/fink/cedet-remove 1969-12-31 19:00:00.000000000 -0500
+++ cedet-1.0pre4.copy/fink/cedet-remove 2007-09-05 00:50:13.000000000
-0400
@@ -0,0 +1,46 @@
+#! /bin/bash -e
+#
+# <% elisp %> Emacs remove script for cedet
+# adapted from
+# <% elisp %> Emacs remove script for auctex
+# by John Ridgway, 2007
+#
+# Original
+# Copyright (C) 1997, 98, 99, 2000, 01, 02, 03, 04, 05, 06
+# by Davide G. M. Salvetti.
+#
+# This program 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 of the License, or (at your
+# option) any later version.
+#
+# This program 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 program; if not, write to: The Free Software Foundation, Inc.,
+# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+
+set -o posix
+
+FLAVOR=${1}
+
+undo_install () {
+ /bin/echo >&2 "remove/cedet: Removing for ${FLAVOR}... \c"
+ rm -rf @PREFIX@/share/${FLAVOR}/site-lisp/cedet
+ echo >&2 "done."
+ return 0
+}
+
+case "${FLAVOR}" in
+ (emacs) : ;;
+ (emacs21 | emacs22)
+ undo_install ;;
+ (*) echo >&2 "remove/cedet:" \
+ "Ignoring emacsen flavor: \"${FLAVOR}\"."
+ ;;
+esac
+
+exit 0
diff -x '*~' -urN /Users/ridgway/Desktop/cedet-1.0pre4/fink/cedet-remove
/Users/ridgway/Desktop/cedet-1.0pre4.copy/fink/cedet-remove
--- cedet-1.0pre4/semantic/doc/semantic-user.info 1969-12-31
19:00:00.000000000 -0500
+++ cedet-1.0pre4.semantic/doc/semantic-user.info 2007-09-05
00:50:13.000000000 -0400
@@ -17,7 +17,7 @@
INFO-DIR-SECTION Emacs
START-INFO-DIR-ENTRY
-* Semantic User's guide: (semantic-user).
+* Semantic User's guide: (semantic-user). Semantic User's Manual.
END-INFO-DIR-ENTRY
This is the Semantic User's Guide _Infrastructure for parser based
--- cedet-1.0pre4/semantic/doc/semantic-user.info-1 1969-12-31
19:00:00.000000000 -0500
+++ cedet-1.0pre4.semantic/doc/semantic-user.info-1 2007-09-05
00:50:13.000000000 -0400
@@ -17,7 +17,7 @@
INFO-DIR-SECTION Emacs
START-INFO-DIR-ENTRY
-* Semantic User's guide: (semantic-user).
+* Semantic User's guide: (semantic-user). Semantic User's Manual.
END-INFO-DIR-ENTRY
This is the Semantic User's Guide _Infrastructure for parser based
--- cedet-1.0pre4/semantic/doc/semantic-user.info-2 1969-12-31
19:00:00.000000000 -0500
+++ cedet-1.0pre4.semantic/doc/semantic-user.info-2 2007-09-05
00:50:13.000000000 -0400
@@ -17,7 +17,7 @@
INFO-DIR-SECTION Emacs
START-INFO-DIR-ENTRY
-* Semantic User's guide: (semantic-user).
+* Semantic User's guide: (semantic-user). Semantic User's Manual.
END-INFO-DIR-ENTRY
This is the Semantic User's Guide _Infrastructure for parser based
Index: yc.info
===================================================================
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/editors/yc.info,v
retrieving revision 1.2.2.1
retrieving revision 1.2.2.2
diff -u -d -r1.2.2.1 -r1.2.2.2
--- yc.info 20 Dec 2006 18:01:01 -0000 1.2.2.1
+++ yc.info 28 Sep 2007 16:34:29 -0000 1.2.2.2
@@ -1,6 +1,6 @@
Package: yc
Version: 4.0.13
-Revision: 5
+Revision: 6
Description: Yet another Canna client for Emacsen
License: GPL
Maintainer: Todai Fink Team <[EMAIL PROTECTED]>
@@ -10,7 +10,7 @@
Source: http://www.ceres.dti.ne.jp/~knak/%n-%v.tar.gz
Source-MD5: 5cc5f04346b806d4157b4b66d7eba69f
PatchFile: %n.patch
-PatchFile-MD5: abc44a7580b5d580447ca5134a03de5e
+PatchFile-MD5: 01066bd6291a2de6880fa21ec01cfda1
PatchScript: sed 's|@PREFIX@|%p|g' < %{PatchFile} | patch -p1
CompileScript: make icanna
InstallScript: <<
--- NEW FILE: jdee.info ---
# Initial Data
Package: jdee
Version: 2.3.5.1
Revision: 1
Description: Java(R) Development Environment for Emacs
License: GPL
Maintainer: John Ridgway <[EMAIL PROTECTED]>
# Dependencies
Depends: emacsen, cedet (>= 1.0pre3), elib
Recommends: ecb
# Unpack
Source: http://jdee.sunsite.dk/jde-%v.tar.gz
Source-MD5: fdc5a8479fcaea158f598aa6f40fa5f3
# Patch Phase
PatchScript: sed 's|@PREFIX@|%p|g' <%a/%n.patch | patch -p1
# Compile Phase
CompileScript: <<
<<
# Test Suites
# Install Phase
InstallScript: <<
install -m 755 -d %i/share/doc/%n/html/bsh-ug
install -m 644 doc/html/bsh-ug/*.html %i/share/doc/%n/html/bsh-ug
install -m 755 -d %i/share/doc/%n/html/bsh-ug/images
install -m 644 doc/html/bsh-ug/images/*.gif %i/share/doc/%n/html/bsh-ug/images
install -m 755 -d %i/share/doc/%n/html/css
install -m 644 doc/html/css/*.css %i/share/doc/%n/html/css
install -m 755 -d %i/share/doc/%n/html/jdb-ug
install -m 644 doc/html/jdb-ug/*.html %i/share/doc/%n/html/jdb-ug
install -m 755 -d %i/share/doc/%n/html/jdb-ug/images
install -m 644 doc/html/jdb-ug/images/*.gif %i/share/doc/%n/html/jdb-ug/images
install -m 755 -d %i/share/doc/%n/html/jde-ug
install -m 644 doc/html/jde-ug/*.html %i/share/doc/%n/html/jde-ug
install -m 755 -d %i/share/doc/%n/html/jde-ug/images
install -m 644 doc/html/jde-ug/images/*.gif %i/share/doc/%n/html/jde-ug/images
install -m 755 -d %i/share/doc/%n/tli_rbl
install -m 755 -d %i/share/doc/%n/tli_rbl/au
install -m 644 doc/tli_rbl/au/*.au %i/share/doc/%n/tli_rbl/au
install -m 755 -d %i/share/doc/%n/tli_rbl/img
install -m 644 doc/tli_rbl/img/*.gif %i/share/doc/%n/tli_rbl/img
install -m 755 -d %i/share/doc/%n/tli_rbl/txt
install -m 644 doc/tli_rbl/txt/*.txt %i/share/doc/%n/tli_rbl/txt
install -m 755 -d %i/share/%n/java/bsh-commands/bsh/commands
install -m 755 java/bsh-commands/bsh/commands/*.bsh
%i/share/%n/java/bsh-commands/bsh/commands
install -m 755 -d %i/share/emacs/site-lisp/%n
install -m 644 lisp/*.el %i/share/emacs/site-lisp/%n
install -m 644 lisp/*.bnf %i/share/emacs/site-lisp/%n
install -m 644 lisp/*.api %i/share/emacs/site-lisp/%n
install -m 644 lisp/makefile %i/share/emacs/site-lisp/%n
install -m 755 -d
%i/lib/emacsen-common/packages/{install,remove}
install -m 755 fink/jdee-install %i/lib/emacsen-common/packages/install/jdee
install -m 755 fink/jdee-remove %i/lib/emacsen-common/packages/remove/jdee
install -m 755 -d %i/etc/emacs/site-start.d
install -m 644 fink/jdee.el %i/etc/emacs/site-start.d/50jdee.el
<<
JarFiles: doc/tli_rbl/*.jar java/lib/*.jar
DocFiles: java/lib/LICENSE.apache java/lib/LICENSE.checkstyle
java/lib/RIGHTS.antlr lisp/ChangeLog lisp/ReleaseNotes.txt
# Build Phase
PostInstScript: <<
if [ "$1" = "configure" -a -x %p/lib/emacsen-common/emacs-package-install ]
then
%p/lib/emacsen-common/emacs-package-install %n
fi
<<
PreRmScript: <<
if [ -x %p/lib/emacsen-common/emacs-package-remove ]
then
%p/lib/emacsen-common/emacs-package-remove %n
fi
<<
# Additional Data
Homepage: http://jdee.sunsite.dk/
DescDetail: <<
The JDEE is a software package that interfaces Emacs to command-line
Java development tools (for example, JavaSoft's JDK). JDEE features
include:
- JDEE menu with compile, run, debug, build, browse, project,
and help commands
- syntax coloring
- auto indentation
- compile error to source links
- source-level debugging
- source code browsing
- make file support
- automatic code generation
- Java source interpreter (Pat Neimeyer's BeanShell)
The JDEE supports both Emacs (Unix and Windows versions) and
XEmacs. It is freely available under the GNU public license.
<<
DescUsage: <<
Once the package is installed the JDEE will autoload when a .java file is
loaded. Nothing need be added to the user's .emacs file.
<<
DescPackaging: <<
In order to fit this package into the fink directory structure the packaging
had to be modified somewhat. As a result certain source files had to be
modified. (jdee.el, beanshell.el, and jde-util.el). Installation is done
directly by the InstallScript.
<<
Index: yc.patch
===================================================================
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/editors/yc.patch,v
retrieving revision 1.2.2.1
retrieving revision 1.2.2.2
diff -u -d -r1.2.2.1 -r1.2.2.2
--- yc.patch 20 Dec 2006 18:01:01 -0000 1.2.2.1
+++ yc.patch 28 Sep 2007 16:34:29 -0000 1.2.2.2
@@ -1,3 +1,51 @@
+diff -Naur yc-4.0.13.orig/yc.el yc-4.0.13/yc.el
+--- yc-4.0.13.orig/yc.el 2007-09-22 14:18:56.000000000 +0900
++++ yc-4.0.13/yc.el 2007-09-25 14:43:24.000000000 +0900
+@@ -1708,10 +1708,20 @@
+ (defvar yc-rc-bushu-dic-list nil)
+ (defvar yc-rc-user-dic-list nil)
+
+-(defun yc-rc-load (files)
+- (if (not (listp files)) (setq files (list files)))
+- (let (romkana-table stay-after-validate n-henkan-for-ichiran)
+- (while (car files)
++;; Fink canna 3.7p3-5 compatibility
++(defun yc-rc-load (files &optional noerror)
++ (if (listp files) ;; yc mode
++ (yc-load-internal files)
++ ;; canna compatible mode
++ (cond ((yc-load-internal (list files)) t)
++ (noerror nil)
++ (t (error "load: file not found")))))
++
++(defun yc-load-internal (files)
++ (let (romkana-table stay-after-validate n-henkan-for-ichiran
++ loaded-files
++ (canna-directory (get-yc-canna-lib-path)))
++ (while files
+ (when (and (file-exists-p (expand-file-name (car files)))
+ (file-readable-p (expand-file-name (car files))))
+ (setq yc-rc-dic-list nil
+@@ -1726,7 +1736,9 @@
+ (read-from-string buffer (cdr expr))
+ (error nil))))
+ (yc-eval-sexp (car expr)))))
++ (setq loaded-files (cons (car files) loaded-files))
+ (setq files (cdr files)))
++ (setq loaded-files (nreverse loaded-files))
+ (if romkana-table
+ (setq yc-rH-conv-dic (yc-search-file-first-in-path
+ romkana-table (list "." (getenv "HOME")
+@@ -1736,7 +1748,8 @@
+ (setq yc-dic-list (or (reverse yc-rc-dic-list) yc-dic-list)
+ yc-bushu-dic-list (or yc-rc-bushu-dic-list yc-bushu-dic-list)
+ yc-user-dic-list (or yc-rc-user-dic-list yc-user-dic-list))
+- (yc-var-unintern)))
++ (yc-var-unintern)
++ loaded-files))
+
+ (defun yc-eval-sexp (sexp)
+ (eval (print (yc-sexp-expand t sexp))))
diff -Naur yc-4.0.13.orig/fink/yc-install yc-4.0.13/fink/yc-install
--- yc-4.0.13.orig/fink/yc-install 1970-01-01 00:00:00.000000000 +0000
+++ yc-4.0.13/fink/yc-install 2005-03-16 10:57:53.000000000 +0000
Index: vim.info
===================================================================
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/editors/vim.info,v
retrieving revision 1.18.2.24
retrieving revision 1.18.2.25
diff -u -d -r1.18.2.24 -r1.18.2.25
--- vim.info 28 Sep 2007 16:15:17 -0000 1.18.2.24
+++ vim.info 28 Sep 2007 16:34:29 -0000 1.18.2.25
@@ -1,13 +1,12 @@
Info2: <<
Package: vim%type_pkg[-nox]
Type: -nox (boolean)
-Version: 7.1.100
-Revision: 2
+Version: 7.1.123
+Revision: 1001
Source: http://www.cs.pdx.edu/~htodd/vim-%v.tar.bz2
-Source-MD5: a767cc8c2b1ea4d8bd48b24a62a21a9f
+Source-MD5: eed0a9a2abb341801dcb4f907d255b5d
SourceDirectory: vim7.1
BuildDepends: fink (>= 0.24.12), libgettext3-dev, gettext-bin, gettext-tools,
libncurses5 (>= 5.4-20041023-1006), (%type_raw[-nox] = .) pkgconfig,
(%type_raw[-nox] = .) glib2-dev (>= 2.14.0-1), (%type_raw[-nox] = .) x11-dev,
(%type_raw[-nox] = .) gtk+2-dev (>= 2.14.0-1), (%type_raw[-nox] = .)
pango1-xft2-ft219-dev (>= 1.18.2-1), (%type_raw[-nox] = .) atk1 (>= 1.20.0-1),
(%type_raw[-nox] = .) cairo (>= 1.2-1), (%type_raw[-nox] = .) expat1,
(%type_raw[-nox] = .) freetype219 (>= 2.3.5-1), (%type_raw[-nox] = .)
fontconfig2-dev (>= 2.4.2-1), (%type_raw[-nox] = .) glitz, (%type_raw[-nox] =
.) libpng3, (%type_raw[-nox] = .) xft2-dev
-BuildConflicts: libiconv-dev
Depends: libgettext3-shlibs, libiconv, ncurses (>= 5.4-20041023-1006),
libncurses5-shlibs (>= 5.4-20041023-1006), (%type_raw[-nox] = .) glib2-shlibs
(>= 2.14.0-1), (%type_raw[-nox] = .) x11, (%type_raw[-nox] = .) gtk+2-shlibs
(>= 2.14.0-1), (%type_raw[-nox] = .) pango1-xft2-ft219-shlibs (>= 1.18.2-1),
(%type_raw[-nox] = .) atk1-shlibs (>= 1.20.0-1)
Conflicts: vim, vim-nox
Replaces: vim, vim-nox
--- NEW FILE: cedet.info ---
# Initial Data
Package: cedet
Version: 1.0pre4
Revision: 1
Description: Collection of Emacs Dev. Environment Tools
License: GPL
Maintainer: John Ridgway <[EMAIL PROTECTED]>
# Dependencies
Depends: emacs21 (>= 21.3) | emacs22, make
Provides: eieio, semantic, speedbar, cogre, ede
Conflicts: eieio, semantic, speedbar
Replaces: eieio, semantic, speedbar
# Unpack
Source: mirror:sourceforge:%n/%n-%v.tar.gz
Source-MD5: fdc22624ae284166d9617acdc6ecbfda
# Patch Phase
PatchScript: sed 's|@PREFIX@|%p|g' <%a/%n.patch | patch -p1
# Compile Phase
CompileScript: <<
<<
# Install Phase
InstallScript: <<
install -m 755 -d %i/bin
install -m 755 semantic/semanticdb.sh %i/bin
install -m 755 -d %i/share/emacs/site-lisp/%n
install -m 644 Makefile %i/share/emacs/site-lisp/%n
install -m 755 -d %i/share/doc/%n
install -m 644 INSTALL %i/share/doc/%n
install -m 755 -d %i/share/emacs/site-lisp/%n/cogre
install -m 644 cogre/Makefile %i/share/emacs/site-lisp/%n/cogre
install -m 644 cogre/Project.ede %i/share/emacs/site-lisp/%n/cogre
install -m 644 cogre/*.{el,wy} %i/share/emacs/site-lisp/%n/cogre
install -m 755 -d %i/share/doc/%n/cogre
install -m 644 cogre/ChangeLog %i/share/doc/%n/cogre
install -m 644 cogre/INSTALL %i/share/doc/%n/cogre
install -m 755 -d %i/share/doc/%n/cogre/src
install -m 644 cogre/cogre.texi %i/share/doc/%n/cogre/src
install -m 755 -d %i/share/emacs/site-lisp/%n/common
install -m 644 common/Makefile %i/share/emacs/site-lisp/%n/common
install -m 644 common/Project.ede %i/share/emacs/site-lisp/%n/common
install -m 644 common/*.el %i/share/emacs/site-lisp/%n/common
install -m 755 -d
%i/share/emacs/site-lisp/%n/common/icons
install -m 644 common/icons/*
%i/share/emacs/site-lisp/%n/common/icons
install -m 755 -d %i/share/doc/%n/common
install -m 644 common/ChangeLog %i/share/doc/%n/common
install -m 755 -d %i/share/emacs/site-lisp/%n/contrib
install -m 644 contrib/Makefile %i/share/emacs/site-lisp/%n/contrib
install -m 644 contrib/Project.ede %i/share/emacs/site-lisp/%n/contrib
install -m 644 contrib/*.{el,wy} %i/share/emacs/site-lisp/%n/contrib
install -m 755 -d %i/share/doc/%n/contrib
install -m 644 contrib/ChangeLog %i/share/doc/%n/contrib
install -m 755 -d %i/share/emacs/site-lisp/%n/ede
install -m 644 ede/Makefile %i/share/emacs/site-lisp/%n/ede
install -m 644 ede/Project.ede %i/share/emacs/site-lisp/%n/ede
install -m 644 ede/*.el %i/share/emacs/site-lisp/%n/ede
install -m 755 -d %i/share/doc/%n/ede
install -m 644 ede/ChangeLog %i/share/doc/%n/ede
install -m 644 ede/README %i/share/doc/%n/ede
install -m 755 -d %i/share/doc/%n/ede/src
install -m 644 ede/*.texi %i/share/doc/%n/ede/src
install -m 755 -d %i/share/emacs/site-lisp/%n/eieio
install -m 644 eieio/Makefile %i/share/emacs/site-lisp/%n/eieio
install -m 644 eieio/Project.ede %i/share/emacs/site-lisp/%n/eieio
install -m 644 eieio/*.el %i/share/emacs/site-lisp/%n/eieio
install -m 755 -d %i/share/doc/%n/eieio
install -m 644 eieio/ChangeLog %i/share/doc/%n/eieio
install -m 644 eieio/INSTALL %i/share/doc/%n/eieio
install -m 644 eieio/NEWS %i/share/doc/%n/eieio
install -m 755 -d %i/share/doc/%n/eieio/src
install -m 644 eieio/*.texi %i/share/doc/%n/eieio/src
install -m 755 -d %i/share/emacs/site-lisp/%n/semantic
install -m 644 semantic/Makefile %i/share/emacs/site-lisp/%n/semantic
install -m 644 semantic/Project.ede %i/share/emacs/site-lisp/%n/semantic
install -m 644 semantic/*.{el,wy} %i/share/emacs/site-lisp/%n/semantic
install -m 755 -d %i/share/doc/%n/semantic
install -m 644 semantic/AUTHORS %i/share/doc/%n/semantic
install -m 644 semantic/ChangeLog %i/share/doc/%n/semantic
install -m 644 semantic/INSTALL %i/share/doc/%n/semantic
install -m 644 semantic/NEWS %i/share/doc/%n/semantic
install -m 644 semantic/ONEWS %i/share/doc/%n/semantic
install -m 644 semantic/renamelist.txt %i/share/doc/%n/semantic
install -m 755 -d %i/share/doc/%n/semantic/src
install -m 644 semantic/doc/*.texi %i/share/doc/%n/semantic/src
install -m 644 semantic/doc/*.png %i/share/doc/%n/semantic/src
install -m 644 semantic/doc/*.txt %i/share/doc/%n/semantic/src
install -m 644 semantic/doc/Makefile %i/share/doc/%n/semantic/src
install -m 755 -d
%i/share/emacs/site-lisp/%n/semantic/bovine
install -m 644 semantic/bovine/Makefile
%i/share/emacs/site-lisp/%n/semantic/bovine
install -m 644 semantic/bovine/Project.ede
%i/share/emacs/site-lisp/%n/semantic/bovine
install -m 644 semantic/bovine/*.{el,by}
%i/share/emacs/site-lisp/%n/semantic/bovine
install -m 755 -d
%i/share/emacs/site-lisp/%n/semantic/wisent
install -m 644 semantic/wisent/Makefile
%i/share/emacs/site-lisp/%n/semantic/wisent
install -m 644 semantic/wisent/Project.ede
%i/share/emacs/site-lisp/%n/semantic/wisent
install -m 644 semantic/wisent/*.{el,wy}
%i/share/emacs/site-lisp/%n/semantic/wisent
install -m 755 -d %i/share/emacs/site-lisp/%n/speedbar
install -m 644 speedbar/Makefile %i/share/emacs/site-lisp/%n/speedbar
install -m 644 speedbar/Project.ede %i/share/emacs/site-lisp/%n/speedbar
install -m 644 speedbar/*.el %i/share/emacs/site-lisp/%n/speedbar
install -m 755 -d %i/share/doc/%n/speedbar
install -m 644 speedbar/ChangeLog %i/share/doc/%n/speedbar
install -m 644 speedbar/INSTALL %i/share/doc/%n/speedbar
install -m 755 -d %i/share/doc/%n/speedbar/src
install -m 644 speedbar/*.{xpm,texi} %i/share/doc/%n/speedbar/src
install -m 755 -d %i/share/info
install -m 644 cogre/cogre.info %i/share/info
install -m 644 ede/ede.info %i/share/info
install -m 644 ede/ede.info-1 %i/share/info
install -m 644 ede/ede.info-2 %i/share/info
install -m 644 eieio/eieio.info %i/share/info
install -m 644 semantic/doc/bovine.info %i/share/info
install -m 644 semantic/doc/grammar-fw.info %i/share/info
install -m 644 semantic/doc/grammar-fw.info-1 %i/share/info
install -m 644 semantic/doc/grammar-fw.info-2 %i/share/info
install -m 644 semantic/doc/semantic-appdev.info %i/share/info
install -m 644 semantic/doc/semantic-appdev.info-1 %i/share/info
install -m 644 semantic/doc/semantic-appdev.info-2 %i/share/info
install -m 644 semantic/doc/semantic-appdev.info-3 %i/share/info
install -m 644 semantic/doc/semantic-appdev.info-4 %i/share/info
install -m 644 semantic/doc/semantic-langdev.info %i/share/info
install -m 644 semantic/doc/semantic-langdev.info-1 %i/share/info
install -m 644 semantic/doc/semantic-langdev.info-2 %i/share/info
install -m 644 semantic/doc/semantic-user.info %i/share/info
install -m 644 semantic/doc/semantic-user.info-1 %i/share/info
install -m 644 semantic/doc/semantic-user.info-2 %i/share/info
install -m 644 semantic/doc/semantic.info %i/share/info
install -m 644 semantic/doc/wisent.info %i/share/info
install -m 644 semantic/doc/wisent.info-1 %i/share/info
install -m 644 semantic/doc/wisent.info-2 %i/share/info
install -m 644 speedbar/speedbar.info %i/share/info
install -m 755 -d %i/lib/emacsen-common/packages/{install,remove}
install -m 755 fink/%n-install %i/lib/emacsen-common/packages/install/%n
install -m 755 fink/%n-remove %i/lib/emacsen-common/packages/remove/%n
<<
# Build Phase
PostInstScript: <<
if [ "$1" = "configure" ] && [ -x %p/lib/emacsen-common/emacs-package-install
] ; then
%p/lib/emacsen-common/emacs-package-install %n
fi
<<
PreRmScript: <<
if [ -x %p/lib/emacsen-common/emacs-package-remove ] ; then
%p/lib/emacsen-common/emacs-package-remove %n
fi
<<
InfoDocs: cogre.info ede.info ede.info-1 ede.info-2 eieio.info bovine.info
grammar-fw.info grammar-fw.info-1 grammar-fw.info-2 semantic-appdev.info
semantic-appdev.info-1 semantic-appdev.info-2 semantic-appdev.info-3
semantic-appdev.info-4 semantic-langdev.info semantic-langdev.info-1
semantic-langdev.info-2 semantic-user.info semantic-user.info-1
semantic-user.info-2 semantic.info wisent.info wisent.info-1 wisent.info-2
speedbar.info
# Additional Data
Homepage: http://cedet.sourceforge.net/
DescDetail: <<
CEDET is a collection of tools written with the end goal of creating an
advanced development environment in Emacs.
Emacs already is a great environment for writing software, but there are
additional areas that need improvement. Many new ideas for integrated
environments have been developed in newer products, such as Microsoft's
Visual environment, JBuilder, Eclipse, or KDevelop. CEDET is a project which
brings together several different tools needed to implement advanced
features.
<<
DescUsage: <<
To use the various packages of CEDET:
Install load hooks into your .emacs file. Sample code follows:
-----------
;; Load CEDET
(load-file "~/cedet-VERSION/common/cedet.el")
;; Enabling various SEMANTIC minor modes. See semantic/INSTALL
;; for more ideas.
;; Select one of the following:
;; * This enables the database and idle reparse engines
;;(semantic-load-enable-minimum-features)
;; * This enables some tools useful for coding, such as summary mode
;; imenu support, and the semantic navigator
(semantic-load-enable-code-helpers)
;; * This enables even more coding tools such as the nascent intellisense
;; mode, decoration mode, and stickyfunc mode (plus regular code helpers)
;; (semantic-load-enable-guady-code-helpers)
;; * This turns on which-func support (Plus all other code helpers)
;; (semantic-load-enable-excessive-code-helpers)
;; This turns on modes that aid in grammar writing and semantic tool
;; development. It does not enable any other features such as code
;; helpers above.
;; (semantic-load-enable-semantic-debugging-helpers)
-----------
Some items in the contrib directory may need additional study or
installation. Read %p/share/doc/%n/contrib/INSTALL for specifics on
those extra packages.
You can configure how the individual packages load in the above
example by adding settings in the comment section. Please read
individual INSTALL files for each package for details on configuring
them. See the texinfo manuals for details on more specific
configurations.
<<
DescPort: <<
Small changes were made to three of the .info files, which had
badly-formatted INFO-DIR-ENTRY's. The changes (in the original .texi
files) will be submitted upstream.
<<
Index: bluefish-doc-html.info
===================================================================
RCS file:
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/editors/bluefish-doc-html.info,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -d -r1.1.2.1 -r1.1.2.2
--- bluefish-doc-html.info 19 Jun 2007 21:16:53 -0000 1.1.2.1
+++ bluefish-doc-html.info 28 Sep 2007 16:34:28 -0000 1.1.2.2
@@ -16,13 +16,10 @@
Bluefish documentation in html format.
For Bluefish documentation in pdf A4 format, install
bluefish-doc-pdf.
- The Bluefish documentation is also available in big one html,
- pdf US, ps A4 and US formats at:
- http://micmacfr.homeunix.org/bluefish/
- A French version with same formats is in progress.
<<
DescPort: The license is inside the doc files.
License: GPL
-Homepage: http://micmacfr.homeunix.org/bluefish/
-DescPacakging: Formerly maintained by Michele Garoche
-Maintainer: None <[EMAIL PROTECTED]>
+#Homepage: http://micmacfr.homeunix.org/bluefish/
+Homepage: http://bluefish.openoffice.nl/
+DescPackaging: Formerly maintained by Michele Garoche
+Maintainer: Kevin Horton <[EMAIL PROTECTED]>
Index: bluefish.info
===================================================================
RCS file:
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/editors/bluefish.info,v
retrieving revision 1.8.2.30
retrieving revision 1.8.2.31
diff -u -d -r1.8.2.30 -r1.8.2.31
--- bluefish.info 28 Sep 2007 16:15:16 -0000 1.8.2.30
+++ bluefish.info 28 Sep 2007 16:34:28 -0000 1.8.2.31
@@ -1,15 +1,85 @@
Info2: <<
Package: bluefish%type_pkg[bluefish]
-Type: bluefish (. -gnome2 -gnomevfs2)
-Version: 1.0.6
-Revision: 1031
+Type: bluefish (. -gnome2 -gnome2-novfs)
+Version: 1.0.7
+Revision: 1001
Source: http://www.bennewitz.com/%{ni}/stable/source/%{ni}-%v.tar.bz2
-Source-MD5: 99eed255d05c3373a6e610e948626aa6
+Source-MD5: 2c3b3c9c8f8e32b9473dfd879f216dea
SourceDirectory: %{ni}-%v
-Depends: aspell-shlibs (>= 0.50.5-1002), default-icon-theme,
libgettext3-shlibs (>= 0.14.5-1), glib2-shlibs (>= 2.14.0-1), gnome-icon-theme
(>= 2.20.0-1), libjpeg-shlibs (>= 6b-16), libtiff-shlibs (>= 3.7.2-1001),
pango1-xft2-ft219 (>= 1.18.2-1), pcre-shlibs (>= 4.5-1), popt-shlibs (>=
1.10.4-1), libxml2-shlibs (>= 2.6.30-1), libxml2-bin (>= 2.6.30-1),
shared-mime-info (>= 0.16-1002), atk1-shlibs (>= 1.20.0-1), libpng3-shlibs (>=
1:1.2.8-1), gtk+2 (>= 2.12.0-1), libiconv (>= 1.10-6), x11,
(%type_raw[bluefish] = -gnomevfs2) gnome-base, (%type_raw[bluefish] = -gnome2)
gnome-base, (%type_raw[bluefish] = -gnomevfs2) gnome-mime-data (>= 2.18.0-1),
(%type_raw[bluefish] = -gnome2) gnome-mime-data (>= 2.18.0-1),
(%type_raw[bluefish] = -gnomevfs2) libidl2-shlibs (>= 0.8.9-1),
(%type_raw[bluefish] = -gnome2) libidl2-shlibs (>= 0.8.9-1),
(%type_raw[bluefish] = -gnomevfs2) orbit2 (>= 2.14.9-1), (%type_raw[bluefish] =
-gnome2) orbit2 (>= 2.14.9-1), (%type_raw[bluefish] = -gnomevfs2) orbi
t2-shlibs (>= 2.14.9-1), (%type_raw[bluefish] = -gnome2) orbit2-shlibs (>=
2.14.9-1), (%type_raw[bluefish] = -gnomevfs2) gconf2 (>= 2.20.0-1),
(%type_raw[bluefish] = -gnome2) gconf2 (>= 2.20.0-1), (%type_raw[bluefish] =
-gnomevfs2) gconf2-shlibs (>= 2.20.0-1), (%type_raw[bluefish] = -gnome2)
gconf2-shlibs (>= 2.20.0-1), (%type_raw[bluefish] = -gnomevfs2) libbonobo2 (>=
2.20.0-1), (%type_raw[bluefish] = -gnome2) libbonobo2 (>= 2.20.0-1),
(%type_raw[bluefish] = -gnomevfs2) libbonobo2-shlibs (>= 2.20.0-1),
(%type_raw[bluefish] = -gnome2) libbonobo2-shlibs (>= 2.20.0-1),
(%type_raw[bluefish] = -gnomevfs2) gnome-vfs2-unified (>= 1:2.20.0-1),
(%type_raw[bluefish] = -gnome2) gnome-vfs2-unified (>= 1:2.20.0-1),
(%type_raw[bluefish] = -gnome2) audiofile-shlibs, (%type_raw[bluefish] =
-gnome2) audiofile-bin, (%type_raw[bluefish] = -gnome2) esound-bin (>=
0.2.38-1), (%type_raw[bluefish] = -gnome2) esound-common (>= 0.2.36-1),
(%type_raw[bluefish] = -gnome2) esound-shlibs (>= 0.2.38-1),
(%type_raw[bluefish] = -gnome2) libart2-shlibs (>= 2.3.17-1),
(%type_raw[bluefish] = -gnome2) libgnome2 (>= 2.20.0-1), (%type_raw[bluefish] =
-gnome2) libgnome2-shlibs (>= 2.20.0-1), (%type_raw[bluefish] = -gnome2)
libglade2-shlibs (>= 2.6.2-1), (%type_raw[bluefish] = -gnome2) libgnomecanvas2
(>= 2.20.0-1), (%type_raw[bluefish] = -gnome2) libgnomecanvas2-shlibs (>=
2.20.0-1), (%type_raw[bluefish] = -gnome2) gnome-keyring-shlibs (>= 0.8.1-1),
(%type_raw[bluefish] = -gnome2) gnome-keyring (>= 0.8.1-1),
(%type_raw[bluefish] = -gnome2) libbonoboui2 (>= 2.20.0-1),
(%type_raw[bluefish] = -gnome2) libbonoboui2-shlibs (>= 2.20.0-1),
(%type_raw[bluefish] = -gnome2) libgnomeui2 (>= 2.20.0-1), (%type_raw[bluefish]
= -gnome2) libgnomeui2-shlibs (>= 2.20.0-1), (%type_raw[bluefish] = -gnome2)
desktop-file-utils (>= 0.10-1002), x11-shlibs
-BuildDepends: xft2-dev, freetype219 (>= 2.3.5-1), fontconfig2-dev (>=
2.4.2-1), expat1, cairo (>= 1.2-1), glitz, aspell-dev (>= 0.50.5-1002),
libgettext3-dev (>= 0.14.5-1), gettext-tools (>= 0.14.5-1), gettext-bin (>=
0.14.5-1), glib2-dev (>= 2.14.0-1), libiconv-dev (>= 1.10-6), libjpeg (>=
6b-16), libtiff (>= 3.7.2-1001), pango1-xft2-ft219-dev (>= 1.18.2-1), pcre (>=
4.5-1), pcre-bin (>= 4.5-1), pkgconfig (>= 0.21-1), atk1 (>= 1.20.0-1), libpng3
(>= 1:1.2.8), gtk+2-dev (>= 2.12.0-1), x11-dev, libxml2 (>= 2.6.30-1),
(%type_raw[bluefish] = -gnomevfs2) orbit2-dev (>= 2.14.9-1),
(%type_raw[bluefish] = -gnome2) orbit2-dev (>= 2.14.9-1), (%type_raw[bluefish]
= -gnomevfs2) gconf2-dev (>= 2.20.0-1), (%type_raw[bluefish] = -gnome2)
gconf2-dev (>= 2.20.0-1), (%type_raw[bluefish] = -gnomevfs2) libbonobo2-dev (>=
2.20.0-1), (%type_raw[bluefish] = -gnome2) libbonobo2-dev (>= 2.20.0-1),
(%type_raw[bluefish] = -gnomevfs2) dbus-dev (>= 1.0-1), (%type_raw[bluefish] =
-gnome2) dbus-dev (>= 1
.0-1), (%type_raw[bluefish] = -gnomevfs2) gnome-vfs2-unified-dev (>=
1:2.20.0-1), (%type_raw[bluefish] = -gnome2) gnome-vfs2-unified-dev (>=
1:2.20.0-1), (%type_raw[bluefish] = -gnome2) audiofile, (%type_raw[bluefish] =
-gnome2) esound (>= 0.2.38-1), (%type_raw[bluefish] = -gnome2) libart2 (>=
2.3.17-1), (%type_raw[bluefish] = -gnome2) libgnome2-dev (>= 2.20.0-1),
(%type_raw[bluefish] = -gnome2) popt (>= 1.10.4-1), (%type_raw[bluefish] =
-gnome2) libglade2 (>= 2.6.2-1), (%type_raw[bluefish] = -gnome2)
libgnomecanvas2-dev (>= 2.20.0-1), (%type_raw[bluefish] = -gnome2)
gnome-keyring-dev (>= 0.8.1-1), (%type_raw[bluefish] = -gnome2)
libbonoboui2-dev (>= 2.20.0-1), (%type_raw[bluefish] = -gnome2) libgnomeui2-dev
(>= 2.20.0-1)
-Replaces: bluefish, bluefish-gnome2, bluefish-gnomevfs2
-Conflicts: bluefish, bluefish-gnome2, bluefish-gnomevfs2
+Depends: <<
+ aspell-shlibs (>= 0.50.5-1002),
+ default-icon-theme,
+ libgettext3-shlibs (>= 0.14.5-1),
+ glib2-shlibs (>= 2.12.0-1),
+ gnome-icon-theme (>= 2.12.0-1),
+ libjpeg-shlibs (>= 6b-16),
+ libtiff-shlibs (>= 3.7.2-1001),
+ pango1-xft2-ft219 (>= 1.10.1-1001), pango1-xft2-ft219-shlibs (>=
1.10.1-1001),
+ pcre-shlibs (>= 4.5-1),
+ popt-shlibs (>= 1.10.4-1),
+ libxml2-shlibs (>= 2.6.22-1002), libxml2-bin (>= 2.6.22-1002),
+ shared-mime-info (>= 0.16-1002),
+ atk1-shlibs (>= 1.10.1-3),
+ libpng3-shlibs (>= 1:1.2.8-1),
+ gtk+2 (>= 2.6.10-1001), gtk+2-shlibs (>= 2.6.10-1001),
+ libiconv (>= 1.10-6),
+ x11,
+ (%type_raw[bluefish] = -gnome2-novfs) gnome-base, (%type_raw[bluefish] =
-gnome2) gnome-base,
+ (%type_raw[bluefish] = -gnome2-novfs) gnome-mime-data (>= 2.4.2-3),
(%type_raw[bluefish] = -gnome2) gnome-mime-data (>= 2.4.2-3),
+ (%type_raw[bluefish] = -gnome2-novfs) libidl2-shlibs (>= 0.8.5-1001),
(%type_raw[bluefish] = -gnome2) libidl2-shlibs (>= 0.8.5-1001),
+ (%type_raw[bluefish] = -gnome2-novfs) orbit2 (>= 2.12.4-1001),
(%type_raw[bluefish] = -gnome2) orbit2 (>= 2.12.4-1001), (%type_raw[bluefish] =
-gnome2-novfs) orbit2-shlibs (>= 2.12.4-1001), (%type_raw[bluefish] = -gnome2)
orbit2-shlibs (>= 2.12.4-1001),
+ (%type_raw[bluefish] = -gnome2-novfs) gconf2 (>= 2.12.1-1),
(%type_raw[bluefish] = -gnome2) gconf2 (>= 2.12.1-1), (%type_raw[bluefish] =
-gnome2-novfs) gconf2-shlibs (>= 2.12.1-1), (%type_raw[bluefish] = -gnome2)
gconf2-shlibs (>= 2.12.1-1),
+ (%type_raw[bluefish] = -gnome2-novfs) libbonobo2 (>= 2.10.1-1002),
(%type_raw[bluefish] = -gnome2) libbonobo2 (>= 2.10.1-1002),
(%type_raw[bluefish] = -gnome2-novfs) libbonobo2-shlibs (>= 2.10.1-1002),
(%type_raw[bluefish] = -gnome2) libbonobo2-shlibs (>= 2.10.1-1002),
+ (%type_raw[bluefish] = -gnome2-novfs) gnome-vfs2-unified,
(%type_raw[bluefish] = -gnome2) gnome-vfs2-unified, (%type_raw[bluefish] =
-gnome2-novfs) gnome-vfs2-unified-shlibs, (%type_raw[bluefish] = -gnome2)
gnome-vfs2-unified-shlibs,
+ (%type_raw[bluefish] = -gnome2) audiofile-shlibs, (%type_raw[bluefish] =
-gnome2) audiofile-bin,
+ (%type_raw[bluefish] = -gnome2) esound-bin (>= 0.2.36-1),
(%type_raw[bluefish] = -gnome2) esound-common (>= 0.2.36-1),
(%type_raw[bluefish] = -gnome2) esound-shlibs (>= 0.2.36-1),
+ (%type_raw[bluefish] = -gnome2) libart2-shlibs (>= 2.3.17-1),
+ (%type_raw[bluefish] = -gnome2) libgnome2 (>= 2.12.0.1-4),
(%type_raw[bluefish] = -gnome2) libgnome2-shlibs (>= 2.12.0.1-1004),
+ (%type_raw[bluefish] = -gnome2) libglade2-shlibs (>= 2.5.1-1003),
+ (%type_raw[bluefish] = -gnome2) libgnomecanvas2 (>= 2.12.0-1001),
(%type_raw[bluefish] = -gnome2) libgnomecanvas2-shlibs (>= 2.12.0-1001),
+ (%type_raw[bluefish] = -gnome2) gnome-keyring-shlibs (>= 0.4.3-1004),
(%type_raw[bluefish] = -gnome2) gnome-keyring (>= 0.4.3-4),
+ (%type_raw[bluefish] = -gnome2) libbonoboui2 (>= 2.10.1-1001),
(%type_raw[bluefish] = -gnome2) libbonoboui2-shlibs (>= 2.10.1-1001),
+ (%type_raw[bluefish] = -gnome2) libgnomeui2 (>= 2.12.1-1001),
(%type_raw[bluefish] = -gnome2) libgnomeui2-shlibs (>= 2.12.1-1),
+ (%type_raw[bluefish] = -gnome2) desktop-file-utils (>= 0.10-1002),
+ x11-shlibs
+<<
+BuildDepends: <<
+ aspell-dev (>= 0.50.5-1002),
+ libgettext3-dev (>= 0.14.5-1),
+ gettext-tools (>= 0.14.5-1), gettext-bin (>= 0.14.5-1),
+ glib2-dev (>= 2.12.0-1),
+ libiconv-dev (>= 1.10-6),
+ libjpeg (>= 6b-16),
+ libtiff (>= 3.7.2-1001),
+ pango1-xft2-ft219-dev (>= 1.10.1-1001),
+ pcre (>= 4.5-1), pcre-bin (>= 4.5-1),
+ pkgconfig,
+ atk1 (>= 1.10.1-3),
+ libpng3 (>= 1:1.2.8),
+ fontconfig2-dev (>= 2.4.2-1),
+ freetype219 (>= 2.3.5-1),
+ gtk+2-dev (>= 2.6.10-1001),
+ x11-dev,
+ libxml2 (>= 2.6.22-1002),
+ (%type_raw[bluefish] = -gnome2-novfs) orbit2-dev (>= 2.12.4-1001),
(%type_raw[bluefish] = -gnome2) orbit2-dev (>= 2.12.4-1001),
+ (%type_raw[bluefish] = -gnome2-novfs) gconf2-dev (>= 2.12.1-1),
(%type_raw[bluefish] = -gnome2) gconf2-dev (>= 2.12.1-1),
+ (%type_raw[bluefish] = -gnome2-novfs) libbonobo2-dev (>= 2.10.1-1002),
(%type_raw[bluefish] = -gnome2) libbonobo2-dev (>= 2.10.1-1002),
+ (%type_raw[bluefish] = -gnome2-novfs) dbus-dev (>= 0.60-1),
(%type_raw[bluefish] = -gnome2) dbus-dev (>= 0.60-1),
+ (%type_raw[bluefish] = -gnome2-novfs) libhowl-dev, (%type_raw[bluefish] =
-gnome2) libhowl-dev,
+ (%type_raw[bluefish] = -gnome2-novfs) gnome-vfs2-ssl-dev (>= 2.10.1-5) |
(%type_raw[bluefish] = -gnome2-novfs) gnome-vfs2-dev (>= 2.10.1-1005),
(%type_raw[bluefish] = -gnome2) gnome-vfs2-ssl-dev (>= 2.10.1-5) |
(%type_raw[bluefish] = -gnome2) gnome-vfs2-dev (>= 2.10.1-1005),
+ (%type_raw[bluefish] = -gnome2) audiofile,
+ (%type_raw[bluefish] = -gnome2) esound (>= 0.2.36-1),
+ (%type_raw[bluefish] = -gnome2) libart2 (>= 2.3.17-1),
+ (%type_raw[bluefish] = -gnome2) libgnome2-dev (>= 2.12.0.1-1004),
+ (%type_raw[bluefish] = -gnome2) popt (>= 1.10.4-1),
+ (%type_raw[bluefish] = -gnome2) libglade2 (>= 2.5.1-1003),
+ (%type_raw[bluefish] = -gnome2) libgnomecanvas2-dev (>= 2.12.0-1001),
+ (%type_raw[bluefish] = -gnome2) gnome-keyring-dev (>= 0.4.3-1004),
+ (%type_raw[bluefish] = -gnome2) libbonoboui2-dev (>= 2.10.1-1001),
+ (%type_raw[bluefish] = -gnome2) libgnomeui2-dev (>= 2.12.1-1001)
+<<
+Replaces: bluefish, bluefish-gnome2, bluefish-gnome2-novfs, bluefish-gnomevfs2
( << 1.0.7-1)
+Conflicts: bluefish, bluefish-gnome2, bluefish-gnomevfs2 ( << 1.0.7-1 )
SetCFLAGS: -Os
SetLDFLAGS: -bind_at_load
ConfigureParams: --disable-dependency-tracking --mandir=%p/share/man
--disable-splash-screen --with-icon-path=%p/share/pixmaps
--with-freedesktop_org-menu=%p/share/applications
--with-freedesktop_org-mime=%p/share/mime
--with-gnome2_4-mime=%p/share/mime-info --disable-update-databases
PKG_CONFIG_PATH="%p/lib/pango-ft219/lib/pkgconfig:%p/lib/fontconfig2/lib/pkgconfig:%p/lib/freetype219/lib/pkgconfig:$PKG_CONFIG_PATH"
FREETYPE_CONFIG=%p/lib/freetype219/bin/freetype-config
@@ -25,6 +95,7 @@
make
<<
InstallScript: <<
+ #!/bin/sh -ev
make install DESTDIR=%d
<<
PostInstScript: <<
@@ -61,9 +132,8 @@
To install bluefish on a system without gnome2 installed, use:
* fink install bluefish
if you don't care being able to open remote files
- * fink install bluefish-gnomevfs2
- if you want to be able to open remote files.
- * It is also recommended to install applesystemfonts.
+ * fink install bluefish-gnome2-novfs
+ It is also recommended to install applesystemfonts.
Usage
* Launch it with: bluefish
* To get the custom menus in French language,
@@ -73,24 +143,15 @@
Documentation
* The English documentation is available as a separate package:
bluefish-doc
- The latest versions (English and French) are always available at:
- http://micmacfr.homeunix.org/bluefish/
<<
DescPackaging: <<
Update share-mime-database in PostInstScript and PostRmScript.
Update desktop-database in PostInstScript and PostRmScript.
<<
DescPort: <<
- Previous versions by Christoph Pfisterer, Matt Stephenson, and
- Michele Garoche.
- Use of pkgconfig
- Use of variant to handle no gnome, gnomevfs2, and gnome2
- installation
- Added bind-at-load flag for libiconv-libintl conflicts.
- Changing permissions on ja.po
- Changing case for Tcl syntax highlighting
+ Previous versions by Christoph Pfisterer, Matt Stephenson and Michele Garoche
<<
License: GPL
Homepage: http://bluefish.openoffice.nl
-Maintainer: None <[EMAIL PROTECTED]>
+Maintainer: Kevin Horton <[EMAIL PROTECTED]>
<<
--- NEW FILE: bluefish-gnomevfs2.info ---
Package: bluefish-gnomevfs2
Version: 1.0.7
Revision: 1000
Source: none
Depends: fink-obsolete-packages, bluefish-gnome2-novfs (>= 1.0.7-1)
CompileScript: #
InstallScript: <<
mkdir -p %i/share/doc/installed-packages
touch %i/share/doc/installed-packages/%n
<<
Description: Obsolete - replaced by bluefish-gnome2-novfs
DescDetail: <<
Obsolete - Has been replaced by bluefish-gnome2-novfs
<<
License: GPL
Homepage: http://bluefish.openoffice.nl
Maintainer: Kevin Horton <[EMAIL PROTECTED]>
--- NEW FILE: jdee.patch ---
diff -x '*~' -urN /Users/ridgway/Desktop/cedet-1.0pre4/fink/cedet-install
/Users/ridgway/Desktop/cedet-1.0pre4.copy/fink/cedet-install
--- jdee-2.3.5.1/fink/jdee-install 1969-12-31 19:00:00.000000000 -0500
+++ jdee-2.3.5.1/fink/jdee-install 2007-09-05 00:50:27.000000000 -0400
@@ -0,0 +1,59 @@
+#! /bin/bash -e
+#
+# <% elisp %> Emacs install script for jdee
+# Adapted from the Emacs install script for auctex by John Ridgway
+#
+# Original Copyright (C) 1997, 98, 99, 2000, 01, 02, 03, 04, 05, 06
+# by Davide G. M. Salvetti.
+#
+# This program 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 of the License, or (at your
+# option) any later version.
+#
+# This program 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 program; if not, write to: The Free Software Foundation, Inc.,
+# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+
+set -o posix
+
+FLAVOR=${1}
+
+INSTALL="install -o root -g admin -m 644"
+INSTDIR="${INSTALL} -m 755 -d"
+
+do_install () {
+ /bin/echo >&2 "install/jdee: Setting up for ${FLAVOR}... " \
+ "(log file: @PREFIX@/share/${FLAVOR}/site-lisp/jdee/CompilationLog)... \c"
+ cd @PREFIX@/share/emacs/site-lisp/jdee/; umask 0022;
+ ${INSTDIR} @PREFIX@/share/${FLAVOR}/site-lisp/jdee/java
+ cp -pr @PREFIX@/share/emacs/site-lisp/jdee/*
@PREFIX@/share/${FLAVOR}/site-lisp/jdee/
+ cd @PREFIX@/share/${FLAVOR}/site-lisp/jdee
+ make EMACS=${FLAVOR} ELIB="../elib" CEDET="../cedet" \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/jdee/CompilationLog 2>&1
+ rm -f @PREFIX@/share/${FLAVOR}/site-lisp/jdee/java/lib \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/jdee/CompilationLog 2>&1
+ ln -s @PREFIX@/share/java/jdee
@PREFIX@/share/${FLAVOR}/site-lisp/jdee/java/lib \
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/jdee/CompilationLog 2>&1
+ ln -s @PREFIX@/share/doc/jdee @PREFIX@/share/${FLAVOR}/site-lisp/jdee/doc
\
+ >> @PREFIX@/share/${FLAVOR}/site-lisp/jdee/CompilationLog 2>&1
+ gzip -9fq @PREFIX@/share/${FLAVOR}/site-lisp/jdee/CompilationLog
+ echo >&2 "done."
+ return 0
+}
+
+case "${FLAVOR}" in
+ (emacs) : ;;
+ (emacs21 | emacs22)
+ do_install ;;
+ (*) echo >&2 "install/jdee:" \
+ "Ignoring emacsen flavor: \"${FLAVOR}\"."
+ ;;
+esac
+
+exit 0
diff -x '*~' -urN /Users/ridgway/Desktop/jdee-1.0pre4/fink/jdee-remove
/Users/ridgway/Desktop/jdee-1.0pre4.copy/fink/jdee-remove
--- jdee-1.0pre4/fink/jdee-remove 1969-12-31 19:00:00.000000000 -0500
+++ jdee-1.0pre4.copy/fink/jdee-remove 2007-09-05 00:50:13.000000000 -0400
@@ -0,0 +1,46 @@
+#! /bin/bash -e
+#
+# <% elisp %> Emacs remove script for jdee
+# adapted from
+# <% elisp %> Emacs remove script for auctex
+# by John Ridgway, 2007
+#
+# Original
+# Copyright (C) 1997, 98, 99, 2000, 01, 02, 03, 04, 05, 06
+# by Davide G. M. Salvetti.
+#
+# This program 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 of the License, or (at your
+# option) any later version.
+#
+# This program 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 program; if not, write to: The Free Software Foundation, Inc.,
+# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+
+set -o posix
+
+FLAVOR=${1}
+
+undo_install () {
+ /bin/echo >&2 "remove/jdee: Removing for ${FLAVOR}... \c"
+ rm -rf @PREFIX@/share/${FLAVOR}/site-lisp/jdee
+ echo >&2 "done."
+ return 0
+}
+
+case "${FLAVOR}" in
+ (emacs) : ;;
+ (emacs21 | emacs22)
+ undo_install ;;
+ (*) echo >&2 "remove/jdee:" \
+ "Ignoring emacsen flavor: \"${FLAVOR}\"."
+ ;;
+esac
+
+exit 0
diff -x '*~' -urN /Users/ridgway/Desktop/jdee-1.0pre4/fink/jdee.el
/Users/ridgway/Desktop/jdee-1.0pre4.copy/fink/jdee.el
--- jdee-1.0pre4/fink/jdee.el 1969-12-31 19:00:00.000000000 -0500
+++ jdee-1.0pre4.copy/fink/jdee.el 2007-09-05 00:50:13.000000000 -0400
@@ -0,0 +1,49 @@
+;; This .emacs file illustrates the minimal setup required to run the JDE.
+
+;; Set the debug option to enable a backtrace when a
+;; problem occurs.
+(setq debug-on-error t)
+
+;; Update the Emacs load-path to include the path to
+;; the JDE and its required packages.
+;;(add-to-list 'load-path (expand-file-name "~/emacs/site/jde/lisp"))
+;;(add-to-list 'load-path (expand-file-name "~/emacs/site/cedet/common"))
+;;(add-to-list 'load-path (expand-file-name "~/emacs/site/elib"))
+
+;; Initialize CEDET.
+(load-file "@PREFIX@/share/emacs/site-lisp/cedet/common/cedet.el")
+
+;; If you want Emacs to defer loading the JDE until you open a
+;; Java file, edit the following line
+(setq defer-loading-jde nil)
+;; to read:
+;;
+;; (setq defer-loading-jde t)
+;;
+
+(if defer-loading-jde
+ (progn
+ (autoload 'jde-mode "jde" "JDE mode." t)
+ (setq auto-mode-alist
+ (append
+ '(("\\.java\\'" . jde-mode))
+ auto-mode-alist)))
+ (require 'jde))
+
+
+;; Sets the basic indentation for Java source files
+;; to two spaces.
+(defun my-jde-mode-hook ()
+ (setq c-basic-offset 2))
+
+(add-hook 'jde-mode-hook 'my-jde-mode-hook)
+
+;; Include the following only if you want to run
+;; bash as your shell.
+
+;; Setup Emacs to run bash as its primary shell.
+(setq shell-file-name "bash")
+(setq shell-command-switch "-c")
+(setq explicit-shell-file-name shell-file-name)
+(setenv "SHELL" shell-file-name)
+(setq explicit-sh-args '("-login" "-i"))
diff -x '*~' -urN /Users/ridgway/Desktop/jdee-1.0pre4/fink/jdee.el
/Users/ridgway/Desktop/jdee-1.0pre4.copy/fink/jdee.el
--- jdee-1.0pre4/lisp/beanshell.el 1969-12-31 19:00:00.000000000 -0500
+++ jdee-1.0pre4.copy/lisp/beanshell.el 2007-09-05 00:50:13.000000000 -0400
@@ -84,7 +84,7 @@
:group 'tools
:prefix "bsh-")
-(defcustom bsh-jar "bsh.jar"
+(defcustom bsh-jar "@PREFIX@/share/java/jdee/bsh.jar"
"Path to the jar file containing the BeanShell classes."
:group 'bsh
:type 'file)
@@ -503,7 +503,7 @@
(assert
(file-exists-p (oref this jar))
nil
- "Specified BeanShell jar filed does not exist: %s" (oref this jar))
+ "Specified BeanShell jar file does not exist: %s" (oref this jar))
(if (not (bsh-running-p this))
diff -x '*~' -urN /Users/ridgway/Desktop/jdee-1.0pre4/lisp/jde-util.el
/Users/ridgway/Desktop/jdee-1.0pre4.copy/lisp/jde-util.el
--- jdee-1.0pre4/lisp/jde-util.el 1969-12-31 19:00:00.000000000 -0500
+++ jdee-1.0pre4.copy/lisp/jde-util.el 2007-09-05 00:50:13.000000000 -0400
@@ -232,11 +232,10 @@
directory that results from unpacking the distributable.
On installations based on the version of the JDEE
packaged with XEmacs, the root directory is
-xemacs-packages/lisp."
- (let ((directory-sep-char ?/))
- (expand-file-name
- "../"
- (file-name-directory (locate-library "jde")))))
+xemacs-packages/lisp. On fink installations the root
+directory is the lisp directory rather than the
+directory above it."
+ (file-name-directory (locate-library "jde")))
(defun jde-find-jde-data-directory ()
"Return the path of the JDE data directory.
@@ -248,8 +247,8 @@
(let ((directory-sep-char ?/))
(if (featurep 'xemacs)
(let ((dir (locate-data-directory "jde")))
- (if dir dir (jde-root))))
- (jde-root)))
+ (if dir dir (jde-root)))
+ (jde-root))))
(defun jde-temp-directory ()
"Get the location used by the host system to store temporary files."
diff -x '*~' -urN /Users/ridgway/Desktop/jdee-1.0pre4/lisp/jde.el
/Users/ridgway/Desktop/jdee-1.0pre4.copy/lisp/jde.el
Index: bluefish-doc-pdf.info
===================================================================
RCS file:
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/editors/bluefish-doc-pdf.info,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -d -r1.1.2.1 -r1.1.2.2
--- bluefish-doc-pdf.info 19 Jun 2007 21:16:53 -0000 1.1.2.1
+++ bluefish-doc-pdf.info 28 Sep 2007 16:34:28 -0000 1.1.2.2
@@ -13,13 +13,9 @@
Bluefish documentation in pdf A4 format.
For Bluefish documentation in chunked html format, install
bluefish-doc-html.
- The Bluefish documentation is also available in big one html,
- pdf US, ps A4 and US formats at:
- http://micmacfr.homeunix.org/bluefish/
- A French version with same formats is in progress.
<<
DescPort: The license is inside the doc files.
License: GPL
-Homepage: http://micmacfr.homeunix.org/bluefish/
-DescPacakging: Formerly maintained by Michele Garoche
-Maintainer: None <[EMAIL PROTECTED]>
+Homepage: http://bluefish.openoffice.nl/
+DescPackaging: Formerly maintained by Michele Garoche
+Maintainer: Kevin Horton <[EMAIL PROTECTED]>
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Fink-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fink-commits