Lines 8-39
LICENSE= GPLv3
Link Here
|
8 |
LICENSE_FILE= ${WRKSRC}/COPYING |
8 |
LICENSE_FILE= ${WRKSRC}/COPYING |
9 |
|
9 |
|
10 |
LIB_DEPENDS= libcurl.so:ftp/curl \ |
10 |
LIB_DEPENDS= libcurl.so:ftp/curl \ |
11 |
libetpan.so:mail/libetpan \ |
11 |
libetpan.so:mail/libetpan \ |
12 |
libexpat.so:textproc/expat2 \ |
12 |
libexpat.so:textproc/expat2 \ |
13 |
libfontconfig.so:x11-fonts/fontconfig \ |
13 |
libfontconfig.so:x11-fonts/fontconfig \ |
14 |
libfreetype.so:print/freetype2 \ |
14 |
libfreetype.so:print/freetype2 \ |
15 |
libgcrypt.so:security/libgcrypt \ |
15 |
libgcrypt.so:security/libgcrypt \ |
16 |
libgnutls.so:security/gnutls \ |
16 |
libgnutls.so:security/gnutls \ |
17 |
libharfbuzz.so:print/harfbuzz \ |
17 |
libharfbuzz.so:print/harfbuzz \ |
18 |
libnettle.so:security/nettle \ |
18 |
libnettle.so:security/nettle \ |
19 |
libsasl2.so:security/cyrus-sasl2 |
19 |
libsasl2.so:security/cyrus-sasl2 \ |
|
|
20 |
liblber.so:net/openldap26-client \ |
21 |
libldap.so:net/openldap26-client |
20 |
RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss \ |
22 |
RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss \ |
21 |
mime-support>0:misc/mime-support |
23 |
mime-support>0:misc/mime-support |
22 |
|
24 |
|
23 |
USES= autoreconf compiler:c++11-lang cpe desktop-file-utils gettext \ |
25 |
USES= autoreconf compiler:c++11-lang cpe desktop-file-utils gettext \ |
24 |
gettext-tools gnome pathfix pkgconfig python:3.5+ shebangfix \ |
26 |
gettext-tools gnome pathfix pkgconfig python:3.5+ shebangfix \ |
25 |
ssl xorg |
27 |
ssl xorg |
26 |
USE_GNOME= cairo gtk20 librsvg2 |
28 |
USE_GNOME= cairo librsvg2 |
27 |
USE_XORG= ice sm |
29 |
USE_XORG= ice sm |
28 |
SHEBANG_FILES= tools/*.pl tools/*.py tools/tb2claws-mail |
30 |
SHEBANG_FILES= tools/*.pl tools/*.py tools/tb2claws-mail |
29 |
|
31 |
|
30 |
OPTIONS_DEFINE= COMPFACE DEBUG DOCS ENCHANT IPV6 LDAP NLS STARTUP \ |
32 |
OPTIONS_DEFINE= COMPFACE DEBUG DOCS ENCHANT IPV6 LDAP NLS STARTUP \ |
31 |
THEMES |
33 |
THEMES |
32 |
OPTIONS_DEFAULT= COMPFACE ENCHANT STARTUP THEMES |
34 |
OPTIONS_DEFAULT= COMPFACE ENCHANT GTK2 STARTUP THEMES |
|
|
35 |
OPTIONS_RADIO= BRANCH |
36 |
OPTIONS_RADIO_BRANCH= GTK2 GTK3 |
33 |
OPTIONS_SUB= yes |
37 |
OPTIONS_SUB= yes |
34 |
|
38 |
|
35 |
COMPFACE_DESC= X-Face support |
39 |
COMPFACE_DESC= X-Face support |
36 |
ENCHANT_DESC= Spell checking support |
40 |
ENCHANT_DESC= Spell checking support |
|
|
41 |
GTK2_DESC= Build GTK2+ release |
42 |
GTK3_DESC= Build GTK3+ release |
37 |
STARTUP_DESC= Startup notification support |
43 |
STARTUP_DESC= Startup notification support |
38 |
THEMES_DESC= Additional themes |
44 |
THEMES_DESC= Additional themes |
39 |
|
45 |
|
Lines 58-65
STARTUP_CONFIGURE_ENABLE= startup-notification
Link Here
|
58 |
|
64 |
|
59 |
THEMES_RUN_DEPENDS= claws-mail-themes>0:x11-themes/claws-mail-themes |
65 |
THEMES_RUN_DEPENDS= claws-mail-themes>0:x11-themes/claws-mail-themes |
60 |
|
66 |
|
|
|
67 |
.include <bsd.port.options.mk> |
68 |
MASTER_OPTIONS= ${PORT_OPTIONS} |
61 |
.include "Makefile.claws" |
69 |
.include "Makefile.claws" |
62 |
|
70 |
|
|
|
71 |
.if ${PORT_OPTIONS:MGTK2} |
72 |
USE_GNOME+= gtk20 |
73 |
|
74 |
PLIST_SUB+= GTK2="" |
75 |
.else |
76 |
PLIST_SUB+= GTK2="@comment " |
77 |
.endif |
78 |
|
79 |
.if ${PORT_OPTIONS:MGTK3} |
80 |
USE_GNOME+= gtk30 |
81 |
.endif |
82 |
|
63 |
post-patch: |
83 |
post-patch: |
64 |
@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ |
84 |
@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ |
65 |
${WRKSRC}/src/common/ssl.c |
85 |
${WRKSRC}/src/common/ssl.c |