mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-30 10:38:37 +00:00
09f9633cb6
in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542
32 lines
742 B
Makefile
32 lines
742 B
Makefile
# Created by: Masanori OZAWA (ozawa@ongs.co.jp)
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fusenshi
|
|
PORTVERSION= 0.9.0
|
|
PORTREVISION= 17
|
|
CATEGORIES= deskutils
|
|
MASTER_SITES= http://www.ongs.co.jp/projects/fusenshi/
|
|
|
|
MAINTAINER= ozawa@ongs.co.jp
|
|
COMMENT= Post-it(R) like application with network support
|
|
|
|
USES= compiler:c++11-lang gettext pkgconfig tar:tgz
|
|
USE_CXXSTD= c++11
|
|
USE_GNOME= gtkmm24 gtksourceview libxml2
|
|
USE_XORG= x11
|
|
MAKE_JOBS_UNSAFE= yes
|
|
CXXFLAGS+= -D_WANT_SEMUN
|
|
|
|
.ifdef WITHOUT_SSL
|
|
MAKE_ARGS+= WITHOUT_SSL=yes
|
|
.else
|
|
LIB_DEPENDS+= libgnutls.so:security/gnutls
|
|
.endif
|
|
|
|
BROKEN_aarch64= Fails to compile: error: cast from pointer to smaller type loses information
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/fusenshi
|
|
|
|
.include <bsd.port.mk>
|