blob: 47094cb74a518cc8c394cfb1b646afbcdb98ec45 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
PORTNAME= sope
PORTVERSION= 5.12.1
CATEGORIES= devel gnustep
MASTER_SITES= https://packages.sogo.nu/sources/
DISTNAME= SOPE-${PORTVERSION}
PKGNAMESUFFIX= -${FLAVOR}
MAINTAINER= acm@FreeBSD.org
COMMENT= Extensive set of GNUstep web application frameworks
WWW= https://sogo.nu/
LICENSE= LGPL20
FLAVORS= mysql pgsql
FLAVOR?= ${FLAVORS[1]}
USES= gmake gnome iconv gnustep
USE_GNOME= libxml2
USE_GNUSTEP= base build
USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES}
CONFIGURE_ARGS= --with-gnustep --disable-debug --disable-strip
CONFIGURE_ENV+= CC="${CC}"
LLD_UNSAFE= yes # PR 230608
mysql_CONFLICTS_INSTALL= sope2 ${PORTNAME}-pgsql
pgsql_CONFLICTS_INSTALL= sope2 ${PORTNAME}-mysql
SUB_LIST+= GNUSTEP_LOCAL_TOOLS=${GNUSTEP_LOCAL_TOOLS} \
GNUSTEP_MAKEFILES=${GNUSTEP_MAKEFILES}
WRKSRC= ${WRKDIR}/SOPE
OPTIONS_DEFINE= LDAP
OPTIONS_DEFAULT= LDAP
OPTIONS_SINGLE_DATABASE=MYSQL PGSQL
OPTIONS_SINGLE= DATABASE
DATABASE_DESC= Database support
OPTIONS_SUB= yes
LDAP_DESC= Build with LDAP support
MYSQL_DESC= Build with MySQL support
PGSQL_DESC= Build with PostgreSQL support
LDAP_USES= ldap
MYSQL_USES= mysql
PGSQL_USES= pgsql
.if ${FLAVOR:U} == pgsql
OPTIONS_DEFAULT+= PGSQL
.endif
.if ${FLAVOR:U} == mysql
OPTIONS_DEFAULT+= MYSQL
.endif
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD
CPPFLAGS+= -Wno-error=incompatible-function-pointer-types
.endif
post-patch:
@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/configure
@${REINPLACE_CMD} -e 's|gcc|${CC}|g' ${WRKSRC}/sope-core/NGStreams/configure
@${REINPLACE_CMD} -e 's|LDAP_OPT_ON|1|g' ${WRKSRC}/sope-ldap/NGLdap/NGLdapConnection.m
.for f in config.guess config.sub
@${CP} ${TEMPLATES}/$f ${WRKSRC}/sope-core/NGStreams/
.endfor
post-patch-LDAP-off:
@${REINPLACE_CMD} -e '/checkLinking "ldap"/d' ${WRKSRC}/configure
post-patch-MYSQL-off:
@${REINPLACE_CMD} -e '/checkLinking "mysqlclient"/d' ${WRKSRC}/configure
post-patch-PGSQL-off:
@${REINPLACE_CMD} -e '/checkLinking "pq"/d' ${WRKSRC}/configure
do-configure:
cd ${WRKSRC} ; . ${GNUSTEP_MAKEFILES}/GNUstep.sh ; ./configure ${CONFIGURE_ARGS}
.include <bsd.port.mk>
|