pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

ee: remove, imported in the main tree.



Module Name:	pkgsrc-wip
Committed By:	Paolo Vincenzo Olivo <vms%retrobsd.ddns.net@localhost>
Pushed By:	vms
Date:		Tue Dec 6 12:42:02 2022 +0100
Changeset:	74f9bf97f2214dbd4be1d70a13f6074643e49cd6

Removed Files:
	ee/DESCR
	ee/Makefile
	ee/PLIST
	ee/distinfo
	ee/patches/patch-create.make
	ee/patches/patch-ee.c

Log Message:
ee: remove, imported in the main tree.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=74f9bf97f2214dbd4be1d70a13f6074643e49cd6

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 ee/DESCR                     |  3 ---
 ee/Makefile                  | 33 ------------------------
 ee/PLIST                     |  3 ---
 ee/distinfo                  |  7 -----
 ee/patches/patch-create.make | 61 --------------------------------------------
 ee/patches/patch-ee.c        | 17 ------------
 6 files changed, 124 deletions(-)

diffs:
diff --git a/ee/DESCR b/ee/DESCR
deleted file mode 100644
index e3972a6cdb..0000000000
--- a/ee/DESCR
+++ /dev/null
@@ -1,3 +0,0 @@
-An easy to use text editor. Intended to be usable with little or no
-instruction. Provides a terminal (curses based) interface. Features
-pop-up menus. Born in HP-UX, included in FreeBSD.
diff --git a/ee/Makefile b/ee/Makefile
deleted file mode 100644
index 506dac5113..0000000000
--- a/ee/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-# $NetBSD$
-
-DISTNAME=	ee-1.5.2.src
-PKGNAME=	${DISTNAME:S,.src,,}
-CATEGORIES=	editors
-MASTER_SITES=	https://mirrors.ustc.edu.cn/gentoo/distfiles/
-DIST_SUBDIR=	${PKGNAME_NOREV}
-EXTRACT_SUFX=	.tgz
-
-MAINTAINER=	vms%retrobsd.ddns.net@localhost
-HOMEPAGE=	https://www.ucl.ac.uk/~ccaabaa/is/unix/ee.htm
-COMMENT=	EasyEdit, a classic curses text editor
-LICENSE=	2-clause-bsd
-
-USE_NCURSES=	yes     # fixterm()
-
-MAKE_ENV+=	CFLAGS=${CFLAGS:Q}
-MAKE_ENV+=	LDFLAGS=${LDFLAGS:Q}
-
-INSTALLATION_DIRS=	bin ${PKGMANDIR}/man1
-
-WRKSRC=	${WRKDIR}/easyedit-${PKGVERSION_NOREV}
-
-do-build:
-	cd ${WRKSRC} && ${SETENV} ${MAKE_ENV}					\
-	${MAKE_PROGRAM:Q} ${MAKE_FLAGS} all
-
-do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/ee ${DESTDIR}${PREFIX}/bin
-	${INSTALL_MAN} ${WRKSRC}/ee.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
-
-.include "../../devel/ncurses/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/ee/PLIST b/ee/PLIST
deleted file mode 100644
index cc6003020a..0000000000
--- a/ee/PLIST
+++ /dev/null
@@ -1,3 +0,0 @@
-@comment $NetBSD$
-bin/ee
-man/man1/ee.1
diff --git a/ee/distinfo b/ee/distinfo
deleted file mode 100644
index de348891ff..0000000000
--- a/ee/distinfo
+++ /dev/null
@@ -1,7 +0,0 @@
-$NetBSD$
-
-BLAKE2s (ee-1.5.2/ee-1.5.2.src.tgz) = a8be0743e80ab053ff72e238da2ce66ed80bc494f1aa066cb50eb57ab5a9faf9
-SHA512 (ee-1.5.2/ee-1.5.2.src.tgz) = 9ca0e82d65971b0bce38e09c365b6eb8b81ca6ff5b244107ae254322e47e841e7f5345bf242a0a9dd66b731d46cead6f442016b9e070a1298e1a5319b1d7b97a
-Size (ee-1.5.2/ee-1.5.2.src.tgz) = 69651 bytes
-SHA1 (patch-create.make) = 89315d0e23bcd8f42a2020aa2197bba14400fe45
-SHA1 (patch-ee.c) = 9da740c0bf6720c8b44839a6037d9cdbd7b3ba52
diff --git a/ee/patches/patch-create.make b/ee/patches/patch-create.make
deleted file mode 100644
index c8c088065c..0000000000
--- a/ee/patches/patch-create.make
+++ /dev/null
@@ -1,61 +0,0 @@
-$NetBSD$
-
-Prefer local ncurses over ee's own implementation.
-
---- create.make.orig	2002-09-23 04:18:30.000000000 +0000
-+++ create.make
-@@ -154,35 +154,8 @@ else
- 	catgets="-DNO_CATGETS"
- fi
- 
--# make decisions about use of new_curse.c (use of new_curse is recommended 
--# rather than local curses)
--
--if [ -n "$terminfo_exists" -a -z "$termcap_exists" ]
--then
--	echo "Neither terminfo or termcap are on this system!  "
--	if [ -f /usr/include/curses.h ]
--	then
--		echo "Relying on local curses implementation."
--	else
--		cat <<-EOF
--		Don't know where to find curses, you'll need to modify 
--		source code to be able to build!
--		
--		Modify the file make.default and build ee by typing:
--		
--		make -f make.default
--		
--		EOF
--
--		exit 1
--	fi
--	
--	TARGET="curses"
--	curses=""
--else
--	curses="-DNCURSE"
--	TARGET="ee"
--fi
-+curses=""
-+TARGET="curses"
- 
- if [ -z "$termio" -a -z "$sgtty" ]
- then
-@@ -261,13 +234,15 @@ echo "DEFINES =	$termio $terminfo_exists
- echo "" >> make.local
- echo "CFLAGS =	$HAS_UNISTD $HAS_STDARG $HAS_STDLIB $HAS_CTYPE $HAS_SYS_IOCTL $HAS_SYS_WAIT $five_lib $five_include $select_hdr $other_cflags $termcap_exists" >> make.local
- echo "" >> make.local
-+echo "LDFLAGS =	$LDFLAGS" >> make.local
-+echo "" >> make.local
- echo "" >> make.local
- echo "all :	$TARGET" >> make.local
- 
- cat  >> make.local << EOF
- 
- curses :	ee.c
--	cc ee.c -o ee \$(CFLAGS) -lcurses 
-+	cc ee.c -o ee \$(CFLAGS) \$(LDFLAGS) -lncurses
- 
- ee :	ee.o new_curse.o
- 	cc -o ee ee.o new_curse.o \$(CFLAGS) 
diff --git a/ee/patches/patch-ee.c b/ee/patches/patch-ee.c
deleted file mode 100644
index a7a16cff5d..0000000000
--- a/ee/patches/patch-ee.c
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD$
-
-Portability fix for POSIX <signal.h>
-
---- ee.c.orig	2010-06-04 01:56:36.000000000 +0000
-+++ ee.c
-@@ -111,6 +111,10 @@ nl_catd catalog;
- #define SIGCHLD SIGCLD
- #endif
- 
-+#ifndef	SIGUNUSED
-+#define SIGUNUSED SIGSYS
-+#endif
-+
- #define TAB 9
- #define max(a, b)	(a > b ? a : b)
- #define min(a, b)	(a < b ? a : b)


Home | Main Index | Thread Index | Old Index