From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 08 Jul 2022 11:17:19 +0200 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 1o9k6t-00AKji-Lo for lore@lore.pengutronix.de; Fri, 08 Jul 2022 11:17:19 +0200 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 1o9k6w-0005VU-Ad; Fri, 08 Jul 2022 11:17:18 +0200 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 1o9k6g-0005VK-NH; Fri, 08 Jul 2022 11:17:02 +0200 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 1o9k6c-0057xq-GP; Fri, 08 Jul 2022 11:17:02 +0200 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1o9k6e-000Kmg-UT; Fri, 08 Jul 2022 11:17:01 +0200 Date: Fri, 8 Jul 2022 11:17:00 +0200 From: Michael Olbrich To: Lucas Stach Message-ID: Mail-Followup-To: Lucas Stach , ptxdist@pengutronix.de References: <20220706152008.2329323-1-l.stach@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220706152008.2329323-1-l.stach@pengutronix.de> X-Sent-From: Pengutronix Hildesheim X-URL: http://www.pengutronix.de/ X-IRC: #ptxdist @freenode X-Accept-Language: de,en X-Accept-Content-Type: text/plain Subject: Re: [ptxdist] [PATCH] xorg-lib-xcvt: 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: ptxdist@pengutronix.de 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 On Wed, Jul 06, 2022 at 05:20:08PM +0200, Lucas Stach wrote: > libxcvt is a library providing a standalone version of the X server > implementation of the VESA CVT standard timing modelines generator. > > Signed-off-by: Lucas Stach > --- > rules/xorg-lib-xcvt.in | 19 +++++++++++++ > rules/xorg-lib-xcvt.make | 60 ++++++++++++++++++++++++++++++++++++++++ Please use libxcvt as package name. I've already done that with other packages (e.g. libxcb). The xorg-* naming makes it hard to guess what the package name will be, especially when it's not quite clear if a package is Xorg only or is just historically related. Like, for example libxkbcommon. So I stopped using such names for new packages. Michael > 2 files changed, 79 insertions(+) > create mode 100644 rules/xorg-lib-xcvt.in > create mode 100644 rules/xorg-lib-xcvt.make > > diff --git a/rules/xorg-lib-xcvt.in b/rules/xorg-lib-xcvt.in > new file mode 100644 > index 000000000000..51a326d4a383 > --- /dev/null > +++ b/rules/xorg-lib-xcvt.in > @@ -0,0 +1,19 @@ > +## SECTION=multimedia_xorg_lib > + > +config XORG_LIB_XCVT > + tristate > + select HOST_MESON > + prompt "libxcvt" > + help > + libxcvt is a library providing a standalone version of the X server > + implementation of the VESA CVT standard timing modelines generator. > + > +if XORG_LIB_XCVT > + > +config XORG_LIB_XCVT_TOOL > + bool > + prompt "install cvt cmdline tool" > + help > + Install cvt commandline tool to generate CVT timings. > + > +endif > diff --git a/rules/xorg-lib-xcvt.make b/rules/xorg-lib-xcvt.make > new file mode 100644 > index 000000000000..483a7862da8e > --- /dev/null > +++ b/rules/xorg-lib-xcvt.make > @@ -0,0 +1,60 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2022 by Lucas Stach > +# > +# For further information about the PTXdist project and license conditions > +# see the README file. > +# > + > +# > +# We provide this package > +# > +PACKAGES-$(PTXCONF_XORG_LIB_XCVT) += xorg-lib-xcvt > + > +# > +# Paths and names > +# > +XORG_LIB_XCVT_VERSION := 0.1.1 > +XORG_LIB_XCVT_MD5 := 9f30247e8b5a09fa1df9538252a192b5 > +XORG_LIB_XCVT := libxcvt-$(XORG_LIB_XCVT_VERSION) > +XORG_LIB_XCVT_SUFFIX := tar.xz > +XORG_LIB_XCVT_URL := https://www.x.org/pub/individual/lib//$(XORG_LIB_XCVT).$(XORG_LIB_XCVT_SUFFIX) > +XORG_LIB_XCVT_SOURCE := $(SRCDIR)/$(XORG_LIB_XCVT).$(XORG_LIB_XCVT_SUFFIX) > +XORG_LIB_XCVT_DIR := $(BUILDDIR)/$(XORG_LIB_XCVT) > +XORG_LIB_XCVT_LICENSE := MIT > +XORG_LIB_XCVT_LICENSE_FILES := \ > + file://COPYING;129947a06984d6faa6f9a9788fa2a03f > + > +# ---------------------------------------------------------------------------- > +# Prepare > +# ---------------------------------------------------------------------------- > + > +# > +# meson > +# > +XORG_LIB_XCVT_CONF_TOOL := meson > + > +# ---------------------------------------------------------------------------- > +# Target-Install > +# ---------------------------------------------------------------------------- > + > +$(STATEDIR)/xorg-lib-xcvt.targetinstall: > + @$(call targetinfo) > + > + @$(call install_init, xorg-lib-xcvt) > + @$(call install_fixup, xorg-lib-xcvt,PRIORITY,optional) > + @$(call install_fixup, xorg-lib-xcvt,SECTION,base) > + @$(call install_fixup, xorg-lib-xcvt,AUTHOR,"Lucas Stach ") > + @$(call install_fixup, xorg-lib-xcvt,DESCRIPTION,missing) > + > + @$(call install_lib, xorg-lib-xcvt, 0, 0, 0644, libxcvt) > + > +ifdef PTXCONF_XORG_LIB_XCVT_TOOL > + @$(call install_copy, xorg-lib-xcvt, 0, 0, 0755, -, /usr/bin/cvt) > +endif > + > + @$(call install_finish, xorg-lib-xcvt) > + > + @$(call touch) > + > +# vim: syntax=make > -- > 2.30.2 > > > -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |