summaryrefslogtreecommitdiff
path: root/devel/linenoise-ng
diff options
context:
space:
mode:
Diffstat (limited to 'devel/linenoise-ng')
-rw-r--r--devel/linenoise-ng/Makefile27
-rw-r--r--devel/linenoise-ng/distinfo3
-rw-r--r--devel/linenoise-ng/files/patch-CMakeLists.txt32
-rw-r--r--devel/linenoise-ng/files/patch-src_linenoise.cpp10
-rw-r--r--devel/linenoise-ng/pkg-descr3
5 files changed, 0 insertions, 75 deletions
diff --git a/devel/linenoise-ng/Makefile b/devel/linenoise-ng/Makefile
deleted file mode 100644
index 339205a2b7bb..000000000000
--- a/devel/linenoise-ng/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-PORTNAME= linenoise-ng
-PORTVERSION= 1.0.1
-DISTVERSIONPREFIX=v
-CATEGORIES= devel
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Small, portable readline replacement
-WWW= https://github.com/arangodb/linenoise-ng
-
-LICENSE= BSD3CLAUSE
-LICENSE_FILE= ${WRKSRC}/LICENSE
-
-USES= cmake compiler:c++11-lang
-USE_LDCONFIG= yes
-
-USE_GITHUB= yes
-GH_ACCOUNT= arangodb
-
-CFLAGS+= -fPIC
-
-CMAKE_ON= BUILD_SHARED_LIBS
-
-PLIST_FILES= include/linenoise.h \
- lib/liblinenoise.so \
- lib/liblinenoise.so.0
-
-.include <bsd.port.mk>
diff --git a/devel/linenoise-ng/distinfo b/devel/linenoise-ng/distinfo
deleted file mode 100644
index 77406ef01626..000000000000
--- a/devel/linenoise-ng/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1669801684
-SHA256 (arangodb-linenoise-ng-v1.0.1_GH0.tar.gz) = c91c074aa2edc6d73c1e135b6c5c64feabd7e499cd93aa0f643e21e5d34490e4
-SIZE (arangodb-linenoise-ng-v1.0.1_GH0.tar.gz) = 42724
diff --git a/devel/linenoise-ng/files/patch-CMakeLists.txt b/devel/linenoise-ng/files/patch-CMakeLists.txt
deleted file mode 100644
index 22405f937b7d..000000000000
--- a/devel/linenoise-ng/files/patch-CMakeLists.txt
+++ /dev/null
@@ -1,32 +0,0 @@
---- CMakeLists.txt.orig 2017-03-06 16:01:33 UTC
-+++ CMakeLists.txt
-@@ -1,6 +1,6 @@
- # -*- mode: CMAKE; -*-
-
--cmake_minimum_required(VERSION 2.6)
-+cmake_minimum_required(VERSION 3.9)
-
- project(linenoise)
-
-@@ -13,7 +13,7 @@ endif()
- message(STATUS "Build mode: ${CMAKE_BUILD_TYPE}")
-
- # INFO
--set(LINENOISE_VERSION "1.0.0" CACHE path "Linenoise version")
-+set(LINENOISE_VERSION "1.0.1" CACHE path "Linenoise version")
- set(LINENOISE_DISPLAY_NAME "Linenoise-NG")
- set(LINENOISE_URL_INFO_ABOUT "https://github.com/arangodb/linenoise-ng")
- set(LINENOISE_CONTACT "hackers@arangodb.org")
-@@ -77,11 +77,11 @@ include_directories(${PROJECT_SOURCE_DIR}/include ${PR
- # build liblinenoise
- add_library(
- linenoise
-- STATIC
- src/ConvertUTF.cpp
- src/linenoise.cpp
- src/wcwidth.cpp
- )
-+set_target_properties(linenoise PROPERTIES SOVERSION 0)
-
- # install
- install(TARGETS linenoise DESTINATION lib)
diff --git a/devel/linenoise-ng/files/patch-src_linenoise.cpp b/devel/linenoise-ng/files/patch-src_linenoise.cpp
deleted file mode 100644
index 04335b7f74c7..000000000000
--- a/devel/linenoise-ng/files/patch-src_linenoise.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/linenoise.cpp.orig 2017-03-06 16:01:33 UTC
-+++ src/linenoise.cpp
-@@ -110,6 +110,7 @@
- #include <unistd.h>
- #include <stdlib.h>
- #include <string.h>
-+#include <sys/stat.h>
- #include <sys/types.h>
- #include <sys/ioctl.h>
- #include <cctype>
diff --git a/devel/linenoise-ng/pkg-descr b/devel/linenoise-ng/pkg-descr
deleted file mode 100644
index 4d774012925e..000000000000
--- a/devel/linenoise-ng/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-A small, portable GNU readline replacement for FreeBSD, Linux, Windows and
-macOS which is capable of handling UTF-8 characters. Unlike GNU readline, which
-is GPL, this library uses a BSD license and can be used in any kind of program.