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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4F5F3158090 for ; Sat, 7 May 2022 05:58:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76DD7E0536; Sat, 7 May 2022 05:58:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5926EE0536 for ; Sat, 7 May 2022 05:58:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 006CB341466 for ; Sat, 7 May 2022 05:58:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DF63D3 for ; Sat, 7 May 2022 05:57:58 +0000 (UTC) From: "Dex Conner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dex Conner" Message-ID: <1651902982.3f4cfa11497a75b27897d688935794e3964b4ae9.cantcuckthis@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-office/sc-im/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-office/sc-im/sc-im-0.8.2-r1.ebuild X-VCS-Directories: app-office/sc-im/ X-VCS-Committer: cantcuckthis X-VCS-Committer-Name: Dex Conner X-VCS-Revision: 3f4cfa11497a75b27897d688935794e3964b4ae9 X-VCS-Branch: dev Date: Sat, 7 May 2022 05:57:58 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 93d7d307-94ba-4c47-82d9-c12ed5f16735 X-Archives-Hash: 3ec1f95aeee3a3953043b74ae5ca2a03 commit: 3f4cfa11497a75b27897d688935794e3964b4ae9 Author: Dex Conner danwin1210 de> AuthorDate: Sat May 7 05:56:22 2022 +0000 Commit: Dex Conner danwin1210 de> CommitDate: Sat May 7 05:56:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3f4cfa11 app-office/sc-im: re-add xlsx export support Signed-off-by: Dex Conner danwin1210.de> app-office/sc-im/sc-im-0.8.2-r1.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app-office/sc-im/sc-im-0.8.2-r1.ebuild b/app-office/sc-im/sc-im-0.8.2-r1.ebuild index 8bf7613d1..d95a385a1 100644 --- a/app-office/sc-im/sc-im-0.8.2-r1.ebuild +++ b/app-office/sc-im/sc-im-0.8.2-r1.ebuild @@ -121,10 +121,10 @@ src_configure() { append-cflags -DODS -DXLSX $(${PKGCONF} --cflags libxml-2.0 libzip) LDLIBS+=" -DODS -DXLSX $(${PKGCONF} --libs libxml-2.0 libzip)" fi - # if use xlsx ; then - # append-cflags -DXLSX_EXPORT $(${PKGCONF} --cflags xlsxwriter) - # LDLIBS+=" -DXLSX_EXPORT $(${PKGCONF} --libs xlsxwriter)" - # fi + if use xlsx ; then + append-cflags -DXLSX_EXPORT $(${PKGCONF} --cflags xlsxwriter) + LDLIBS+=" -DXLSX_EXPORT $(${PKGCONF} --libs xlsxwriter)" + fi if use lua ; then append-cflags -DXLUA $(${PKGCONF} --cflags lua) LDLIBS+=" -DXLUA $(${PKGCONF} --libs lua) -rdynamic"