ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
37 lines
899 B
Makefile
37 lines
899 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cssed
|
|
PORTVERSION= 0.4.0
|
|
PORTREVISION= 12
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Application to help CSS style sheets creation and maintenance
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= compiler:c++11-lang dos2unix gettext gnome localbase pathfix \
|
|
pkgconfig
|
|
DOS2UNIX_FILES= scintilla/gtk/ScintillaGTK.cxx
|
|
USE_GNOME= gtk20 libxml2
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-plugin-headers
|
|
|
|
CXXFLAGS+= -Wno-c++11-narrowing
|
|
|
|
DESKTOP_ENTRIES="CSSED" "CSS Editor" "${DATADIR}/pixmaps/cssed-icon.png" \
|
|
"${PORTNAME}" "GTK;Development;WebDevelopment;TextEditor;" ""
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|gthread-2.0|gmodule-2.0|' ${WRKSRC}/configure
|
|
.for i in scintilla/gtk/Makefile.in src/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|gcc|@CC@|g ; \
|
|
s|g++|@CXX@|g' ${WRKSRC}/${i}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|