Commit bb2b4c32 authored by Rene Ladan's avatar Rene Ladan
Browse files

www/cssed: Remove expired port

2024-05-31 www/cssed: Abandonware and broken, doesn't work with Python 3.x
parent 6b157e6f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -3294,3 +3294,4 @@ dns/curvedns||2024-06-11|Has expired: Protocol never gained traction and is supe
textproc/mergestat||2024-06-11|Has expired: Marked BROKEN for over a year
www/bkmrkconv||2024-06-11|Has expired: Obsolete utility, generated files are already in a readable format
www/chems||2024-06-11|Has expired: Abandonware, last release in 2009 and no activity since upstream
www/cssed||2024-06-11|Has expired: Abandonware and broken, doesn't work with Python 3.x
+0 −1
Original line number Diff line number Diff line
@@ -120,7 +120,6 @@
    SUBDIR += cpr
    SUBDIR += crawl
    SUBDIR += css-mode.el
    SUBDIR += cssed
    SUBDIR += csso
    SUBDIR += csstidy
    SUBDIR += ctemplate

www/cssed/Makefile

deleted100644 → 0
+0 −39
Original line number Diff line number Diff line
PORTNAME=	cssed
PORTVERSION=	0.4.0
PORTREVISION=	16
CATEGORIES=	www
MASTER_SITES=	SF

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Application to help CSS style sheets creation and maintenance
WWW=		https://cssed.sourceforge.net/

LICENSE=	GPLv2
LICENSE_FILE=	${WRKSRC}/COPYING

BROKEN=		Not compatible with Python 3.x
DEPRECATED=	Abandonware and broken, doesn't work with Python 3.x
EXPIRATION_DATE=2024-05-31

USES=		compiler:c++11-lang dos2unix gettext gnome localbase pathfix \
		pkgconfig
DOS2UNIX_FILES=	scintilla/gtk/ScintillaGTK.cxx
USE_GNOME=	gtk20 libxml2
GNU_CONFIGURE=	yes
GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
CONFIGURE_ARGS=	--with-plugin-headers

CXXFLAGS+=	-Wno-c++11-narrowing

DESKTOP_ENTRIES="CSSED" "CSS Editor" "${DATADIR}/pixmaps/cssed-icon.png" \
		"${PORTNAME}" "GTK;Development;WebDevelopment;TextEditor;" ""

post-patch:
	@${REINPLACE_CMD} -e \
		's|gthread-2.0|gmodule-2.0|' ${WRKSRC}/configure
.for i in scintilla/gtk/Makefile.in src/Makefile.in
	@${REINPLACE_CMD} -e 's|gcc|@CC@|g ; \
		 s|g++|@CXX@|g' ${WRKSRC}/${i}
.endfor

.include <bsd.port.mk>

www/cssed/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (cssed-0.4.0.tar.gz) = 25d26d5d30311c88e7c6195e2407c1deb23997723cb939377f5f2078b778ecc4
SIZE (cssed-0.4.0.tar.gz) = 1457946
+0 −11
Original line number Diff line number Diff line
--- scintilla/src/LexCaml.cxx.orig	2005-05-27 03:30:23 UTC
+++ scintilla/src/LexCaml.cxx
@@ -273,7 +273,7 @@ void ColouriseCamlDoc(
 
 		case SCE_CAML_OPERATOR: {
 			// [try to] interpret as [additional] operator char
-			char* o = 0;
+			const char* o = 0;
 			if (iscaml(ch) || isspace(ch)			/* ident or whitespace */
 				|| ((o = strchr(")]};,\'\"`#", ch)) != 0)/* "termination" chars */
 				|| !strchr("!$%&*+-./:<=>?@^|~", ch)/* "operator" chars */) {
Loading