blob: 1781bd6a1bf096c94a24234e71a93e854d8ee3c2 (
plain) (
blame)
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
|
# New ports collection makefile for: C++ Sockets devel
# Date created: Sun Sep 25 20:27:06 UTC 2005
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= Sockets
PORTVERSION= 1.9.8
CATEGORIES= net ipv6
MASTER_SITES= http://www.alhem.net/Sockets/
PKGNAMESUFFIX?= -devel
MAINTAINER= lioux@FreeBSD.org
COMMENT= A C++ wrapper for BSD-style sockets
USE_GMAKE= yes
USE_OPENSSL= yes
WITH_OPENSSL_BASE= yes
MAKE_ENV= CXX="${CXX}"
USE_REINPLACE= yes
post-patch:
# PREFIX safeness
# CXX safeness
# CXXFLAGS safeness
# rename files to -devel
@${REINPLACE_CMD} -E \
-e 's|-O2||' \
-e 's|^PREFIX.+$$|PREFIX=${PREFIX}|' \
-e 's|^INCLUDE.+$$|INCLUDE=-I. -I${OPENSSLINC}|' \
-e 's|g\+\+|${CXX}|' \
-e 's|libSockets.a|libSockets-devel.a|' \
-e 's|libSocketsEx.a|libSocketsEx-devel.a|' \
-e 's|Sockets-config|Sockets-devel-config|' \
-e 's|include/Sockets|include/Sockets-devel|' \
${BUILD_WRKSRC}/${MAKEFILE}
# fix StdLog.h location
@${FIND} ${WRKSRC} -type f | \
${XARGS} -n 5 -x \
${REINPLACE_CMD} -E \
-e 's|"StdLog.h"|<StdLog.h>|'
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
IGNORE= FreeBSD prior to 500000 does not support uuid(3) required\
for building
.endif
.include <bsd.port.post.mk>
|