some existing COMPILER lines with arch restrictions etc. In the usual case this is now using "COMPILER = base-clang ports-gcc base-gcc" on ports with c++ libraries in WANTLIB. This is basically intended to be a noop on architectures using clang as the system compiler, but help with other architectures where we currently have many ports knocked out due to building with an unsuitable compiler - - some ports require c++11/newer so the GCC version in base that is used on these archirtectures is too old. - some ports have conflicts where an executable is built with one compiler (e.g. gcc from base) but a library dependency is built with a different one (e.g. gcc from ports), resulted in mixing incompatible libraries in the same address space. devel/gmp is intentionally skipped as it's on the path to building gcc - the c++ library there is unused in ports (and not built by default upstream) so intending to disable building gmpcxx in a future commit.
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.27 2018/10/24 14:28:01 sthen Exp $
|
|
|
|
COMMENT= powerful and simple GTK editor
|
|
|
|
DISTNAME= teagtk-17.6.6
|
|
REVISION= 11
|
|
CATEGORIES= editors x11
|
|
MASTER_SITES= http://semiletov.org/tea/dloads/ \
|
|
${MASTER_SITE_SOURCEFORGE:=tea-editor/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
HOMEPAGE= http://semiletov.org/tea/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes Xi
|
|
WANTLIB += Xinerama Xrandr Xrender aspell>=16 atk-1.0 c cairo expat
|
|
WANTLIB += fontconfig freetype gdk-x11-2.0 gdk_pixbuf-2.0 gio-2.0
|
|
WANTLIB += glib-2.0 gmodule-2.0 gobject-2.0 gtk-x11-2.0
|
|
WANTLIB += gtksourceview-2.0 iconv intl m pango-1.0 pangocairo-1.0 pangoft2-1.0
|
|
WANTLIB += pixman-1 png pthread ${COMPILER_LIBCXX} xcb xml2 z zzip>=13
|
|
|
|
COMPILER = base-clang ports-gcc base-gcc
|
|
|
|
BUILD_DEPENDS= devel/gettext-tools
|
|
LIB_DEPENDS= x11/gtk+2 \
|
|
gtksourceview->=2,<3:x11/gtksourceview \
|
|
textproc/aspell/core \
|
|
archivers/zziplib
|
|
RUN_DEPENDS= textproc/antiword
|
|
|
|
SEPARATE_BUILD= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
|
LIBS="-lm -lstdc++"
|
|
|
|
.include <bsd.port.mk>
|