git: 074861a7a2f0 - main - devel/ossp-l2: Remove expired port

From: Rene Ladan <rene_at_FreeBSD.org>
Date: Sat, 02 Aug 2025 10:03:53 UTC
The branch main has been updated by rene:

URL: https://cgit.FreeBSD.org/ports/commit/?id=074861a7a2f03e081c45f5e26b546b5093343047

commit 074861a7a2f03e081c45f5e26b546b5093343047
Author:     Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2025-08-02 10:03:44 +0000
Commit:     Rene Ladan <rene@FreeBSD.org>
CommitDate: 2025-08-02 10:03:44 +0000

    devel/ossp-l2: Remove expired port
    
    2025-07-31 devel/ossp-l2: Abandoned upstream, last release in 2007
---
 MOVED                             |   1 +
 devel/Makefile                    |   1 -
 devel/ossp-l2/Makefile            |  26 --
 devel/ossp-l2/distinfo            |   2 -
 devel/ossp-l2/files/patch-va.diff | 496 --------------------------------------
 devel/ossp-l2/pkg-descr           |   4 -
 devel/ossp-l2/pkg-plist           |  10 -
 7 files changed, 1 insertion(+), 539 deletions(-)

diff --git a/MOVED b/MOVED
index 08a418979363..18155289367b 100644
--- a/MOVED
+++ b/MOVED
@@ -4696,3 +4696,4 @@ devel/silc-toolkit||2025-08-02|Has expired: Protocol that never got any traction
 devel/ossp-xds||2025-08-02|Has expired: Abandoned upstream, last release in 2005
 devel/ossp-al||2025-08-02|Has expired: Obsolete and abandoned upstream, last release in 2005
 devel/ossp-val||2025-08-02|Has expired: Abandoned upstream, last release in 2005
+devel/ossp-l2||2025-08-02|Has expired: Abandoned upstream, last release in 2007
diff --git a/devel/Makefile b/devel/Makefile
index f29287e9bc69..e912751e153e 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -1836,7 +1836,6 @@
     SUBDIR += osc
     SUBDIR += ossp-cfg
     SUBDIR += ossp-ex
-    SUBDIR += ossp-l2
     SUBDIR += ossp-var
     SUBDIR += outcome
     SUBDIR += p4
diff --git a/devel/ossp-l2/Makefile b/devel/ossp-l2/Makefile
deleted file mode 100644
index f007b73e915f..000000000000
--- a/devel/ossp-l2/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-PORTNAME=	l2
-PORTVERSION=	0.9.13
-PORTREVISION=	2
-CATEGORIES=	devel
-MASTER_SITES=	OSSP/lib/${PORTNAME}
-PKGNAMEPREFIX=	ossp-
-
-MAINTAINER=	ports@FreeBSD.org
-COMMENT=	C library for a flexible and sophisticated Unix logging facility
-WWW=		http://www.ossp.org/pkg/lib/l2/
-
-DEPRECATED=	Abandoned upstream, last release in 2007
-EXPIRATION_DATE=2025-07-31
-
-USES=		libtool
-GNU_CONFIGURE=	yes
-GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
-USE_LDCONFIG=	yes
-
-check:	build
-	@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} check)
-
-post-install:
-	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/l2tool ${STAGEDIR}${PREFIX}/lib/libl2.so
-
-.include <bsd.port.mk>
diff --git a/devel/ossp-l2/distinfo b/devel/ossp-l2/distinfo
deleted file mode 100644
index fe8533bd26f2..000000000000
--- a/devel/ossp-l2/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (l2-0.9.13.tar.gz) = 5b4b45cb3e7d9488ed86716e483f03ef5472b11108708d187faa73d8330348e3
-SIZE (l2-0.9.13.tar.gz) = 432411
diff --git a/devel/ossp-l2/files/patch-va.diff b/devel/ossp-l2/files/patch-va.diff
deleted file mode 100644
index 6690f1f0b538..000000000000
--- a/devel/ossp-l2/files/patch-va.diff
+++ /dev/null
@@ -1,496 +0,0 @@
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2.h.in l2-0.9.11/l2.h.in
---- l2.h.in	Mon Oct  3 11:06:18 2005
-+++ l2.h.in	Thu Oct 13 08:20:19 2005
-@@ -168,7 +168,7 @@
-     const char *name;
-     l2_chtype_t type;
-     l2_result_t (*create)   (l2_context_t *ctx, l2_channel_t *ch);
--    l2_result_t (*configure)(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap);
-+    l2_result_t (*configure)(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list *ap);
-     l2_result_t (*open)     (l2_context_t *ctx, l2_channel_t *ch);
-     l2_result_t (*write)    (l2_context_t *ctx, l2_channel_t *ch, l2_level_t level, const char *buf, size_t bufsize);
-     l2_result_t (*flush)    (l2_context_t *ctx, l2_channel_t *ch);
-@@ -222,7 +222,7 @@
- l2_result_t   l2_channel_flush      (l2_channel_t *ch);
- l2_result_t   l2_channel_close      (l2_channel_t *ch);
- l2_result_t   l2_channel_log        (l2_channel_t *ch, l2_level_t level, const char *fmt, ...);
--l2_result_t   l2_channel_vlog       (l2_channel_t *ch, l2_level_t level, const char *fmt, va_list ap);
-+l2_result_t   l2_channel_vlog       (l2_channel_t *ch, l2_level_t level, const char *fmt, va_list *ap);
- l2_result_t   l2_channel_link       (l2_channel_t *ch, l2_link_t id, l2_channel_t *ch2, ...);
- l2_result_t   l2_channel_unlink     (l2_channel_t *ch);
- l2_result_t   l2_channel_upstream   (l2_channel_t *ch, l2_channel_t **chU);
-@@ -232,10 +232,10 @@
- 
- /* channel tree specification operations */
- l2_result_t   l2_spec               (l2_channel_t **ch, l2_env_t *env, const char *spec, ...);
--l2_result_t   l2_vspec              (l2_channel_t **ch, l2_env_t *env, const char *spec, va_list ap);
-+l2_result_t   l2_vspec              (l2_channel_t **ch, l2_env_t *env, const char *spec, va_list *ap);
- 
- /* utility operations */
--l2_result_t   l2_util_setparams     (l2_env_t *env, l2_param_t p[], const char *fmt, va_list ap);
-+l2_result_t   l2_util_setparams     (l2_env_t *env, l2_param_t p[], const char *fmt, va_list *ap);
- l2_result_t   l2_util_l2s           (char *string,       size_t maxlen, int sep, unsigned int  levelmask);
- l2_result_t   l2_util_s2l           (const char *string, size_t maxlen, int sep, unsigned int *levelmask);
- l2_result_t   l2_util_fmt_string    (l2_context_t *, const char, const char *, char *, size_t, size_t *, va_list *);
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_ch_buffer.c l2-0.9.11/l2_ch_buffer.c
---- l2_ch_buffer.c	Mon Oct  3 11:06:18 2005
-+++ l2_ch_buffer.c	Thu Oct 13 08:14:59 2005
-@@ -156,7 +156,7 @@
- }
- 
- /* configure channel */
--static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap)
-+static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list *ap)
- {
-     l2_ch_buffer_t *cfg = (l2_ch_buffer_t *)ctx->vp;
-     l2_param_t pa[4];
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_ch_fd.c l2-0.9.11/l2_ch_fd.c
---- l2_ch_fd.c	Mon Oct  3 11:06:18 2005
-+++ l2_ch_fd.c	Thu Oct 13 08:10:28 2005
-@@ -55,7 +55,7 @@
- }
- 
- /* configure channel */
--static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap)
-+static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list *ap)
- {
-     l2_ch_fd_t *cfg;
-     l2_param_t pa[2];
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_ch_file.c l2-0.9.11/l2_ch_file.c
---- l2_ch_file.c	Mon Oct  3 11:06:18 2005
-+++ l2_ch_file.c	Thu Oct 13 08:12:12 2005
-@@ -115,7 +115,7 @@
- }
- 
- /* configure channel */
--static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap)
-+static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list *ap)
- {
-     l2_ch_file_t *cfg = (l2_ch_file_t *)ctx->vp;
-     l2_param_t pa[7];
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_ch_filter.c l2-0.9.11/l2_ch_filter.c
---- l2_ch_filter.c	Mon Oct  3 11:06:18 2005
-+++ l2_ch_filter.c	Thu Oct 13 08:14:22 2005
-@@ -63,7 +63,7 @@
- }
- 
- /* configure channel */
--static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap)
-+static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list *ap)
- {
-     l2_ch_filter_t *cfg = (l2_ch_filter_t *)ctx->vp;
-     l2_env_t *env;
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_ch_irc.c l2-0.9.11/l2_ch_irc.c
---- l2_ch_irc.c	Mon Oct  3 11:06:18 2005
-+++ l2_ch_irc.c	Thu Oct 13 08:13:30 2005
-@@ -95,7 +95,7 @@
- }
- 
- /* configure channel */
--static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap)
-+static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list *ap)
- {
-     l2_ch_irc_t *cfg = (l2_ch_irc_t *)ctx->vp;
-     l2_param_t pa[12];
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_ch_pipe.c l2-0.9.11/l2_ch_pipe.c
---- l2_ch_pipe.c	Mon Oct  3 11:06:18 2005
-+++ l2_ch_pipe.c	Thu Oct 13 08:12:31 2005
-@@ -170,7 +170,7 @@
- }
- 
- /* configure channel */
--static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap)
-+static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list *ap)
- {
-     l2_ch_pipe_t *cfg = (l2_ch_pipe_t *)ctx->vp;
-     l2_param_t pa[4];
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_ch_prefix.c l2-0.9.11/l2_ch_prefix.c
---- l2_ch_prefix.c	Mon Oct  3 11:06:18 2005
-+++ l2_ch_prefix.c	Thu Oct 13 08:14:30 2005
-@@ -62,7 +62,7 @@
- }
- 
- /* configure channel */
--static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap)
-+static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list *ap)
- {
-     l2_ch_prefix_t *cfg = (l2_ch_prefix_t *)ctx->vp;
-     l2_param_t pa[3];
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_ch_smtp.c l2-0.9.11/l2_ch_smtp.c
---- l2_ch_smtp.c	Mon Oct  3 11:06:18 2005
-+++ l2_ch_smtp.c	Thu Oct 13 08:13:48 2005
-@@ -89,7 +89,7 @@
- }
- 
- /* configure channel */
--static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap)
-+static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list *ap)
- {
-     l2_ch_smtp_t *cfg = (l2_ch_smtp_t *)ctx->vp;
-     l2_param_t pa[10];
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_ch_socket.c l2-0.9.11/l2_ch_socket.c
---- l2_ch_socket.c	Mon Oct  3 11:06:18 2005
-+++ l2_ch_socket.c	Thu Oct 13 08:13:11 2005
-@@ -73,7 +73,7 @@
- }
- 
- /* configure channel */
--static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap)
-+static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list *ap)
- {
-     l2_ch_socket_t *cfg = (l2_ch_socket_t *)ctx->vp;
-     l2_param_t pa[5];
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_ch_syslog.c l2-0.9.11/l2_ch_syslog.c
---- l2_ch_syslog.c	Mon Oct  3 11:06:18 2005
-+++ l2_ch_syslog.c	Thu Oct 13 08:12:54 2005
-@@ -157,7 +157,7 @@
- }
- 
- /* configure channel */
--static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap)
-+static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list *ap)
- {
-     l2_ch_syslog_t *cfg = (l2_ch_syslog_t *)ctx->vp;
-     l2_param_t pa[8];
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_channel.c l2-0.9.11/l2_channel.c
---- l2_channel.c	Mon Oct  3 11:06:18 2005
-+++ l2_channel.c	Thu Oct 13 08:15:46 2005
-@@ -284,7 +284,7 @@
-     rv = L2_OK;
-     va_start(ap, fmt);
-     if (ch->handler.configure != NULL)
--        rv = ch->handler.configure(&ch->context, ch, fmt, ap);
-+        rv = ch->handler.configure(&ch->context, ch, fmt, &ap);
-     va_end(ap);
- 
-     return rv;
-@@ -506,7 +506,7 @@
- 
-     /* pass-through to va_list-based variant */
-     va_start(ap, fmt);
--    rv = l2_channel_vlog(ch, level, fmt, ap);
-+    rv = l2_channel_vlog(ch, level, fmt, &ap);
-     va_end(ap);
- 
-     return rv;
-@@ -551,7 +551,7 @@
- }
- 
- /* log a message to channel (va_list-variant) */
--l2_result_t l2_channel_vlog(l2_channel_t *ch, l2_level_t level, const char *fmt, va_list ap)
-+l2_result_t l2_channel_vlog(l2_channel_t *ch, l2_level_t level, const char *fmt, va_list *ap)
- {
-     int l, j;
-     size_t len;
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_env.c l2-0.9.11/l2_env.c
---- l2_env.c	Mon Oct  3 11:06:18 2005
-+++ l2_env.c	Thu Oct 13 07:52:59 2005
-@@ -159,7 +159,7 @@
- 
-     /* remember error information */
-     va_start(ap, fmt);
--    l2_util_vsprintf(env->szErrorInfo, sizeof(env->szErrorInfo), fmt, ap);
-+    l2_util_vsprintf(env->szErrorInfo, sizeof(env->szErrorInfo), fmt, &ap);
-     env->rvErrorInfo = rv;
-     va_end(ap);
- 
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_spec.c l2-0.9.11/l2_spec.c
---- l2_spec.c	Mon Oct  3 11:06:18 2005
-+++ l2_spec.c	Thu Oct 13 08:09:33 2005
-@@ -48,14 +48,14 @@
- 
-     /* pass-through to va_list-based variant */
-     va_start(ap, spec);
--    rv = l2_vspec(ch, env, spec, ap);
-+    rv = l2_vspec(ch, env, spec, &ap);
-     va_end(ap);
- 
-     return rv;
- }
- 
- /* build a channel tree according to a textual specification (va_list variant) */
--l2_result_t l2_vspec(l2_channel_t **ch, l2_env_t *env, const char *spec, va_list ap)
-+l2_result_t l2_vspec(l2_channel_t **ch, l2_env_t *env, const char *spec, va_list *ap)
- {
-     l2_spec_ctx_t ctx;
-     void *yyscan;
-@@ -146,7 +146,7 @@
- 
-     /* remember error */
-     va_start(ap, fmt);
--    if ((cp = l2_util_vasprintf(fmt, ap)) != NULL) {
-+    if ((cp = l2_util_vasprintf(fmt, &ap)) != NULL) {
-         l2_env_errorinfo(ctx->env, rv, "line %d, column %d: `%s'; %s",
-                          line, column, cpBuf, cp);
-         free(cp);
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_ut_format.c l2-0.9.11/l2_ut_format.c
---- l2_ut_format.c	Mon Oct  3 11:06:18 2005
-+++ l2_ut_format.c	Wed Oct 12 20:46:08 2005
-@@ -640,7 +640,7 @@
- l2_util_format(
-     l2_util_format_t *vbuff,
-     const char *fmt,
--    va_list ap)
-+    va_list *ap)
- {
-     register char *sp;
-     register char *bep;
-@@ -735,7 +735,7 @@
-                     adjust_width = TRUE;
-                 }
-                 else if (*fmt == '*') {
--                    min_width = va_arg(ap, int);
-+                    min_width = va_arg(*ap, int);
-                     fmt++;
-                     adjust_width = TRUE;
-                     if (min_width < 0) {
-@@ -760,7 +760,7 @@
-                         STR_TO_DEC(fmt, precision);
-                     }
-                     else if (*fmt == '*') {
--                        precision = va_arg(ap, int);
-+                        precision = va_arg(*ap, int);
-                         fmt++;
-                         if (precision < 0)
-                             precision = 0;
-@@ -809,17 +809,17 @@
-                 /* Unsigned Decimal Integer */
-                 case 'u':
-                     if (var_type == IS_QUAD) {
--                        i_quad = va_arg(ap, u_quad_int);
-+                        i_quad = va_arg(*ap, u_quad_int);
-                         s = conv_10_quad(i_quad, 1, &is_negative,
-                                          &num_buf[NUM_BUF_SIZE], &s_len);
-                     }
-                     else {
-                         if (var_type == IS_LONG)
--                            i_num = (long_int)va_arg(ap, u_long_int);
-+                            i_num = (long_int)va_arg(*ap, u_long_int);
-                         else if (var_type == IS_SHORT)
--                            i_num = (long_int)(unsigned short)va_arg(ap, unsigned int);
-+                            i_num = (long_int)(unsigned short)va_arg(*ap, unsigned int);
-                         else
--                            i_num = (long_int)va_arg(ap, unsigned int);
-+                            i_num = (long_int)va_arg(*ap, unsigned int);
-                         s = conv_10(i_num, 1, &is_negative,
-                                     &num_buf[NUM_BUF_SIZE], &s_len);
-                     }
-@@ -830,17 +830,17 @@
-                 case 'd':
-                 case 'i':
-                     if (var_type == IS_QUAD) {
--                        i_quad = va_arg(ap, quad_int);
-+                        i_quad = va_arg(*ap, quad_int);
-                         s = conv_10_quad(i_quad, 0, &is_negative,
-                                          &num_buf[NUM_BUF_SIZE], &s_len);
-                     }
-                     else {
-                         if (var_type == IS_LONG)
--                            i_num = (long_int)va_arg(ap, long_int);
-+                            i_num = (long_int)va_arg(*ap, long_int);
-                         else if (var_type == IS_SHORT)
--                            i_num = (long_int)(short)va_arg(ap, int);
-+                            i_num = (long_int)(short)va_arg(*ap, int);
-                         else
--                            i_num = (long_int)va_arg(ap, int);
-+                            i_num = (long_int)va_arg(*ap, int);
-                         s = conv_10(i_num, 0, &is_negative,
-                                     &num_buf[NUM_BUF_SIZE], &s_len);
-                     }
-@@ -857,17 +857,17 @@
-                 /* Unsigned Octal Integer */
-                 case 'o':
-                     if (var_type == IS_QUAD) {
--                        ui_quad = va_arg(ap, u_quad_int);
-+                        ui_quad = va_arg(*ap, u_quad_int);
-                         s = conv_p2_quad(ui_quad, 3, *fmt,
-                                          &num_buf[NUM_BUF_SIZE], &s_len);
-                     }
-                     else {
-                         if (var_type == IS_LONG)
--                            ui_num = (u_long_int) va_arg(ap, u_long_int);
-+                            ui_num = (u_long_int) va_arg(*ap, u_long_int);
-                         else if (var_type == IS_SHORT)
--                            ui_num = (u_long_int)(unsigned short)va_arg(ap, unsigned int);
-+                            ui_num = (u_long_int)(unsigned short)va_arg(*ap, unsigned int);
-                         else
--                            ui_num = (u_long_int)va_arg(ap, unsigned int);
-+                            ui_num = (u_long_int)va_arg(*ap, unsigned int);
-                         s = conv_p2(ui_num, 3, *fmt, &num_buf[NUM_BUF_SIZE], &s_len);
-                     }
-                     FIX_PRECISION(adjust_precision, precision, s, s_len);
-@@ -881,17 +881,17 @@
-                 case 'x':
-                 case 'X':
-                     if (var_type == IS_QUAD) {
--                        ui_quad = va_arg(ap, u_quad_int);
-+                        ui_quad = va_arg(*ap, u_quad_int);
-                         s = conv_p2_quad(ui_quad, 4, *fmt,
-                                          &num_buf[NUM_BUF_SIZE], &s_len);
-                     }
-                     else {
-                         if (var_type == IS_LONG)
--                            ui_num = (u_long_int)va_arg(ap, u_long_int);
-+                            ui_num = (u_long_int)va_arg(*ap, u_long_int);
-                         else if (var_type == IS_SHORT)
--                            ui_num = (u_long_int)(unsigned short)va_arg(ap, unsigned int);
-+                            ui_num = (u_long_int)(unsigned short)va_arg(*ap, unsigned int);
-                         else
--                            ui_num = (u_long_int)va_arg(ap, unsigned int);
-+                            ui_num = (u_long_int)va_arg(*ap, unsigned int);
-                         s = conv_p2(ui_num, 4, *fmt, &num_buf[NUM_BUF_SIZE], &s_len);
-                     }
-                     FIX_PRECISION(adjust_precision, precision, s, s_len);
-@@ -904,7 +904,7 @@
- 
-                 /* String */
-                 case 's':
--                    s = va_arg(ap, char *);
-+                    s = va_arg(*ap, char *);
-                     if (s != NULL) {
-                         s_len = strlen(s);
-                         if (adjust_precision && precision < s_len)
-@@ -921,7 +921,7 @@
-                 case 'f':
-                 case 'e':
-                 case 'E':
--                    fp_num = va_arg(ap, double);
-+                    fp_num = va_arg(*ap, double);
-                     if (isnan(fp_num)) {
-                         s = "NaN";
-                         s_len = 3;
-@@ -947,7 +947,7 @@
-                 /* Double Floating Point (style 2) */
-                 case 'g':
-                 case 'G':
--                    fp_num = va_arg(ap, double);
-+                    fp_num = va_arg(*ap, double);
-                     if (isnan(fp_num)) {
-                         s = "NaN";
-                         s_len = 3;
-@@ -981,7 +981,7 @@
- 
-                 /* Single Character */
-                 case 'c':
--                    char_buf[0] = (char) (va_arg(ap, int));
-+                    char_buf[0] = (char) (va_arg(*ap, int));
-                     s = &char_buf[0];
-                     s_len = 1;
-                     pad_char = ' ';
-@@ -998,13 +998,13 @@
-                 /* Special: Number of already written characters */
-                 case 'n':
-                     if (var_type == IS_QUAD)
--                        *(va_arg(ap, quad_int *)) = cc;
-+                        *(va_arg(*ap, quad_int *)) = cc;
-                     else if (var_type == IS_LONG)
--                        *(va_arg(ap, long *)) = cc;
-+                        *(va_arg(*ap, long *)) = cc;
-                     else if (var_type == IS_SHORT)
--                        *(va_arg(ap, short *)) = cc;
-+                        *(va_arg(*ap, short *)) = cc;
-                     else
--                        *(va_arg(ap, int *)) = cc;
-+                        *(va_arg(*ap, int *)) = cc;
-                     break;
- 
-                 /*
-@@ -1012,10 +1012,10 @@
-                  */
-                 case 'p':
- #if defined(SIZEOF_LONG_LONG) && (SIZEOF_LONG_LONG == SIZEOF_VOID_P)
--                    ui_quad = (u_quad_int) va_arg(ap, void *);
-+                    ui_quad = (u_quad_int) va_arg(*ap, void *);
-                     s = conv_p2_quad(ui_quad, 4, 'x', &num_buf[NUM_BUF_SIZE], &s_len);
- #else
--                    ui_num = (u_long_int) va_arg(ap, void *);
-+                    ui_num = (u_long_int) va_arg(*ap, void *);
-                     s = conv_p2(ui_num, 4, 'x', &num_buf[NUM_BUF_SIZE], &s_len);
- #endif
-                     pad_char = ' ';
-@@ -1043,7 +1043,7 @@
-                     if (vbuff->format != NULL) {
-                         vbuff->format(vbuff,
-                                       &prefix_char, &pad_char, &s, &s_len,
--                                      num_buf, NUM_BUF_SIZE, extinfo, *fmt, (va_list *)(void *)&ap);
-+                                      num_buf, NUM_BUF_SIZE, extinfo, *fmt, ap);
-                         if (s == NULL)
-                             return -1;
-                     }
-@@ -1112,7 +1112,7 @@
-     return -1;
- }
- 
--int l2_util_vsprintf(char *s, size_t n, const char *fmt, va_list ap)
-+int l2_util_vsprintf(char *s, size_t n, const char *fmt, va_list *ap)
- {
-     l2_util_format_t handle;
-     char buf[STR_FORMAT_BUFLEN];
-@@ -1147,18 +1147,18 @@
-     return rv;
- }
- 
--char *l2_util_vasprintf(const char *fmt, va_list ap)
-+char *l2_util_vasprintf(const char *fmt, va_list *ap)
- {
-     va_list apbak;
-     char *s;
-     int rv;
- 
--    va_copy(apbak, ap);
-+    va_copy(apbak, *ap);
-     if ((rv = l2_util_vsprintf(NULL, -1, fmt, ap)) == -1)
-         return NULL;
-     if ((s = malloc(rv+1)) == NULL)
-         return NULL;
--    va_copy(ap, apbak);
-+    va_copy(*ap, apbak);
-     if ((rv = l2_util_vsprintf(s, rv+1, fmt, ap)) == -1) {
-         free(s);
-         return NULL;
-@@ -1172,7 +1172,7 @@
-     int rv;
- 
-     va_start(ap, fmt);
--    rv = l2_util_vsprintf(s, n, fmt, ap);
-+    rv = l2_util_vsprintf(s, n, fmt, &ap);
-     va_end(ap);
-     return rv;
- }
-@@ -1183,7 +1183,7 @@
-     char *rv;
- 
-     va_start(ap, fmt);
--    rv = l2_util_vasprintf(fmt, ap);
-+    rv = l2_util_vasprintf(fmt, &ap);
-     va_end(ap);
-     return rv;
- }
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_ut_format.h l2-0.9.11/l2_ut_format.h
---- l2_ut_format.h	Mon Oct  3 11:06:18 2005
-+++ l2_ut_format.h	Wed Oct 12 20:45:22 2005
-@@ -66,9 +66,9 @@
- 
- typedef struct l2_util_format_st l2_util_format_t;
- 
--int   l2_util_format    (l2_util_format_t *vbuff, const char *fmt, va_list ap);
--int   l2_util_vsprintf  (char *s, size_t n, const char *fmt, va_list ap);
--char *l2_util_vasprintf (const char *fmt, va_list ap);
-+int   l2_util_format    (l2_util_format_t *vbuff, const char *fmt, va_list *ap);
-+int   l2_util_vsprintf  (char *s, size_t n, const char *fmt, va_list *ap);
-+char *l2_util_vasprintf (const char *fmt, va_list *ap);
- int   l2_util_sprintf   (char *s, size_t n, const char *fmt, ...);
- char *l2_util_asprintf  (const char *fmt, ...);
- 
-diff -ur --exclude-from=excl l2-0.9.11.orig/l2_ut_param.c l2-0.9.11/l2_ut_param.c
---- l2_ut_param.c	Mon Oct  3 11:06:18 2005
-+++ l2_ut_param.c	Thu Oct 13 08:06:33 2005
-@@ -37,7 +37,7 @@
- #include <math.h>
- #include <ctype.h>
- 
--l2_result_t l2_util_setparams(l2_env_t *env, l2_param_t pa[], const char *fmt, va_list ap)
-+l2_result_t l2_util_setparams(l2_env_t *env, l2_param_t pa[], const char *fmt, va_list *ap)
- {
-     char *cpB, *cpE;
-     char *spec;
diff --git a/devel/ossp-l2/pkg-descr b/devel/ossp-l2/pkg-descr
deleted file mode 100644
index be3ebdc65749..000000000000
--- a/devel/ossp-l2/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-OSSP l2 is a C library providing a very flexible and sophisticated Unix logging
-facility. It is based on the model of arbitrary number of channels, stacked
-together in a top-down data flow tree structure with filtering channels in
-internal nodes and output channels on the leave nodes.
diff --git a/devel/ossp-l2/pkg-plist b/devel/ossp-l2/pkg-plist
deleted file mode 100644
index c26a5d027b4a..000000000000
--- a/devel/ossp-l2/pkg-plist
+++ /dev/null
@@ -1,10 +0,0 @@
-bin/l2-config
-bin/l2tool
-include/l2.h
-lib/libl2.a
-lib/libl2.so
-lib/libl2.so.9
-lib/libl2.so.9.0.33
-share/man/man1/l2-config.1.gz
-share/man/man1/l2tool.1.gz
-share/man/man3/l2.3.gz