From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 28 Feb 2022 13:10:23 +0100 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1nOer9-00DDJw-C2 for lore@lore.pengutronix.de; Mon, 28 Feb 2022 13:10:23 +0100 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1nOer7-00034o-Jv; Mon, 28 Feb 2022 13:10:21 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nOeq7-0001sx-TT; Mon, 28 Feb 2022 13:09:19 +0100 Received: from [2a0a:edc0:0:1101:1d::39] (helo=dude03.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1nOeq7-001oR1-Rx; Mon, 28 Feb 2022 13:09:19 +0100 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1nOeq6-00B17D-21; Mon, 28 Feb 2022 13:09:18 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Mon, 28 Feb 2022 13:09:18 +0100 Message-Id: <20220228120918.2625153-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220218160838.759601-3-p.zabel@pengutronix.de> References: <20220218160838.759601-3-p.zabel@pengutronix.de> MIME-Version: 1.0 Subject: Re: [ptxdist] [APPLIED] neatvnc: new package X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Philipp Zabel Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 121709c0fafe05ba9f3bce88bd7b00948dd8a95c. Michael [sent from post-receive hook] On Mon, 28 Feb 2022 13:09:17 +0100, Philipp Zabel wrote: > Signed-off-by: Philipp Zabel > Message-Id: <20220218160838.759601-3-p.zabel@pengutronix.de> > Signed-off-by: Michael Olbrich > > diff --git a/rules/neatvnc.in b/rules/neatvnc.in > new file mode 100644 > index 000000000000..9871a645dee8 > --- /dev/null > +++ b/rules/neatvnc.in > @@ -0,0 +1,22 @@ > +## SECTION=system_libraries > + > +menuconfig NEATVNC > + tristate > + select HOST_MESON > + select PIXMAN > + select ZLIB > + select AML > + select LIBJPEG if NEATVNC_JPEG > + select LIBJPEG_TURBO if NEATVNC_JPEG > + select LIBDRM if BUILDTIME > + prompt "neatvnc" > + help > + VNC Server library > + > +if NEATVNC > + > +config NEATVNC_JPEG > + bool > + prompt "enable jpeg compression" > + > +endif > diff --git a/rules/neatvnc.make b/rules/neatvnc.make > new file mode 100644 > index 000000000000..e5bb4c96e89b > --- /dev/null > +++ b/rules/neatvnc.make > @@ -0,0 +1,61 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2020 by Marian Cichy > +# > +# For further information about the PTXdist project and license conditions > +# see the README file. > +# > + > +# > +# We provide this package > +# > +PACKAGES-$(PTXCONF_NEATVNC) += neatvnc > + > +# > +# Paths and names > +# > +NEATVNC_VERSION := 0.4.0 > +NEATVNC_MD5 := c645abf2233a3a3ad294ca1ef9399d23 > +NEATVNC := neatvnc-$(NEATVNC_VERSION) > +NEATVNC_SUFFIX := tar.gz > +NEATVNC_URL := https://github.com/any1/neatvnc/archive/refs/tags/v$(NEATVNC_VERSION).$(NEATVNC_SUFFIX) > +NEATVNC_SOURCE := $(SRCDIR)/$(NEATVNC).$(NEATVNC_SUFFIX) > +NEATVNC_DIR := $(BUILDDIR)/$(NEATVNC) > +NEATVNC_LICENSE := ISC > + > +# ---------------------------------------------------------------------------- > +# Prepare > +# ---------------------------------------------------------------------------- > + > +# > +# meson > +# > +NEATVNC_CONF_TOOL := meson > +NEATVNC_CONF_OPT := \ > + $(CROSS_MESON_USR) \ > + -Dbenchmarks=false \ > + -Dexamples=false \ > + -Djpeg=$(call ptx/endis,PTXCONF_NEATVNC_JPEG)d \ > + -Dtls=disabled \ > + -Dsystemtap=false > + > +# ---------------------------------------------------------------------------- > +# Target-Install > +# ---------------------------------------------------------------------------- > + > +$(STATEDIR)/neatvnc.targetinstall: > + @$(call targetinfo) > + > + @$(call install_init, neatvnc) > + @$(call install_fixup, neatvnc,PRIORITY,optional) > + @$(call install_fixup, neatvnc,SECTION,base) > + @$(call install_fixup, neatvnc,AUTHOR,"Marian Cichy ") > + @$(call install_fixup, neatvnc,DESCRIPTION,missing) > + > + @$(call install_lib, neatvnc, 0, 0, 0644, libneatvnc) > + > + @$(call install_finish, neatvnc) > + > + @$(call touch) > + > +# vim: syntax=make _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de