View | Details | Raw Unified | Return to bug 182748 | Differences between
and this patch

Collapse All | Expand All

(-)b/mail/trojita/Makefile (-10 / +24 lines)
Lines 2-8 Link Here
2
# $FreeBSD: head/mail/trojita/Makefile 327742 2013-09-20 19:59:12Z bapt $
2
# $FreeBSD: head/mail/trojita/Makefile 327742 2013-09-20 19:59:12Z bapt $
3
3
4
PORTNAME=	trojita
4
PORTNAME=	trojita
5
PORTVERSION=	0.3.93
5
PORTVERSION=	0.3.96
6
CATEGORIES=	mail
6
CATEGORIES=	mail
7
MASTER_SITES=	SF/${PORTNAME}/src/
7
MASTER_SITES=	SF/${PORTNAME}/src/
8
8
Lines 12-30 COMMENT= Fast cross-platform Qt IMAP e-mail client Link Here
12
LICENSE=	GPLv2 GPLv3
12
LICENSE=	GPLv2 GPLv3
13
LICENSE_COMB=	dual
13
LICENSE_COMB=	dual
14
14
15
16
USE_BZIP2=	yes
15
USE_BZIP2=	yes
16
USE_LDCONFIG=	yes
17
18
USES=		cmake desktop-file-utils
19
CMAKE_ARGS+=	-DCMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make \
20
		-DWITH_QT5:STRING=OFF -DWITH_TESTS:STRING=OFF
17
21
18
USE_QT4=	linguist_build moc_build qmake_build rcc_build \
22
USE_QT4=	linguist_build moc_build qmake_build rcc_build uic_build \
19
		uic_build sql-sqlite3 webkit
23
		sql-sqlite3 webkit
20
24
21
HAS_CONFIGURE=	yes
25
HAS_CONFIGURE=	yes
22
INSTALLS_ICONS=	yes
26
INSTALLS_ICONS=	yes
23
NO_INSTALL_MANPAGES=	yes
24
27
25
NO_STAGE=	yes
28
.include <bsd.port.pre.mk>
26
do-configure:
29
27
	cd ${WRKSRC} && ${QMAKE} ${QMAKEFLAGS} PREFIX=${PREFIX} \
30
# We need full c++11 support. So use either clang >= 3.3 and libc++ from base,
28
		CONFIG+="release disable_tests" ${PORTNAME}.pro
31
# or use gcc >= 4.8.1 from ports. The devel/libc++ port does not work.
32
.if (${OSVERSION} > 901505 && exists(/usr/bin/clang) && \
33
exists(/usr/include/c++/v1/__config))
34
CC=		/usr/bin/clang
35
CPP=		/usr/bin/clang-cpp
36
CXX=		/usr/bin/clang++
37
CXXFLAGS+=	-stdlib=libc++
38
.else
39
USE_GCC=	4.8+
40
.endif
41
42
post-install:
29
43
30
.include <bsd.port.mk>
44
.include <bsd.port.post.mk>
(-)b/mail/trojita/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (trojita-0.3.93.tar.bz2) = 625bf7fded3f00a45f6f4eafe504fa3e20e237632072f7e47949d0a1339274e4
1
SHA256 (trojita-0.3.96.tar.bz2) = f085dba2a33eed61282bdde05b0151138fbc820a7bfe4655758e1d63f31af7f1
2
SIZE (trojita-0.3.93.tar.bz2) = 966396
2
SIZE (trojita-0.3.96.tar.bz2) = 1068542
(-)b/mail/trojita/pkg-plist (-1 / +6 lines)
Lines 1-4 Link Here
1
bin/be.contacts
1
bin/trojita
2
bin/trojita
3
lib/libtrojita_plugins.so
2
share/applications/trojita.desktop
4
share/applications/trojita.desktop
3
share/icons/hicolor/32x32/apps/trojita.png
5
share/icons/hicolor/32x32/apps/trojita.png
4
share/icons/hicolor/scalable/apps/trojita.svg
6
share/icons/hicolor/scalable/apps/trojita.svg
Lines 20-31 share/icons/hicolor/scalable/apps/trojita.svg Link Here
20
%%DATADIR%%/locale/trojita_common_pl.qm
22
%%DATADIR%%/locale/trojita_common_pl.qm
21
%%DATADIR%%/locale/trojita_common_pt.qm
23
%%DATADIR%%/locale/trojita_common_pt.qm
22
%%DATADIR%%/locale/trojita_common_pt_BR.qm
24
%%DATADIR%%/locale/trojita_common_pt_BR.qm
25
%%DATADIR%%/locale/trojita_common_ro.qm
23
%%DATADIR%%/locale/trojita_common_sk.qm
26
%%DATADIR%%/locale/trojita_common_sk.qm
24
%%DATADIR%%/locale/trojita_common_sv.qm
27
%%DATADIR%%/locale/trojita_common_sv.qm
25
%%DATADIR%%/locale/trojita_common_tr.qm
28
%%DATADIR%%/locale/trojita_common_tr.qm
29
%%DATADIR%%/locale/trojita_common_ug.qm
26
%%DATADIR%%/locale/trojita_common_uk.qm
30
%%DATADIR%%/locale/trojita_common_uk.qm
27
%%DATADIR%%/locale/trojita_common_x-test.qm
31
%%DATADIR%%/locale/trojita_common_x_test.qm
28
%%DATADIR%%/locale/trojita_common_zh_CN.qm
32
%%DATADIR%%/locale/trojita_common_zh_CN.qm
29
%%DATADIR%%/locale/trojita_common_zh_TW.qm
33
%%DATADIR%%/locale/trojita_common_zh_TW.qm
30
@dirrm %%DATADIR%%/locale
34
@dirrm %%DATADIR%%/locale
31
@dirrm %%DATADIR%%
35
@dirrm %%DATADIR%%
36
@dirrmtry share/applications

Return to bug 182748