summaryrefslogtreecommitdiff
path: root/editors/zoinks
diff options
context:
space:
mode:
Diffstat (limited to 'editors/zoinks')
-rw-r--r--editors/zoinks/Makefile41
-rw-r--r--editors/zoinks/distinfo2
-rw-r--r--editors/zoinks/files/patch-fw-TApplication.cpp22
-rw-r--r--editors/zoinks/files/patch-fw-TInputContext.cpp9
-rw-r--r--editors/zoinks/files/patch-fw-TTopLevelWindow.cpp13
-rw-r--r--editors/zoinks/files/patch-fw-TWindow.cpp26
-rw-r--r--editors/zoinks/files/patch-ide-TLogDocument.cpp11
-rw-r--r--editors/zoinks/files/patch-ide-TProjectDocument.cpp11
-rw-r--r--editors/zoinks/pkg-descr8
-rw-r--r--editors/zoinks/pkg-plist3
10 files changed, 0 insertions, 146 deletions
diff --git a/editors/zoinks/Makefile b/editors/zoinks/Makefile
deleted file mode 100644
index d3d29c3c0f07..000000000000
--- a/editors/zoinks/Makefile
+++ /dev/null
@@ -1,41 +0,0 @@
-# Created by: Mike Lockwood <mike@mikelockwood.com>
-# $FreeBSD$
-
-PORTNAME= zoinks
-PORTVERSION= 0.4.1
-PORTREVISION= 3
-CATEGORIES= editors
-MASTER_SITES= http://zoinks.mikelockwood.com/download/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= X11 programmer's editor and development environment
-
-LICENSE= GPLv2+
-LICENSE_FILE= ${WRKSRC}/COPYING
-
-BROKEN= unfetchable
-DEPRECATED= Unfetchable, unmaintained
-EXPIRATION_DATE= 2019-10-16
-
-USES= compiler
-USE_XORG= x11 xext xpm
-GNU_CONFIGURE= yes
-
-CPPFLAGS+= -I${LOCALBASE}/include
-CXXFLAGS+= ${CXXFLAGS_${CHOSEN_COMPILER_TYPE}}
-CXXFLAGS_clang= -Wno-c++11-narrowing
-LDFLAGS+= -L${LOCALBASE}/lib
-
-OPTIONS_DEFINE= NLS
-OPTIONS_SUB= yes
-
-NLS_USES= gettext
-NLS_CONFIGURE_ENABLE= nls
-
-post-patch:
- @${REINPLACE_CMD} -e \
- 's|^MY_CXXFLAGS|#&|' ${WRKSRC}/configure
- @${FIND} ${WRKSRC} -name *.xpm | ${XARGS} ${REINPLACE_CMD} -e \
- 's|^"|(char *)"|g'
-
-.include <bsd.port.mk>
diff --git a/editors/zoinks/distinfo b/editors/zoinks/distinfo
deleted file mode 100644
index a588a7fcf041..000000000000
--- a/editors/zoinks/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (zoinks-0.4.1.tar.gz) = bd8b229904b2e0aeae4742cc9eda882cd47874c86dcf21df8b3d77c830d301cd
-SIZE (zoinks-0.4.1.tar.gz) = 322009
diff --git a/editors/zoinks/files/patch-fw-TApplication.cpp b/editors/zoinks/files/patch-fw-TApplication.cpp
deleted file mode 100644
index 454bbf72c288..000000000000
--- a/editors/zoinks/files/patch-fw-TApplication.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
---- fw/TApplication.cpp.orig 2003-05-15 23:33:23.000000000 +0200
-+++ fw/TApplication.cpp 2007-11-04 22:30:57.000000000 +0100
-@@ -163,8 +163,8 @@
- fLeaderWindow = XCreateSimpleWindow(fDisplay, GetRootWindow(), 10, 10, 10, 10, 0, 0, 0);
-
- XClassHint* classHint = XAllocClassHint();
-- classHint->res_name = "Zoinks";
-- classHint->res_class = "ZOINKS";
-+ classHint->res_name = (char *)"Zoinks";
-+ classHint->res_class = (char *)"ZOINKS";
-
- XWMHints* wmHints = NULL;
- TPixmap* icon = GetIcon();
-@@ -1154,7 +1154,7 @@
- }
-
- // exec the shell
-- err = execl("/bin/sh", "sh", "-c", commandLine, NULL);
-+ err = execl("/bin/sh", "sh", "-c", commandLine, (char *)NULL);
-
- ASSERT(0); // should never get here
- }
diff --git a/editors/zoinks/files/patch-fw-TInputContext.cpp b/editors/zoinks/files/patch-fw-TInputContext.cpp
deleted file mode 100644
index 76b17abdc714..000000000000
--- a/editors/zoinks/files/patch-fw-TInputContext.cpp
+++ /dev/null
@@ -1,9 +0,0 @@
---- fw/TInputContext.cpp.orig 2007-11-04 22:32:48.000000000 +0100
-+++ fw/TInputContext.cpp 2007-11-04 22:33:03.000000000 +0100
-@@ -75,5 +75,5 @@
- xpoint.y = point.v;
-
- ICArg args[2] = { {XNSpotLocation, &xpoint}, {NULL, NULL} };
-- XSetICValues(fXIC, XNPreeditAttributes, args, NULL);
-+ XSetICValues(fXIC, XNPreeditAttributes, args, (char *)NULL);
- }
diff --git a/editors/zoinks/files/patch-fw-TTopLevelWindow.cpp b/editors/zoinks/files/patch-fw-TTopLevelWindow.cpp
deleted file mode 100644
index adc4f3600d75..000000000000
--- a/editors/zoinks/files/patch-fw-TTopLevelWindow.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
---- ./fw/TTopLevelWindow.cpp.orig 2007-11-03 00:02:58.000000000 +0100
-+++ ./fw/TTopLevelWindow.cpp 2007-11-03 00:03:17.000000000 +0100
-@@ -91,8 +91,8 @@
- }
-
- XClassHint* classHints = XAllocClassHint();
-- classHints->res_name = "Zoinks";
-- classHints->res_class = "ZOINKS";
-+ classHints->res_name = (char *)"Zoinks";
-+ classHints->res_class = (char *)"ZOINKS";
-
- int argc = 0;
- char** argv = NULL;
diff --git a/editors/zoinks/files/patch-fw-TWindow.cpp b/editors/zoinks/files/patch-fw-TWindow.cpp
deleted file mode 100644
index 4a3a4636012b..000000000000
--- a/editors/zoinks/files/patch-fw-TWindow.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
---- fw/TWindow.cpp.orig 2003-04-16 21:38:57.000000000 +0200
-+++ fw/TWindow.cpp 2007-11-04 22:35:45.000000000 +0100
-@@ -502,7 +502,7 @@
- return false;
-
- XIMStyles* supportedStyles;
-- XGetIMValues(xim, XNQueryInputStyle, &supportedStyles, NULL, NULL);
-+ XGetIMValues(xim, XNQueryInputStyle, &supportedStyles, (char *)NULL);
- if (!supportedStyles || supportedStyles->count_styles == 0)
- return false;
-
-@@ -542,12 +542,12 @@
-
- TFont* font = GetFont();
- ASSERT(font && font->GetFontSet());
-- XVaNestedList preeditAttributes = XVaCreateNestedList(0, XNFontSet, font->GetFontSet(), XNSpotLocation, &point, XNArea, &rect, NULL);
-+ XVaNestedList preeditAttributes = XVaCreateNestedList(0, XNFontSet, font->GetFontSet(), XNSpotLocation, &point, XNArea, &rect, (char *)NULL);
- ASSERT(preeditAttributes);
- // XVaNestedList statusAttributes = XVaCreateNestedList(0, XNFontSet, font->GetFontSet(), NULL);
- // ASSERT(statusAttributes);
-
-- XIC xic = XCreateIC(xim, XNInputStyle, style, XNClientWindow, fWindow, XNFocusWindow, fWindow, XNPreeditAttributes, preeditAttributes, /*XNStatusAttributes, statusAttributes, */ NULL);
-+ XIC xic = XCreateIC(xim, XNInputStyle, style, XNClientWindow, fWindow, XNFocusWindow, fWindow, XNPreeditAttributes, preeditAttributes, /*XNStatusAttributes, statusAttributes, */ (char *)NULL);
- if (xic)
- fInputContext = new TInputContext(xic);
-
diff --git a/editors/zoinks/files/patch-ide-TLogDocument.cpp b/editors/zoinks/files/patch-ide-TLogDocument.cpp
deleted file mode 100644
index 524b2dfa851e..000000000000
--- a/editors/zoinks/files/patch-ide-TLogDocument.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- ide/TLogDocument.cpp.orig 2007-11-03 00:04:36.000000000 +0100
-+++ ide/TLogDocument.cpp 2007-11-03 00:09:52.000000000 +0100
-@@ -262,7 +262,7 @@
-
- void TLogDocument::ClearText()
- {
-- fTextView->SetText("");
-+ fTextView->SetText((char *)"");
- }
-
-
diff --git a/editors/zoinks/files/patch-ide-TProjectDocument.cpp b/editors/zoinks/files/patch-ide-TProjectDocument.cpp
deleted file mode 100644
index 35ebfc4aa48c..000000000000
--- a/editors/zoinks/files/patch-ide-TProjectDocument.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- ide/TProjectDocument.cpp.orig 2007-11-04 22:37:49.000000000 +0100
-+++ ide/TProjectDocument.cpp 2007-11-04 22:38:02.000000000 +0100
-@@ -539,7 +539,7 @@
- chdir(workingDirectory);
-
- const char* command = fExternalDebuggerCommand;
-- execl("/bin/sh", "sh", "-c", command, NULL);
-+ execl("/bin/sh", "sh", "-c", command, (char *)NULL);
- }
- else if (pid < 0)
- ThrowSystemError(pid);
diff --git a/editors/zoinks/pkg-descr b/editors/zoinks/pkg-descr
deleted file mode 100644
index 4d9f75a61951..000000000000
--- a/editors/zoinks/pkg-descr
+++ /dev/null
@@ -1,8 +0,0 @@
-Zoinks is a programmer's editor and development environment for Unix/X11
-systems. The editor has features similar to Mac text editors like MPW
-and CodeWarrior. It also has some features for HTML authoring. Zoinks
-supports comparing/diffing files and directory hierarchies. It also
-supports inputting and editing multi-byte text (e.g. Japanese and other
-Asian languages).
-
-WWW: http://zoinks.mikelockwood.com/
diff --git a/editors/zoinks/pkg-plist b/editors/zoinks/pkg-plist
deleted file mode 100644
index 055fe8ef758b..000000000000
--- a/editors/zoinks/pkg-plist
+++ /dev/null
@@ -1,3 +0,0 @@
-bin/zoinks
-%%NLS%%share/locale/es/LC_MESSAGES/zoinks.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/zoinks.mo