diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2023-07-03 04:46:59 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2023-07-03 04:46:59 +0300 |
commit | 409478bfc6d49f84d2accd9a3a68f12e8bd74997 (patch) | |
tree | 15f42f73ef7da557edfd069b9ea0063ec0bcd9b5 /freebsd/Makefile | |
parent | 41a02591b9d199a82bb24c23f3828102375137de (diff) | |
download | sciteco-409478bfc6d49f84d2accd9a3a68f12e8bd74997.tar.gz |
fixup 69b4bbb8341cfda5d8456ccbf951034d63e4340c: added missing Makefile for FreeBSD port
* Makefiles are in .gitignore.
Diffstat (limited to 'freebsd/Makefile')
-rw-r--r-- | freebsd/Makefile | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/freebsd/Makefile b/freebsd/Makefile new file mode 100644 index 0000000..c46155c --- /dev/null +++ b/freebsd/Makefile @@ -0,0 +1,87 @@ +PORTNAME= sciteco +DISTVERSION= 2.0.0 +CATEGORIES= editors textproc devel +MASTER_SITES= https://github.com/rhaberkorn/${PORTNAME}/releases/download/v${DISTVERSION}/ \ + SOURCEFORGE/${PORTNAME}/v${DISTVERSION}/ + +MAINTAINER= bob@eager.cx +COMMENT= Scintilla-based Text Editor and Corrector +WWW= https://github.com/rhaberkorn/sciteco + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +FLAVORS= curses gtk +FLAVOR?= ${FLAVORS:[1]} +curses_PKGNAMESUFFIX=-curses +gtk_PKGNAMESUFFIX=-gtk + +# As SciTECO uses itself during the build process, +# it makes sense to compile it running under a dummy XServer. +# This is both faster and works in headless environments as well. +gtk_BUILD_DEPENDS=Xvfb:x11-servers/xorg-server@xvfb \ + xauth:x11/xauth mcookie:devel/util-linux + +USES= gmake pkgconfig compiler:c11 compiler:c++17-lang gnome groff +USE_GNOME= glib20 + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= + +MAKEFILE= GNUmakefile + +# NOTE: Unlike on Debian, we cannot build a sciteco-common package. +# FreeBSD does not yet support subpackages. +# Therefore both flavors will install totally independant +# (partially redundant) files. +.if ${FLAVOR} == gtk +DATADIR= ${PREFIX}/share/gsciteco +.endif + +SUB_FILES= pkg-message + +.if ${FLAVOR} == curses +USES+= ncurses +CONFIGURE_ARGS+=--with-interface=ncurses +PLIST_SUB+= GTK="@comment " PROGRAM_PREFIX="" +.elif ${FLAVOR} == gtk +USES+= desktop-file-utils +# FIXME: To appease QA checks, we would have to +# USE_GNOME+=cairo gdkpixbuf2 and +# gtk_LIB_DEPENDS+=libharfbuzz.so:print/harfbuzz +USE_GNOME+= gtk30 +CONFIGURE_ARGS+=--with-interface=gtk --program-prefix=g \ + --with-scitecodatadir="${DATADIR}" +PLIST_SUB+= GTK="" PROGRAM_PREFIX=g +.endif + +OPTIONS_DEFINE= LEXILLA MALLOC_REPLACEMENT TECO_INTEGER_32 +OPTIONS_DEFAULT=LEXILLA + +LEXILLA_DESC=Build with Lexilla lexer support (larger) +MALLOC_REPLACEMENT_DESC=Force replacement of system malloc() +TECO_INTEGER_32_DESC=Use 32-bit TECO integers + +LEXILLA_CONFIGURE_OFF=--without-lexilla +MALLOC_REPLACEMENT_CONFIGURE_ON=--enable-malloc-replacement +TECO_INTEGER_32_CONFIGURE_ON=--with-teco-integer=32 + +.include <bsd.port.pre.mk> + +.if ${FLAVOR} == gtk +# Run under Xvfb (see above). +# This is done only now, since USES=gmake would overwrite MAKE_CMD. +MAKE_CMD="${.CURDIR}/xvfb-run.sh" ${GMAKE} +.endif + +post-install: +.for SZ in 16 32 48 256 + ${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${SZ}x${SZ}/apps + ${INSTALL_DATA} ${WRKSRC}/ico/sciteco-${SZ}.png \ + ${STAGEDIR}${PREFIX}/share/icons/hicolor/${SZ}x${SZ}/apps/sciteco.png +.endfor + ${MKDIR} ${STAGEDIR}${PREFIX}/share/applications + ${INSTALL_DATA} ${WRKSRC}/src/sciteco.desktop \ + ${STAGEDIR}${PREFIX}/share/applications/sciteco.desktop + +.include <bsd.port.post.mk> |