Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

22
editors/fe/DESCR Normal file
View File

@@ -0,0 +1,22 @@
Fe is a small and easy to use folding editor.
Fe allows to fold arbitrary text regions; it is not bound to syntactic
units. Unlike Origami, folds are not attributed with a trailing
comment, instead you can put folds before or after any text in the
line, as you like.
Fe has no configuration or extension language and requires no setup.
Its user interface is emacs-like and it has menues for the very most
important functions to help beginners. Further there is a reference
card. It offers:
* Regions and Emacs-like kill ring
* Incremental search
* Keyboard macros
* Editing binary files
* Multiple windows and views
* Compose function for Latin 1 characters
In case you can't stand the emacs interface and want ultimate
flexibility, fe can easily be modified, because it is structured as an
editor library with a user interface frontend, all written in C.

25
editors/fe/Makefile Normal file
View File

@@ -0,0 +1,25 @@
# $NetBSD: Makefile,v 1.14 2012/10/03 11:43:33 asau Exp $
DISTNAME= fe-1.8
PKGREVISION= 1
CATEGORIES= editors
MASTER_SITES= http://www.moria.de/~michael/fe/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.moria.de/~michael/fe/
COMMENT= Folding editor
GNU_CONFIGURE= yes
USE_TOOLS+= msgfmt
BROKEN_GETTEXT_DETECTION= yes
INSTALLATION_DIRS= share/doc/fe
post-install:
${INSTALL_DATA} ${WRKSRC}/fe.ps ${DESTDIR}${PREFIX}/share/doc/fe/fe.ps
${INSTALL_DATA} ${WRKSRC}/feref.ps ${DESTDIR}${PREFIX}/share/doc/fe/feref.ps
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../mk/curses.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

6
editors/fe/PLIST Normal file
View File

@@ -0,0 +1,6 @@
@comment $NetBSD: PLIST,v 1.3 2009/06/14 17:50:22 joerg Exp $
bin/fe
man/man1/fe.1
share/doc/fe/fe.ps
share/doc/fe/feref.ps
share/locale/de/LC_MESSAGES/fe.mo

7
editors/fe/distinfo Normal file
View File

@@ -0,0 +1,7 @@
$NetBSD: distinfo,v 1.3 2008/01/12 04:17:38 bjs Exp $
SHA1 (fe-1.8.tar.gz) = b956e5e4c9c9bc925903d0c0b6de0b7b829fcce6
RMD160 (fe-1.8.tar.gz) = a3d186dbc042fe74fbfdc8e83d6237a50fea692d
Size (fe-1.8.tar.gz) = 169151 bytes
SHA1 (patch-aa) = 3686219a0f3fac572772344718384cf06cf5baba
SHA1 (patch-ab) = 4b72dbe1eabfdb7f65c20f9d2db03950c636f97c

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-aa,v 1.2 2008/01/12 04:17:38 bjs Exp $
--- configure.orig 2007-09-12 09:58:44.000000000 -0400
+++ configure
@@ -3170,6 +3170,7 @@ fi
LIBS=$ORIG_LIBS
+curses_ok=yes
if test "$curses_ok" = yes; then
{ echo "$as_me:$LINENO: checking for modern curses without raw() bug" >&5
echo $ECHO_N "checking for modern curses without raw() bug... $ECHO_C" >&6; }

View File

@@ -0,0 +1,28 @@
$NetBSD: patch-ab,v 1.1 2008/01/12 04:17:38 bjs Exp $
--- Makefile.in.orig 2007-08-31 14:47:09.000000000 -0400
+++ Makefile.in
@@ -33,16 +33,16 @@ install-po: install-po-@USE_NLS@
install-po-no:
install-po-yes: $(CATALOGS)
for cat in $(CATALOGS); do \
- dir=$(localedir)/`basename $$cat .mo`/LC_MESSAGES; \
- [ -d $$dir ] || @INSTALL@ -m 755 -d $$dir; \
- @INSTALL@ -m 644 $$cat $$dir/fe.mo; \
+ dir=$(DESTDIR)$(localedir)/`basename $$cat .mo`/LC_MESSAGES; \
+ [ -d $$dir ] || $(BSD_INSTALL_DATA_DIR) -m 755 -d $$dir; \
+ $(BSD_INSTALL_DATA) -m 644 $$cat $$dir/fe.mo; \
done
install: all
- $(INSTALL) -m 755 -d $(BINDIR)
- $(INSTALL_PROGRAM) -s fe $(BINDIR)/fe
- $(INSTALL) -m 755 -d $(MANDIR)/man1
- $(INSTALL_DATA) fe.1 $(MANDIR)/man1/fe.1
+ $(BSD_INSTALL_PROGRAM_DIR) $(DESTDIR)$(BINDIR)
+ $(BSD_INSTALL_PROGRAM) fe $(DESTDIR)$(BINDIR)/fe
+ $(BSD_INSTALL_MAN_DIR) $(DESTDIR)$(MANDIR)/man1
+ $(BSD_INSTALL_MAN) fe.1 $(DESTDIR)$(MANDIR)/man1/fe.1
make install-po
.c.o: