2009-07-12 21:43:55 +00:00
|
|
|
# New ports collection makefile for: tdb
|
|
|
|
# Date created: 1 May 2009
|
|
|
|
# Whom: Koop Mast <kwm@FreeBSD.org>
|
2002-10-12 13:02:16 +00:00
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
2009-07-12 21:43:55 +00:00
|
|
|
PORTNAME= tdb
|
2010-10-26 13:51:43 +00:00
|
|
|
PORTVERSION= 1.2.1
|
2010-10-29 12:49:53 +00:00
|
|
|
PORTREVISION= 1
|
2010-10-26 13:51:43 +00:00
|
|
|
PORTEPOCH= 1
|
2009-07-12 21:43:55 +00:00
|
|
|
CATEGORIES= databases
|
2010-02-05 00:50:46 +00:00
|
|
|
MASTER_SITES= ftp://ftp.samba.org/pub/%SUBDIR%/ \
|
|
|
|
ftp://ca.samba.org/pub/%SUBDIR%/ \
|
|
|
|
ftp://de.samba.org/pub/%SUBDIR%/
|
|
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
2002-10-12 13:02:16 +00:00
|
|
|
|
2010-02-05 00:50:46 +00:00
|
|
|
MAINTAINER= timur@FreeBSD.org
|
2009-07-12 21:43:55 +00:00
|
|
|
COMMENT= Trivial Database
|
2002-10-12 13:02:16 +00:00
|
|
|
|
2010-10-29 12:49:53 +00:00
|
|
|
CONFLICTS= *samba3[0-4]-3.*
|
2002-10-12 13:02:16 +00:00
|
|
|
|
2009-07-12 21:43:55 +00:00
|
|
|
USE_PYTHON= yes
|
|
|
|
USE_GMAKE= yes
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_GNOME= pkgconfig
|
2010-12-04 07:34:27 +00:00
|
|
|
USE_AUTOTOOLS= autoconf autoheader
|
2009-07-12 21:43:55 +00:00
|
|
|
|
2010-10-29 12:49:53 +00:00
|
|
|
LICENSE= GPLv3
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
|
2010-10-26 13:51:43 +00:00
|
|
|
IPATHS= -I${WRKSRC}/libreplace
|
2010-02-05 00:50:46 +00:00
|
|
|
AUTOHEADER_ARGS= ${IPATHS}
|
|
|
|
AUTOCONF_ARGS= ${IPATHS}
|
|
|
|
PKGCONFIGDIR?= ${PREFIX}/libdata/pkgconfig
|
|
|
|
PKGCONFIGDIR_REL?= ${PKGCONFIGDIR:S|^${PREFIX}/||}
|
|
|
|
PYTHON_SITELIBDIR_REL?= ${PYTHONPREFIX_SITELIBDIR:S|^${PREFIX}/||}
|
|
|
|
|
2010-10-26 13:07:59 +00:00
|
|
|
CONFIGURE_ENV+= XSLTPROC="/usr/bin/true"
|
|
|
|
|
|
|
|
MAN8= tdbbackup.8 \
|
|
|
|
tdbdump.8 \
|
|
|
|
tdbtool.8
|
|
|
|
|
2009-07-12 21:43:55 +00:00
|
|
|
PLIST_FILES= bin/tdbbackup \
|
|
|
|
bin/tdbdump \
|
|
|
|
bin/tdbtool \
|
|
|
|
include/tdb.h \
|
|
|
|
lib/libtdb.a \
|
|
|
|
lib/libtdb.so \
|
|
|
|
lib/libtdb.so.1 \
|
2010-02-05 00:50:46 +00:00
|
|
|
${PKGCONFIGDIR_REL}/tdb.pc \
|
|
|
|
${PYTHON_SITELIBDIR_REL}/tdb.so
|
2009-07-12 21:43:55 +00:00
|
|
|
|
2010-10-26 13:07:59 +00:00
|
|
|
pre-install:
|
|
|
|
.for man in ${MAN8}
|
2010-10-29 12:49:53 +00:00
|
|
|
@${INSTALL_MAN} ${FILESDIR}/${man} ${WRKSRC}/manpages
|
2010-10-26 13:07:59 +00:00
|
|
|
.endfor
|
|
|
|
|
2010-02-05 00:50:46 +00:00
|
|
|
.include <bsd.port.mk>
|