diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-09-24 07:59:37 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-09-24 07:59:37 +0000 |
commit | 525d1fed30189ba623094aa0ef634396d787957b (patch) | |
tree | 8e109ee00781f8afb58e62fc827901111e15eca6 /devel/libmba/Makefile | |
parent | f4bb5ec544d447efddfee0189cbd330b2c09492e (diff) | |
download | FreeBSD-ports-525d1fed30189ba623094aa0ef634396d787957b.zip FreeBSD-ports-525d1fed30189ba623094aa0ef634396d787957b.tar.gz |
add libmba 0.3.6
A collection of C modules potentially useful to any project
required by textproc/domc 0.6.0
Approved by: kris
Diffstat (limited to 'devel/libmba/Makefile')
-rw-r--r-- | devel/libmba/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/devel/libmba/Makefile b/devel/libmba/Makefile new file mode 100644 index 0000000..3c37b05 --- /dev/null +++ b/devel/libmba/Makefile @@ -0,0 +1,35 @@ +# ex:ts=8 +# Ports collection makefile for: libmba +# Date Created: Sep 24, 2002 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= libmba +PORTVERSION= 0.3.6 +CATEGORIES= devel +MASTER_SITES= http://users.erols.com/mballen/libmba/src/ + +MAINTAINER= ports@FreeBSD.org + +LIB_DEPENDS= expat.4:${PORTSDIR}/textproc/expat2 + +SHLIB_MAJOR= 0 + +USE_REINPLACE= yes +CFLAGS= -I${LOCALBASE}/include -L${LOCALBASE}/lib +MAKE_ENV= SHLIB_MAJOR="${SHLIB_MAJOR}" INSTDIR=${PREFIX} +ALL_TARGET= # empty +INSTALLS_SHLIB= yes + +PLIST_SUB= SHLIB_MAJOR="${SHLIB_MAJOR}" + +MANCOMPRESSED= yes +MAN3= domnode.3m hexdump.3m msgno.3m hashmap.3m linkedlist.3m stack.3m + +post-patch: + @${REINPLACE_CMD} -e "s|/usr|${PREFIX}|g" \ + -e "s|gcc|${CC}|g" ${WRKSRC}/Makefile + +.include <bsd.port.mk> |