blob: 162c60053d96c4752ca2b1ca9345322f69163d40 (
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
|
# New ports collection makefile for: tevent
# Date created: 1 May 2009
# Whom: Koop Mast <kwm@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= tevent
PORTVERSION= 0.9.8
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= Talloc based event loop library
LIB_DEPENDS= talloc.2:${PORTSDIR}/devel/talloc
CONFLICTS=
USE_GMAKE= yes
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
USE_GNOME= pkgconfig
USE_AUTOTOOLS= autoconf:268 autoheader:268
IPATHS= -I${WRKSRC}/libreplace
AUTOHEADER_ARGS= ${IPATHS}
AUTOCONF_ARGS= ${IPATHS}
PKGCONFIGDIR?= ${PREFIX}/libdata/pkgconfig
PKGCONFIGDIR_REL?= ${PKGCONFIGDIR:S|^${PREFIX}/||}
PLIST_FILES= include/tevent.h \
lib/libtevent.a \
lib/libtevent.so \
lib/libtevent.so.0 \
${PKGCONFIGDIR_REL}/tevent.pc
post-install:
${LN} -sf libtevent.so.0 ${PREFIX}/lib/libtevent.so
.include <bsd.port.mk>
|