From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E4C30139694 for ; Wed, 17 May 2017 09:01:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06A51E0CB3; Wed, 17 May 2017 09:01:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C8C8FE0CB3 for ; Wed, 17 May 2017 09:01:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 621E73416B3 for ; Wed, 17 May 2017 09:01:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2CF9D7459 for ; Wed, 17 May 2017 09:01:33 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1495011689.909966f477ca0c5c17cbf083982b730452335e9d.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-print/cups-filters/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-print/cups-filters/cups-filters-9999.ebuild X-VCS-Directories: net-print/cups-filters/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 909966f477ca0c5c17cbf083982b730452335e9d X-VCS-Branch: master Date: Wed, 17 May 2017 09:01:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1b7f96d4-e439-4809-b480-fb37a2469f9a X-Archives-Hash: 3b4ceeca736c4237dabe37ad6b837ec2 commit: 909966f477ca0c5c17cbf083982b730452335e9d Author: Lars Wendler gentoo org> AuthorDate: Wed May 17 09:01:12 2017 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed May 17 09:01:29 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=909966f4 net-print/cups-filters: Sync live ebuild. Package-Manager: Portage-2.3.5, Repoman-2.3.2 net-print/cups-filters/cups-filters-9999.ebuild | 50 +++++++++++++------------ 1 file changed, 27 insertions(+), 23 deletions(-) diff --git a/net-print/cups-filters/cups-filters-9999.ebuild b/net-print/cups-filters/cups-filters-9999.ebuild index c15519475fe..a6b05ac76fe 100644 --- a/net-print/cups-filters/cups-filters-9999.ebuild +++ b/net-print/cups-filters/cups-filters-9999.ebuild @@ -5,7 +5,7 @@ EAPI=6 GENTOO_DEPEND_ON_PERL=no -inherit eutils perl-module systemd +inherit perl-module systemd if [[ "${PV}" == "9999" ]] ; then inherit bzr autotools @@ -19,7 +19,7 @@ HOMEPAGE="https://wiki.linuxfoundation.org/openprinting/pdf_as_standard_print_jo LICENSE="MIT GPL-2" SLOT="0" -IUSE="dbus +foomatic jpeg ldap pdf perl png +postscript static-libs tiff zeroconf" +IUSE="dbus +foomatic ipp_autosetup jpeg ldap pdf perl png +postscript static-libs tiff zeroconf" RDEPEND=" postscript? ( >=app-text/ghostscript-gpl-9.09[cups] ) @@ -31,6 +31,7 @@ RDEPEND=" media-libs/lcms:2 >=net-print/cups-1.7.3 !<=net-print/cups-1.5.9999 + sys-devel/bc sys-libs/zlib dbus? ( sys-apps/dbus ) foomatic? ( !net-print/foomatic-filters ) @@ -52,27 +53,30 @@ src_prepare() { } src_configure() { - econf \ - --docdir="${EPREFIX}/usr/share/doc/${PF}" \ - --localstatedir="${EPREFIX}"/var \ - --with-cups-rundir="${EPREFIX}"/run/cups \ - $(use_enable dbus) \ - $(use_enable zeroconf avahi) \ - $(use_enable static-libs static) \ - $(use_enable foomatic) \ - $(use_enable ldap) \ - $(use_enable pdf mutool) \ - $(use_enable postscript ghostscript) \ - $(use_enable postscript ijs) \ - --with-fontdir="fonts/conf.avail" \ - --with-pdftops=pdftops \ - --enable-imagefilters \ - $(use_with jpeg) \ - $(use_with png) \ - $(use_with tiff) \ - --with-rcdir=no \ - --with-browseremoteprotocols=DNSSD,CUPS \ + local myeconfargs=( + --docdir="${EPREFIX}/usr/share/doc/${PF}" + --enable-imagefilters + --localstatedir="${EPREFIX}"/var + --with-browseremoteprotocols=DNSSD,CUPS + --with-cups-rundir="${EPREFIX}"/run/cups + --with-fontdir="fonts/conf.avail" + --with-pdftops=pdftops + --with-rcdir=no --without-php + $(use_enable dbus) + $(use_enable foomatic) + $(use_enable ipp_autosetup auto-setup-driverless) + $(use_enable ldap) + $(use_enable pdf mutool) + $(use_enable postscript ghostscript) + $(use_enable postscript ijs) + $(use_enable static-libs static) + $(use_enable zeroconf avahi) + $(use_with jpeg) + $(use_with png) + $(use_with tiff) + ) + econf "${myeconfargs[@]}" } src_compile() { @@ -102,7 +106,7 @@ src_install() { dosym gstopxl /usr/libexec/cups/filter/pstopxl fi - prune_libtool_files --all + find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die cp "${FILESDIR}"/cups-browsed.init.d-r1 "${T}"/cups-browsed || die