mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Olbrich <m.olbrich@pengutronix.de>
To: ptxdist@pengutronix.de
Subject: Re: [ptxdist] [PATCH v2 7/7] cups-filters: new package: additional filters and backends for CUPS
Date: Wed, 1 Nov 2017 12:04:54 +0100	[thread overview]
Message-ID: <20171101110454.stcib7dr7miwnaua@pengutronix.de> (raw)
In-Reply-To: <8026874c-72de-394f-7bff-9bd3bdfdbe6d@pengutronix.de>

On Wed, Oct 25, 2017 at 08:35:10PM +0200, Roland Hieber wrote:
> On 30.09.2017 14:00, Michael Olbrich wrote:
> > On Wed, Sep 27, 2017 at 02:22:22PM +0200, Roland Hieber wrote:
> >> Upstream is very responsive, merged my patches and made a new release
> >> while I was still packaging the old one :) Release frequency is high,
> >> with 5 point releases in September alone, mostly small fixes.
> >>
> >> Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
> >> ---
> >>
> >> Notes:
> >>     changes in v1 -> v2:
> >>      - kconfig changes due to poppler float/fixed simplification
> >>      - version bump 1.16.6 -> 1.17.7 (they release fast!)
> >>      - remove unneeded code
> >>
> >>  rules/cups-filters.in   | 67 +++++++++++++++++++++++++++++++++++
> >>  rules/cups-filters.make | 94 +++++++++++++++++++++++++++++++++++++++++++++++++
> >>  2 files changed, 161 insertions(+)
> >>  create mode 100644 rules/cups-filters.in
> >>  create mode 100644 rules/cups-filters.make
> >>
> >> diff --git a/rules/cups-filters.in b/rules/cups-filters.in
> >> new file mode 100644
> >> index 000000000..09652443f
> >> --- /dev/null
> >> +++ b/rules/cups-filters.in
> >> @@ -0,0 +1,67 @@
> >> +## SECTION=applications
> >> +
> >> +menuconfig CUPS_FILTERS
> >> +	tristate
> >> +	prompt "cups-filters                  "
> >> +
> >> +	select LIBC_DL
> >> +	select HOST_CUPS
> >> +	select CUPS
> >> +	select GLIB
> >> +	select ZLIB
> >> +	select LCMS
> >> +	select FREETYPE
> >> +	select FONTCONFIG
> >> +	select QPDF
> >> +
> >> +	# Note: configure does not check for these poppler options:
> >> +	select POPPLER			if CUPS_FILTERS_POPPLER
> >> +	select POPPLER_BIN		if CUPS_FILTERS_POPPLER # for pdftops
> >> +	select POPPLER_CPP		if CUPS_FILTERS_POPPLER
> >> +	select POPPLER_CMS		if CUPS_FILTERS_POPPLER
> >> +	select POPPLER_SPLASH		if CUPS_FILTERS_POPPLER
> >> +	select POPPLER_XPDF		if CUPS_FILTERS_POPPLER
> >> +
> >> +	select LIBJPEG			if CUPS_FILTERS_JPEG
> >> +	select LIBPNG			if CUPS_FILTERS_PNG
> >> +
> >> +	help
> >> +	  cups-filters contains backends, filters, and other software that
> >> +	  was once part of the core CUPS distribution but is no longer
> >> +	  maintained by Apple Inc. In addition it contains additional filters
> >> +	  and software developed independently of Apple, especially filters for
> >> +	  the PDF-centric printing workflow introduced by OpenPrinting and a
> >> +	  daemon to browse Bonjour broadcasts of remote CUPS printers and makes
> >> +	  these printers available locally.
> >> +
> >> +if CUPS_FILTERS
> >> +
> >> +config CUPS_FILTERS_POPPLER
> >> +	bool "build with poppler support"
> >> +	help
> >> +	  Build with poppler support, needed for pdfto* filters and banners.
> >> +
> >> +comment "poppler support will not build with POPPLER_SPLASH_FIXED!"
> >> +	depends on (POPPLER_SPLASH_FIXED && CUPS_FILTERS_POPPLER)
> >> +
> >> +config CUPS_FILTERS_IMAGEFILTERS
> >> +	bool "build image filters"
> >> +	help
> >> +	  Build imagetopdf and imagetoraster filters
> >> +
> >> +config CUPS_FILTERS_JPEG
> >> +	bool "with JPEG support"
> >> +	depends on CUPS_FILTERS_IMAGEFILTERS
> >> +	default y
> >> +	help
> >> +	  Enable JPEG support in image filters
> >> +
> >> +config CUPS_FILTERS_PNG
> >> +	bool "with PNG support"
> >> +	depends on CUPS_FILTERS_IMAGEFILTERS
> >> +	default y
> >> +	help
> >> +	  Enable PNG support in image filters
> >> +
> >> +endif
> >> +# vim: ft=kconfig ts=8 noet tw=80
> >> diff --git a/rules/cups-filters.make b/rules/cups-filters.make
> >> new file mode 100644
> >> index 000000000..0f19d6c11
> >> --- /dev/null
> >> +++ b/rules/cups-filters.make
> >> @@ -0,0 +1,94 @@
> >> +# -*-makefile-*-
> >> +#
> >> +# Copyright (C) 2017 by Roland Hieber <r.hieber@pengutronix.de>
> >> +#
> >> +# See CREDITS for details about who has contributed to this project.
> >> +#
> >> +# For further information about the PTXdist project and license conditions
> >> +# see the README file.
> >> +#
> >> +
> >> +#
> >> +# We provide this package
> >> +#
> >> +PACKAGES-$(PTXCONF_CUPS_FILTERS) += cups-filters
> >> +
> >> +#
> >> +# Paths and names
> >> +#
> >> +CUPS_FILTERS_VERSION	:= 1.17.7
> >> +CUPS_FILTERS_MD5	:= 015caac191e9520abb7cde2fb9ce5961
> >> +CUPS_FILTERS		:= cups-filters-$(CUPS_FILTERS_VERSION)
> >> +CUPS_FILTERS_SUFFIX	:= tar.xz
> >> +CUPS_FILTERS_URL	:= http://openprinting.org/download/cups-filters/$(CUPS_FILTERS).$(CUPS_FILTERS_SUFFIX)
> >> +CUPS_FILTERS_SOURCE	:= $(SRCDIR)/$(CUPS_FILTERS).$(CUPS_FILTERS_SUFFIX)
> >> +CUPS_FILTERS_DIR	:= $(BUILDDIR)/$(CUPS_FILTERS)
> >> +CUPS_FILTERS_LICENSE	:= GPL-2.0 AND GPL-2.0+ AND GPL-3.0 AND GPL-3.0+ AND LGPL-2 AND LGPL-2.1+ AND MIT AND BSD-4-clause
> >> +
> >> +# ----------------------------------------------------------------------------
> >> +# Prepare
> >> +# ----------------------------------------------------------------------------
> >> +
> >> +#
> >> +# autoconf
> >> +#
> >> +# We have to set --exec-prefix and --libdir, otherwise the libs end up in
> >> +# ${prefix}/lib64 due to broken autoconf magic, which is not what we want.
> >> +#
> >> +CUPS_FILTERS_CONF_TOOL	:= autoconf
> >> +CUPS_FILTERS_CONF_OPT	:= \
> >> +	$(CROSS_AUTOCONF_USR) \
> >> +	--exec-prefix=/usr/ \
> >> +	--libdir=/usr/lib/ \
> > 
> > see my comment for cups.
> > 
> >> +	--disable-silent-rules \
> >> +	--disable-driverless \
> >> +	--disable-auto-setup-driverless \
> >> +	--$(call ptx/endis,PTXCONF_CUPS_FILTERS_IMAGEFILTERS)-imagefilters \
> >> +	--disable-avahi \
> >> +	--disable-ldap \
> >> +	--$(call ptx/endis,PTXCONF_CUPS_FILTERS_POPPLER)-poppler \
> >> +	--disable-dbus \
> >> +	$(GLOBAL_LARGE_FILE_OPTION) \
> >> +	--disable-mutool \
> >> +	--disable-ghostscript \
> >> +	--disable-ijs \
> >> +	--disable-gs-ps2write \
> >> +	--disable-foomatic \
> >> +	--disable-werror \
> >> +	--disable-braille \
> >> +	--with-gnu-ld \
> >> +	--with-cups-config=$(PTXDIST_SYSROOT_CROSS)/bin/cups-config \
> >> +	--with-apple-raster-filter=rastertopdf \
> >> +	--with-cups-rundir=/run \
> >> +	--with-cups-domainsocket=/run/cups.sock \
> >> +	--$(call ptx/wwo,PTXCONF_CUPS_FILTERS_JPEG)-jpeg \
> >> +	--$(call ptx/wwo,PTXCONF_CUPS_FILTERS_PNG)-png \
> >> +	--without-tiff \
> >> +	--with-browseremoteprotocols="dnssd cups" \
> >> +	--with-pdftops=pdftops
> >> +
> >> +# ----------------------------------------------------------------------------
> >> +# Target-Install
> >> +# ----------------------------------------------------------------------------
> >> +
> >> +$(STATEDIR)/cups-filters.targetinstall:
> >> +	@$(call targetinfo)
> >> +
> >> +	@$(call install_init, cups-filters)
> >> +	@$(call install_fixup, cups-filters,PRIORITY,optional)
> >> +	@$(call install_fixup, cups-filters,SECTION,base)
> >> +	@$(call install_fixup, cups-filters,AUTHOR,"Roland Hieber <r.hieber@pengutronix.de>")
> >> +	@$(call install_fixup, cups-filters,DESCRIPTION,missing)
> >> +
> >> +	@$(call install_lib, cups-filters, 0, 0, 0755, libcupsfilters)
> >> +	@$(call install_lib, cups-filters, 0, 0, 0755, libfontembed)
> > 
> > 644 right?
> 
> Hmm, all the other libs in sysroot-target/usr/lib are 0755.

But not in root/usr/lib, right? The linker makes all elf files executable.
It does not care if it's a shared library. We just remove the executable
bit for shared libraries during packaging. Other distros do the same thing.

Michael

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

  reply	other threads:[~2017-11-01 11:04 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-27 12:22 [ptxdist] [PATCH v2 1/7] libpaper: new package: system-wide papersize configuration Roland Hieber
2017-09-27 12:22 ` [ptxdist] [PATCH v2 2/7] qpdf: new package: PDF inspection library and tools Roland Hieber
2017-09-27 12:59   ` Roland Hieber
2017-09-27 12:22 ` [ptxdist] [PATCH v2 3/7] poppler-data: new package: optional encoding data for poppler Roland Hieber
2017-09-27 12:22 ` [ptxdist] [PATCH v2 4/7] poppler: version bump 0.18.0 -> 0.59.0 Roland Hieber
2017-09-30 11:29   ` Michael Olbrich
2017-10-04 14:35   ` Juergen Borleis
2017-09-27 12:22 ` [ptxdist] [PATCH v2 5/7] cups: new package: Common Unix Printing System Roland Hieber
2017-09-30 11:53   ` Michael Olbrich
2017-10-04 14:47   ` Juergen Borleis
2017-09-27 12:22 ` [ptxdist] [PATCH v2 6/7] host-cups: new package: CUPS host tools Roland Hieber
2017-09-27 21:40   ` Roland Hieber
2017-09-30 11:05     ` Michael Olbrich
2017-09-30 11:57   ` Michael Olbrich
2017-09-27 12:22 ` [ptxdist] [PATCH v2 7/7] cups-filters: new package: additional filters and backends for CUPS Roland Hieber
2017-09-30 12:00   ` Michael Olbrich
2017-10-25 18:35     ` Roland Hieber
2017-11-01 11:04       ` Michael Olbrich [this message]
2017-09-30 11:11 ` [ptxdist] [PATCH v2 1/7] libpaper: new package: system-wide papersize configuration Michael Olbrich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171101110454.stcib7dr7miwnaua@pengutronix.de \
    --to=m.olbrich@pengutronix.de \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox