-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Dennis Bonke <[email protected]>
- Loading branch information
1 parent
3078107
commit a29ceee
Showing
3 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
packages: | ||
- name: hexchat | ||
architecture: '@OPTION:arch@' | ||
metadata: | ||
summary: Graphical IRC client based on XChat | ||
description: This package HexChat, an IRC program. It allows you to join multiple IRC channels at the same time where you can talk publicly, have private one-to-one communications among other things. | ||
spdx: 'GPL-2.0' | ||
website: 'https://hexchat.github.io/' | ||
maintainer: "Dennis Bonke <[email protected]>" | ||
categories: ['net-irc'] | ||
source: | ||
subdir: 'ports' | ||
git: 'https://github.com/hexchat/hexchat.git' | ||
tag: 'v2.16.1' | ||
version: '2.16.1' | ||
tools_required: | ||
- system-gcc | ||
- virtual: pkgconfig-for-target | ||
triple: "@OPTION:arch-triple@" | ||
pkgs_required: | ||
- mlibc | ||
- glib | ||
- gdk-pixbuf | ||
- gtk+-2 | ||
- pango | ||
- libx11 | ||
- openssl | ||
configure: | ||
- args: | ||
- 'meson' | ||
- '--cross-file' | ||
- '@SOURCE_ROOT@/scripts/meson-@OPTION:[email protected]' | ||
- '--prefix=/usr' | ||
- '--libdir=lib' | ||
- '--buildtype=debugoptimized' | ||
- '-Dgtk-frontend=true' | ||
- '-Dtext-frontend=false' | ||
- '-Dtls=enabled' | ||
- '-Dplugin=true' | ||
- '-Ddbus=disabled' | ||
- '-Dlibcanberra=disabled' | ||
- '-Dtheme-manager=false' | ||
- '-Ddbus-service-use-appid=false' | ||
- '-Dwith-checksum=false' | ||
- '-Dwith-fishlim=false' | ||
- '-Dwith-lua=false' | ||
- '-Dwith-perl=false' | ||
- '-Dwith-python=false' | ||
- '-Dwith-sysinfo=false' | ||
- '-Dinstall-appdata=false' | ||
- '-Dinstall-plugin-metainfo=false' | ||
- '@THIS_SOURCE_DIR@' | ||
build: | ||
- args: ['ninja'] | ||
- args: ['ninja', 'install'] | ||
environ: | ||
DESTDIR: '@THIS_COLLECT_DIR@' | ||
quiet: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
From bd7f2f64a6c9b484fcd563a69272c75f44fb14a6 Mon Sep 17 00:00:00 2001 | ||
From: Dennis Bonke <[email protected]> | ||
Date: Wed, 12 Oct 2022 03:19:59 +0200 | ||
Subject: [PATCH] Add missing includes | ||
|
||
Signed-off-by: Dennis Bonke <[email protected]> | ||
--- | ||
src/common/proto-irc.c | 1 + | ||
src/fe-gtk/fkeys.c | 1 + | ||
2 files changed, 2 insertions(+) | ||
|
||
diff --git a/src/common/proto-irc.c b/src/common/proto-irc.c | ||
index a8d997b..1a97f9d 100644 | ||
--- a/src/common/proto-irc.c | ||
+++ b/src/common/proto-irc.c | ||
@@ -19,6 +19,7 @@ | ||
/* IRC RFC1459(+commonly used extensions) protocol implementation */ | ||
|
||
#include <string.h> | ||
+#include <strings.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <ctype.h> | ||
diff --git a/src/fe-gtk/fkeys.c b/src/fe-gtk/fkeys.c | ||
index dc4b41b..8b7c9a2 100644 | ||
--- a/src/fe-gtk/fkeys.c | ||
+++ b/src/fe-gtk/fkeys.c | ||
@@ -21,6 +21,7 @@ | ||
#include <sys/types.h> | ||
#include <sys/stat.h> | ||
#include <string.h> | ||
+#include <strings.h> | ||
#include <fcntl.h> | ||
#include <ctype.h> | ||
|
||
-- | ||
2.37.2 | ||
|