mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
add lsmlib
A lib that creates a libxml2 tree w/ info. token on a *NIX filesystem
This commit is contained in:
parent
2037347e45
commit
319d643c9a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=45440
7 changed files with 52 additions and 0 deletions
|
@ -78,6 +78,7 @@
|
||||||
SUBDIR += log_analysis
|
SUBDIR += log_analysis
|
||||||
SUBDIR += logrotate
|
SUBDIR += logrotate
|
||||||
SUBDIR += logtool
|
SUBDIR += logtool
|
||||||
|
SUBDIR += lsmlib
|
||||||
SUBDIR += lsof
|
SUBDIR += lsof
|
||||||
SUBDIR += maint
|
SUBDIR += maint
|
||||||
SUBDIR += manck
|
SUBDIR += manck
|
||||||
|
|
28
sysutils/lsmlib/Makefile
Normal file
28
sysutils/lsmlib/Makefile
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
# ex:ts=8
|
||||||
|
# New ports collection makefile for: lsmlib
|
||||||
|
# Date created: Jul 24, 2001
|
||||||
|
# Whom: ijliao
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= lsmlib
|
||||||
|
PORTVERSION= 0.2
|
||||||
|
CATEGORIES= sysutils
|
||||||
|
MASTER_SITES= http://lsmlib.sourceforge.net/releases/
|
||||||
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||||
|
EXTRACT_SUFX= .tgz
|
||||||
|
|
||||||
|
MAINTAINER= ports@FreeBSD.org
|
||||||
|
|
||||||
|
LIB_DEPENDS= xml2:${PORTSDIR}/textproc/libxml2
|
||||||
|
|
||||||
|
XML2_CONFIG?= ${LOCALBASE}/bin/xml2-config
|
||||||
|
WRKSRC= ${WRKDIR}/${PORTNAME}/src
|
||||||
|
MAKEFILE= makefile
|
||||||
|
MAKE_ENV= XML2_CONFIG="${XML2_CONFIG}"
|
||||||
|
|
||||||
|
do-install:
|
||||||
|
${INSTALL_PROGRAM} ${WRKSRC}/lsm ${PREFIX}/bin
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
sysutils/lsmlib/distinfo
Normal file
1
sysutils/lsmlib/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (lsmlib-0.2.tgz) = 9e5b6aa227924b89ec70eb957017d6b2
|
15
sysutils/lsmlib/files/patch-makefile
Normal file
15
sysutils/lsmlib/files/patch-makefile
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
--- makefile.orig Tue Jul 24 22:43:50 2001
|
||||||
|
+++ makefile Tue Jul 24 22:46:15 2001
|
||||||
|
@@ -4,10 +4,10 @@
|
||||||
|
# please see COPYING for further informations
|
||||||
|
#
|
||||||
|
|
||||||
|
-CC= gcc
|
||||||
|
+CFLAGS+= `${XML2_CONFIG} --cflags`
|
||||||
|
STD= _GNU_SOURCE
|
||||||
|
OBJS= main.o lsm.o
|
||||||
|
-LIBS= -lxml2
|
||||||
|
+LIBS= `${XML2_CONFIG} --libs`
|
||||||
|
|
||||||
|
.c.o:
|
||||||
|
$(CC) -c -Wall $(CFLAGS) -D$(STD) $<
|
1
sysutils/lsmlib/pkg-comment
Normal file
1
sysutils/lsmlib/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
A lib that creates a libxml2 tree w/ info. token on a *NIX filesystem
|
5
sysutils/lsmlib/pkg-descr
Normal file
5
sysutils/lsmlib/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
Lsmlib (ls iMproved) is a library written in ANSI C that creates a libxml2
|
||||||
|
tree with information token on a *NIX filesystem (directory/ subdirectory/
|
||||||
|
username/ permissions ...).
|
||||||
|
|
||||||
|
WWW: http://lsmlib.sourceforge.net/
|
1
sysutils/lsmlib/pkg-plist
Normal file
1
sysutils/lsmlib/pkg-plist
Normal file
|
@ -0,0 +1 @@
|
||||||
|
bin/lsm
|
Loading…
Add table
Reference in a new issue