mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Variable substitution library.
This commit is contained in:
parent
f45323ba74
commit
15e5d1e02a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=74406
7 changed files with 48 additions and 0 deletions
|
@ -413,6 +413,7 @@
|
||||||
SUBDIR += ossp-ex
|
SUBDIR += ossp-ex
|
||||||
SUBDIR += ossp-l2
|
SUBDIR += ossp-l2
|
||||||
SUBDIR += ossp-mm
|
SUBDIR += ossp-mm
|
||||||
|
SUBDIR += ossp-var
|
||||||
SUBDIR += p4.el
|
SUBDIR += p4.el
|
||||||
SUBDIR += p4db
|
SUBDIR += p4db
|
||||||
SUBDIR += p5-Agent
|
SUBDIR += p5-Agent
|
||||||
|
|
27
devel/ossp-var/Makefile
Normal file
27
devel/ossp-var/Makefile
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# ex:ts=8 -*-mode: makefile-*-
|
||||||
|
#
|
||||||
|
# New ports collection makefile for: ossp-var
|
||||||
|
# Date created: 2003-01-31
|
||||||
|
# Whom: Alan Eldridge <alane@geeksrus.net>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= var
|
||||||
|
PORTVERSION= 0.9.0
|
||||||
|
PORTREVISION= 0
|
||||||
|
PORTEPOCH= 0
|
||||||
|
CATEGORIES= devel
|
||||||
|
MASTER_SITES= ftp://ftp.ossp.org/pkg/lib/var/
|
||||||
|
PKGNAMEPREFIX= ossp-
|
||||||
|
|
||||||
|
MAINTAINER= alane@FreeBSD.org
|
||||||
|
|
||||||
|
USE_GMAKE= yes
|
||||||
|
GNU_CONFIGURE= yes
|
||||||
|
|
||||||
|
.include <bsd.port.pre.mk>
|
||||||
|
.include "${FILESDIR}/manpages.mk"
|
||||||
|
.include <bsd.port.post.mk>
|
||||||
|
|
||||||
|
#EOF
|
1
devel/ossp-var/distinfo
Normal file
1
devel/ossp-var/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (var-0.9.0.tar.gz) = 21e5d91809e2dcf73a1a85c8f3463465
|
2
devel/ossp-var/files/manpages.mk
Normal file
2
devel/ossp-var/files/manpages.mk
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
MAN1+= var-config.1
|
||||||
|
MAN3+= var.3
|
1
devel/ossp-var/pkg-comment
Normal file
1
devel/ossp-var/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
A flexible, full-featured and fast variable expansion library
|
10
devel/ossp-var/pkg-descr
Normal file
10
devel/ossp-var/pkg-descr
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
OSSP var is a flexible, full-featured and fast variable construct expansion
|
||||||
|
library. It supports a configurable variable construct syntax very similar
|
||||||
|
to the style found in many scripting languages (like @name, ${name}, , etc.)
|
||||||
|
and provides both simple scalar (${name}) and array (${name[index]})
|
||||||
|
expansion, plus optionally one or more post-operations on the expanded value
|
||||||
|
(${name:op:op...}).
|
||||||
|
|
||||||
|
WWW: http://www.ossp.org/pkg/lib/var/
|
||||||
|
|
||||||
|
-- AlanE@FreeBSD.org
|
6
devel/ossp-var/pkg-plist
Normal file
6
devel/ossp-var/pkg-plist
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
bin/var-config
|
||||||
|
include/var.h
|
||||||
|
lib/libvar.a
|
||||||
|
lib/libvar.la
|
||||||
|
lib/libvar.so
|
||||||
|
lib/libvar.so.9
|
Loading…
Add table
Reference in a new issue