mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
7b585155e5
ChangeLog: https://github.com/elementary/code/releases/tag/7.1.0 * Ensure active project at startup (include non-git folders) * Handle saving to unwritable location better to avoid data loss * Flatpak: Use 7.1 Sdk, Update Dependencies * Make symbol outline aware of follow-system-style setting * Show running branch if not master * appdata: Minor wording fixes in release notes * Fix styling when no documents * Ensure Replace button (and other search widget) states are mutually consistent * Switch to GHCR containers * Delay asking for save location if cannot determine write access * Additional Search options in menu * Implement option to show files with unknown characters as new document * Do not change document search results unexpectedly on focus in * Add ctrl + pageUp and pageDown for switching tabs * Persist search settings * Set search entry icon and styleclass according to results * Add release metainfo and update screenshot addresses for 7.1.0 * Ask save location with dialog * Metainfo: set brand color to Latte 500 * Ensure folder items in sidebar always expandable * Fix creating duplicates of unwritable files * Update metainfo for pull 1252 * Fix typo in metainfo * Install man page with meson * Reduce terminal noise * Remove plugin set option * FormatBar: Show column number not buffer offset * Handle only relevant settings key changes * Use dialog for external changes * Sync tab settings * Fix searchterm reverts * Ensure correct sidebar item is focused, or none, when tab removed * Fix logic for clearing search entry * Fix spurious external change warnings * Meson: modernize PR: 272979 Reported by: duchateau.olivier@gmail.com Approved by: miguel@gocobachi.dev (maintainer)
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
PORTNAME= elementary-code
|
|
DISTVERSION= 7.1.0
|
|
CATEGORIES= editors
|
|
|
|
MAINTAINER= miguel@gocobachi.dev
|
|
COMMENT= Code editor designed for elementary OS
|
|
WWW= https://github.com/elementary/code
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libeditorconfig.so:editors/editorconfig-core-c \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libgee-0.8.so:devel/libgee \
|
|
libgit2-glib-1.0.so:devel/libgit2-glib \
|
|
libgranite.so:x11-toolkits/granite \
|
|
libgtkspell3-3.so:textproc/gtkspell3 \
|
|
libhandy-1.so:x11-toolkits/libhandy \
|
|
libpeas-1.0.so:devel/libpeas \
|
|
libpeas-gtk-1.0.so:devel/libpeas \
|
|
libsoup-2.4.so:devel/libsoup \
|
|
libwebkit2gtk-4.0.so:www/webkit2-gtk3
|
|
RUN_DEPENDS= droid-fonts-ttf>0:x11-fonts/droid-fonts-ttf \
|
|
pkcheck:sysutils/polkit
|
|
|
|
USES= compiler:c++11-lang desktop-file-utils gettext gnome meson \
|
|
ninja pkgconfig python:build vala:lib xorg
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= elementary
|
|
GH_PROJECT= code
|
|
USE_GNOME= atk cairo glib20 gtk30 gtksourceview4 pango vte3
|
|
GLIB_SCHEMAS= io.elementary.code.gschema.xml \
|
|
io.elementary.code.plugins.spell.gschema.xml
|
|
USE_LDCONFIG= yes
|
|
USE_XORG= x11
|
|
|
|
BINARY_ALIAS= python3=${PYTHON_CMD}
|
|
|
|
do-test:
|
|
cd ${WRKSRC}/${MESON_BUILD_DIR} && ninja test
|
|
|
|
.include <bsd.port.mk>
|