blob: f53f2ca5e89769cebcbe0ebdabd71bff781d9dd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# New ports collection makefile for: talloc
# Date created: 18 Apr 2009
# Whom: Koop Mast <kwm@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= talloc
PORTVERSION= 2.0.1
PORTREVISION= 1
PORTEPOCH= 0
CATEGORIES= devel
MASTER_SITES= ftp://ftp.samba.org/pub/%SUBDIR%/ \
ftp://ca.samba.org/pub/%SUBDIR%/ \
ftp://de.samba.org/pub/%SUBDIR%/
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= timur@FreeBSD.org
COMMENT= Hierarchical pool based memory allocator
CONFLICTS= samba-3.3*
USE_GMAKE= yes
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
USE_AUTOTOOLS= autoconf autoheader
IPATHS= -I${WRKSRC}/libreplace
AUTOHEADER_ARGS= ${IPATHS}
AUTOCONF_ARGS= ${IPATHS}
PKGCONFIGDIR?= ${PREFIX}/libdata/pkgconfig
PKGCONFIGDIR_REL?= ${PKGCONFIGDIR:S|^${PREFIX}/||}
CONFIGURE_ENV+= XSLTPROC="/usr/bin/true"
MAN3= talloc.3
PLIST_FILES= include/talloc.h \
lib/libtalloc.a \
lib/libtalloc.so \
lib/libtalloc.so.2 \
${PKGCONFIGDIR_REL}/talloc.pc
pre-install:
.if !exists(${WRKSRC}/talloc.3)
@${CP} ${FILESDIR}/talloc.3 ${WRKSRC}
.endif
post-install:
${LN} -sf libtalloc.so.2 ${PREFIX}/lib/libtalloc.so
.include <bsd.port.mk>
|