Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

11
sysutils/clex/DESCR Normal file
View File

@@ -0,0 +1,11 @@
CLEX (pronounced KLEKS) is a file manager with a full-screen user
interface. It displays directory contents including the file status
details and provides features like command history, filename
insertion, or name completion in order to help users to create
commands to be executed by the shell.
CLEX is a versatile tool for system administrators and all users that
utilize the enormous power of the command line. Its unique one-panel
user interface enhances productivity and lessens the probability of
mistake. There are no built-in commands, CLEX is an add-on to your
favorite shell.

28
sysutils/clex/Makefile Normal file
View File

@@ -0,0 +1,28 @@
# $NetBSD: Makefile,v 1.6 2012/10/23 19:50:55 asau Exp $
#
DISTNAME= clex-4.6.4
CATEGORIES= sysutils
MASTER_SITES= http://www.clex.sk/download/
MAINTAINER= bartosz.kuzma@gmail.com
HOMEPAGE= http://www.clex.sk/
COMMENT= File manager with a full-screen user interface
LICENSE= gnu-gpl-v2
USE_NCURSES= yes # enter_{bold,reverse,underline}_mode
GNU_CONFIGURE= yes
# for easy to maintain patches
post-extract:
cd ${WRKSRC} && ${RM} -f src/*.orig
.include "../../mk/bsd.prefs.mk"
# libtinfo in DragonFly is linked with libncurses
.if ${OPSYS} == "DragonFly"
BUILDLINK_TRANSFORM+= rm:-ltinfo
.endif
.include "../../devel/ncursesw/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

7
sysutils/clex/PLIST Normal file
View File

@@ -0,0 +1,7 @@
@comment $NetBSD: PLIST,v 1.2 2012/02/17 13:23:28 obache Exp $
bin/cfg-clex
bin/clex
bin/kbd-test
man/man1/cfg-clex.1
man/man1/clex.1
man/man1/kbd-test.1

7
sysutils/clex/distinfo Normal file
View File

@@ -0,0 +1,7 @@
$NetBSD: distinfo,v 1.4 2012/02/17 13:23:28 obache Exp $
SHA1 (clex-4.6.4.tar.gz) = 601091677349dbd8613f185a594361a8d78c65ab
RMD160 (clex-4.6.4.tar.gz) = 6f1ea4a1ca1c4b26f34c429ef458a04491950695
Size (clex-4.6.4.tar.gz) = 243297 bytes
SHA1 (patch-src_cfg-clex) = 4fb8995131195b4f54a53c72eac85da2cd6f14a2
SHA1 (patch-src_clexheaders.h) = d60ec230f3b2656063c1f51257fc4e29267cf8b7

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-src_cfg-clex,v 1.1 2012/02/17 13:23:28 obache Exp $
* portability fix
--- src/cfg-clex.orig 2009-05-20 08:58:50.000000000 +0000
+++ src/cfg-clex
@@ -144,7 +144,7 @@ convert_config() {
if [ x"$CLEX_ACTIVE_LAYOUT" != x ] ; then
CLEX_LAYOUT_ACTIVE=`expr $CLEX_ACTIVE_LAYOUT + 1`
fi
- if [ x"$CLEX_XTERM_TITLE" == x'2' ] ; then
+ if [ x"$CLEX_XTERM_TITLE" = x'2' ] ; then
CLEX_XTERM_TITLE='1'
fi
if [ x"$CLEX_LAYOUT1" != x ] ; then

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-src_clexheaders.h,v 1.1 2012/02/17 13:23:28 obache Exp $
* Need to treat *BSD same as FreeBSD.
--- src/clexheaders.h.orig 2009-01-11 19:44:35.000000000 +0000
+++ src/clexheaders.h
@@ -1,4 +1,4 @@
-#if !defined(__APPLE__) && !defined(__FreeBSD__)
+#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(__OpenBSD__) && !defined(__DragonFly__)
# define _XOPEN_SOURCE 600
#endif