summaryrefslogtreecommitdiff
path: root/net/Sockets-devel/Makefile
blob: b18af4f5ec70508042f643859563dfd8c2b64750 (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
# 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.9
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

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} >= 700042
BROKEN=		Does not compile with GCC 4.2
.endif

.include <bsd.port.post.mk>