Yuck, typo
This commit is contained in:
parent
03a84f82b0
commit
c8eb9b717e
@ -1,29 +0,0 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2001/01/08 22:36:59 espie Exp $
|
||||
|
||||
CATEGORIES= editor
|
||||
MASTER_SITES= ${HOMEPAGE}
|
||||
HOMEPAGE= http://cooledit.sourceforge.net/
|
||||
DISTNAME= cooledit-3.17.2
|
||||
|
||||
MAINTAINER= Marc Espie <espie@openbsd.org>
|
||||
|
||||
FLAVORS= python
|
||||
FLAVOR?=
|
||||
|
||||
.if ${FLAVOR:L:Mpython}
|
||||
BUILD_DEPENDS+= python::lang/python15
|
||||
RUN_DEPENDS+= python::lang/python15
|
||||
.else
|
||||
CONFIGURE_ENV+=NOPYTHON=Yes
|
||||
.endif
|
||||
|
||||
CONFIGURE_STYLE= gnu
|
||||
CONFIGURE_ENV+= XTERM_CMD=xterm
|
||||
CONFIGURE_ARGS+= --disable-mail-author
|
||||
|
||||
PERMIT_PACKAGE_FTP=Yes
|
||||
PERMIT_DISTFILES_FTP=Yes
|
||||
PERMIT_PACKAGE_CDROM=Yes
|
||||
PERMIT_DISTFILES_CDROM=Yes
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,3 +0,0 @@
|
||||
MD5 (cooledit-3.17.2.tar.gz) = 1de2e268effd7fbfb2e1f3d0a0a29da5
|
||||
RMD160 (cooledit-3.17.2.tar.gz) = 323dbe703152bd98cad3bf4e8f716e13aefc0380
|
||||
SHA1 (cooledit-3.17.2.tar.gz) = 7e9474b922e951cf77e98a01e9edd3cbeedb99fc
|
@ -1,52 +0,0 @@
|
||||
$OpenBSD: patch-configure,v 1.1.1.1 2001/01/08 22:37:01 espie Exp $
|
||||
--- configure.orig Tue Aug 29 15:00:53 2000
|
||||
+++ configure Sun Dec 24 16:40:28 2000
|
||||
@@ -1968,15 +1968,17 @@ cat >> confdefs.h <<EOF
|
||||
EOF
|
||||
|
||||
|
||||
-echo $ac_n "checking for rxvt... "
|
||||
-if rxvt -help 2>&1 | grep geom >/dev/null ; then
|
||||
- XTERM_CMD="rxvt -fn %F -bg Navy -fg White " ;
|
||||
- echo "yes" ;
|
||||
-else
|
||||
- XTERM_CMD="xterm" ;
|
||||
- echo "no" ;
|
||||
+if [ -z "$XTERM_CMD" ]; then
|
||||
+ echo $ac_n "checking for rxvt... "
|
||||
+ if rxvt -help 2>&1 | grep geom >/dev/null ; then
|
||||
+ XTERM_CMD="rxvt -fn %F -bg Navy -fg White " ;
|
||||
+ echo "yes" ;
|
||||
+ else
|
||||
+ XTERM_CMD="xterm" ;
|
||||
+ echo "no" ;
|
||||
+ fi
|
||||
+ rm -f conftestrxvt
|
||||
fi
|
||||
-rm -f conftestrxvt
|
||||
cat >> confdefs.h <<EOF
|
||||
#define XTERM_CMD "${XTERM_CMD}"
|
||||
EOF
|
||||
@@ -2839,13 +2841,13 @@ CFLAGS="$CFLAGS $X_CFLAGS"
|
||||
LDFLAGS="$LDFLAGS $X_LIBS"
|
||||
|
||||
|
||||
-
|
||||
PYLIB=python1.5
|
||||
LIBPY=python1.5
|
||||
|
||||
have_python_config=no
|
||||
have_python_include=no
|
||||
|
||||
+if [ -z "$NOPYTHON" ]; then
|
||||
echo $ac_n "checking for python version 1.5""... $ac_c" 1>&6
|
||||
echo "configure:2851: checking for python version 1.5" >&5
|
||||
EPATH=`echo $PATH | sed -e 's+/bin:+ +g' -e 's+:+ +g'`
|
||||
@@ -2867,6 +2869,7 @@ for i in / /opt /usr /usr/local /usr/ccs
|
||||
done
|
||||
done
|
||||
done
|
||||
+fi
|
||||
|
||||
if test x$have_python_config = xyes && test x$have_python_include = xyes ; then
|
||||
have_python=yes
|
@ -1,15 +0,0 @@
|
||||
$OpenBSD: patch-pixmap_Makefile_in,v 1.1.1.1 2001/01/08 22:37:00 espie Exp $
|
||||
--- pixmap/Makefile.in.orig Sun Dec 24 16:27:58 2000
|
||||
+++ pixmap/Makefile.in Sun Dec 24 16:29:10 2000
|
||||
@@ -252,8 +252,9 @@ maintainer-clean
|
||||
|
||||
|
||||
install-data-local:
|
||||
- chmod 0755 $(libdir)/coolicon/modify-xinitrc
|
||||
- $(libdir)/coolicon/modify-xinitrc
|
||||
+ chmod 0755 $(DESTDIR)$(libdir)/coolicon/modify-xinitrc
|
||||
+# ouch, I think not
|
||||
+# $(DESTDIR)$(libdir)/coolicon/modify-xinitrc
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
@ -1,14 +0,0 @@
|
||||
$OpenBSD: patch-po_Makefile_in_in,v 1.1.1.1 2001/01/08 22:37:00 espie Exp $
|
||||
--- po/Makefile.in.in.orig Sun Dec 24 16:32:33 2000
|
||||
+++ po/Makefile.in.in Sun Dec 24 16:33:14 2000
|
||||
@@ -118,8 +118,8 @@ install-data-yes: all
|
||||
for cat in $$catalogs; do \
|
||||
cat=`basename $$cat`; \
|
||||
case "$$cat" in \
|
||||
- *.gmo) destdir=$(gnulocaledir);; \
|
||||
- *) destdir=$(localedir);; \
|
||||
+ *.gmo) destdir=$(DESTDIR)$(gnulocaledir);; \
|
||||
+ *) destdir=$(DESTDIR)$(localedir);; \
|
||||
esac; \
|
||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
||||
dir=$$destdir/$$lang/LC_MESSAGES; \
|
@ -1,14 +0,0 @@
|
||||
$OpenBSD: patch-rxvt__rxvtlib_h,v 1.1.1.1 2001/01/08 22:37:00 espie Exp $
|
||||
--- rxvt/_rxvtlib.h.orig Sun Dec 24 16:19:42 2000
|
||||
+++ rxvt/_rxvtlib.h Sun Dec 24 16:20:32 2000
|
||||
@@ -168,7 +168,10 @@
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <net/if.h>
|
||||
+/* on both these OSes, including net/if.h triggers inclusion of if_arp.h */
|
||||
+#if !defined(__NetBSD__) && !defined(__OpenBSD__)
|
||||
#include <net/if_arp.h>
|
||||
+#endif
|
||||
#include "X11/keysymdef.h"
|
||||
#include <X11/cursorfont.h>
|
||||
#include <X11/Xatom.h>
|
@ -1 +0,0 @@
|
||||
easy to use, graphical editor
|
@ -1,15 +0,0 @@
|
||||
Cooledit is a suite of programs consisting of the following:
|
||||
- cooledit - a GUI based editor which allows you to call external programs
|
||||
(for instance LaTeX on a LaTeX file)
|
||||
- smalledit - a stripped down version of cooledit
|
||||
- coolman - a man page browser
|
||||
- coolbrowse - a file system browser
|
||||
- coolmessage - an interface to write that brings up a cool-styled window
|
||||
with your message
|
||||
- coolicon - a utility to place icons directly on your desktop which runs
|
||||
under any window manager
|
||||
|
||||
FLAVOR=python
|
||||
turns it into a programmable editor, must have python 1.5
|
||||
|
||||
WWW: ${HOMEPAGE}
|
@ -1,3 +0,0 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2001/01/08 22:37:01 espie Exp $
|
||||
lib/libCw.so.1.0
|
||||
DYNLIBDIR(%D/lib)
|
@ -1,125 +0,0 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2001/01/08 22:37:01 espie Exp $
|
||||
bin/coolbrowse
|
||||
bin/cooledit
|
||||
bin/cooledit-gdb
|
||||
bin/coolicon
|
||||
bin/coolinput
|
||||
bin/coollistbox
|
||||
bin/coolman
|
||||
bin/coolmessage
|
||||
bin/coolproject
|
||||
bin/coolquery
|
||||
bin/obsidiansplash
|
||||
bin/smalledit
|
||||
lib/cooledit/Xmlrpclib.py
|
||||
lib/cooledit/c_utils.py
|
||||
lib/cooledit/global.py
|
||||
lib/cooledit/sh_utils.py
|
||||
lib/cooledit/syntax/ada95.syntax
|
||||
lib/cooledit/syntax/bapc.syntax
|
||||
lib/cooledit/syntax/c.syntax
|
||||
lib/cooledit/syntax/changelog.syntax
|
||||
lib/cooledit/syntax/diff.syntax
|
||||
lib/cooledit/syntax/fortran.syntax
|
||||
lib/cooledit/syntax/html.syntax
|
||||
lib/cooledit/syntax/jasm.syntax
|
||||
lib/cooledit/syntax/java.syntax
|
||||
lib/cooledit/syntax/latex.syntax
|
||||
lib/cooledit/syntax/lsm.syntax
|
||||
lib/cooledit/syntax/lua.syntax
|
||||
lib/cooledit/syntax/mail.syntax
|
||||
lib/cooledit/syntax/makefile.syntax
|
||||
lib/cooledit/syntax/mhtml.syntax
|
||||
lib/cooledit/syntax/ml.syntax
|
||||
lib/cooledit/syntax/mudela.syntax
|
||||
lib/cooledit/syntax/nroff.syntax
|
||||
lib/cooledit/syntax/pascal.syntax
|
||||
lib/cooledit/syntax/perl.syntax
|
||||
lib/cooledit/syntax/php.syntax
|
||||
lib/cooledit/syntax/python.syntax
|
||||
lib/cooledit/syntax/sh.syntax
|
||||
lib/cooledit/syntax/smalltalk.syntax
|
||||
lib/cooledit/syntax/swig.syntax
|
||||
lib/cooledit/syntax/texinfo.syntax
|
||||
lib/cooledit/syntax/unknown.syntax
|
||||
lib/cooledit/zope_utils.py
|
||||
lib/coolicon/browse.xpm
|
||||
lib/coolicon/cdrom_eject.xpm
|
||||
lib/coolicon/cdrom_view.xpm
|
||||
lib/coolicon/cooledit.xpm
|
||||
lib/coolicon/coolicon.config
|
||||
lib/coolicon/dynamite.xpm
|
||||
lib/coolicon/e.data
|
||||
lib/coolicon/gmc.xpm
|
||||
lib/coolicon/launch.xpm
|
||||
lib/coolicon/lyx.xpm
|
||||
lib/coolicon/manual.xpm
|
||||
lib/coolicon/mc.xpm
|
||||
lib/coolicon/modify-xinitrc
|
||||
lib/coolicon/netscape.xpm
|
||||
lib/coolicon/nscape.xpm
|
||||
lib/coolicon/phonedown.xpm
|
||||
lib/coolicon/phoneup.xpm
|
||||
lib/coolicon/printer.xpm
|
||||
lib/coolicon/spanner.xpm
|
||||
lib/coolicon/xterm.xpm
|
||||
lib/coolicon/xv.xpm
|
||||
lib/libCw.a
|
||||
lib/libCw.la
|
||||
man/man1/cooledit.1
|
||||
man/man1/coolicon.1
|
||||
man/man1/coolman.1
|
||||
man/man1/smalledit.1
|
||||
share/locale/cs/LC_MESSAGES/cooledit.mo
|
||||
share/locale/da/LC_MESSAGES/cooledit.mo
|
||||
share/locale/de/LC_MESSAGES/cooledit.mo
|
||||
share/locale/es/LC_MESSAGES/cooledit.mo
|
||||
share/locale/fi/LC_MESSAGES/cooledit.mo
|
||||
share/locale/fr/LC_MESSAGES/cooledit.mo
|
||||
share/locale/it/LC_MESSAGES/cooledit.mo
|
||||
share/locale/ja/LC_MESSAGES/cooledit.mo
|
||||
share/locale/ko/LC_MESSAGES/cooledit.mo
|
||||
share/locale/nl/LC_MESSAGES/cooledit.mo
|
||||
share/locale/no/LC_MESSAGES/cooledit.mo
|
||||
share/locale/pl/LC_MESSAGES/cooledit.mo
|
||||
share/locale/pt/LC_MESSAGES/cooledit.mo
|
||||
share/locale/ru/LC_MESSAGES/cooledit.mo
|
||||
share/locale/sl/LC_MESSAGES/cooledit.mo
|
||||
share/locale/sv/LC_MESSAGES/cooledit.mo
|
||||
%%SHARED%%
|
||||
@dirrm share/locale/sv/LC_MESSAGES
|
||||
@dirrm share/locale/sv
|
||||
@dirrm share/locale/sl/LC_MESSAGES
|
||||
@dirrm share/locale/sl
|
||||
@dirrm share/locale/ru/LC_MESSAGES
|
||||
@dirrm share/locale/ru
|
||||
@dirrm share/locale/pt/LC_MESSAGES
|
||||
@dirrm share/locale/pt
|
||||
@dirrm share/locale/pl/LC_MESSAGES
|
||||
@dirrm share/locale/pl
|
||||
@dirrm share/locale/no/LC_MESSAGES
|
||||
@dirrm share/locale/no
|
||||
@dirrm share/locale/nl/LC_MESSAGES
|
||||
@dirrm share/locale/nl
|
||||
@dirrm share/locale/ko/LC_MESSAGES
|
||||
@dirrm share/locale/ko
|
||||
@dirrm share/locale/ja/LC_MESSAGES
|
||||
@dirrm share/locale/ja
|
||||
@dirrm share/locale/it/LC_MESSAGES
|
||||
@dirrm share/locale/it
|
||||
@dirrm share/locale/fr/LC_MESSAGES
|
||||
@dirrm share/locale/fr
|
||||
@dirrm share/locale/fi/LC_MESSAGES
|
||||
@dirrm share/locale/fi
|
||||
@dirrm share/locale/es/LC_MESSAGES
|
||||
@dirrm share/locale/es
|
||||
@dirrm share/locale/de/LC_MESSAGES
|
||||
@dirrm share/locale/de
|
||||
@dirrm share/locale/da/LC_MESSAGES
|
||||
@dirrm share/locale/da
|
||||
@dirrm share/locale/cs/LC_MESSAGES
|
||||
@dirrm share/locale/cs
|
||||
@dirrm share/locale
|
||||
@dirrm lib/coolicon
|
||||
@dirrm lib/cooledit/syntax
|
||||
@dirrm lib/cooledit
|
Loading…
Reference in New Issue
Block a user