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 F35CD158093 for ; Sun, 19 Jun 2022 09:14:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41569E0984; Sun, 19 Jun 2022 09:14:25 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1F1CEE0984 for ; Sun, 19 Jun 2022 09:14:25 +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 63F06341A80 for ; Sun, 19 Jun 2022 09:14:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 122B1507 for ; Sun, 19 Jun 2022 09:14:23 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1655630038.3446e34f87476b4d7d731a348977f90bd7a542da.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libfreehand/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libfreehand/libfreehand-0.1.2-r1.ebuild media-libs/libfreehand/libfreehand-0.1.2.ebuild X-VCS-Directories: media-libs/libfreehand/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 3446e34f87476b4d7d731a348977f90bd7a542da X-VCS-Branch: master Date: Sun, 19 Jun 2022 09:14:23 +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: b98b1626-37be-46ae-8628-2e1d6c247b50 X-Archives-Hash: 817807c82c5c3b9fe49ce87256cc7016 commit: 3446e34f87476b4d7d731a348977f90bd7a542da Author: David Seifert gentoo org> AuthorDate: Sun Jun 19 09:13:58 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jun 19 09:13:58 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3446e34f media-libs/libfreehand: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> media-libs/libfreehand/libfreehand-0.1.2-r1.ebuild | 62 ++++++++++++++++++++++ media-libs/libfreehand/libfreehand-0.1.2.ebuild | 59 -------------------- 2 files changed, 62 insertions(+), 59 deletions(-) diff --git a/media-libs/libfreehand/libfreehand-0.1.2-r1.ebuild b/media-libs/libfreehand/libfreehand-0.1.2-r1.ebuild new file mode 100644 index 000000000000..c1338ae71215 --- /dev/null +++ b/media-libs/libfreehand/libfreehand-0.1.2-r1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +if [[ ${PV} == *9999 ]]; then + EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libfreehand.git" + inherit autotools git-r3 +else + SRC_URI="https://dev-www.libreoffice.org/src/libfreehand/${P}.tar.xz" + KEYWORDS="amd64 ~arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86" +fi + +DESCRIPTION="Library for import of FreeHand drawings" +HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libfreehand" + +LICENSE="MPL-2.0" +SLOT="0" +IUSE="doc test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/librevenge + sys-libs/zlib +" +DEPEND="${RDEPEND} + dev-libs/boost + dev-libs/icu + dev-util/gperf + media-libs/lcms + sys-devel/libtool + test? ( dev-util/cppunit ) +" +BDEPEND=" + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" + +PATCHES=( "${FILESDIR}"/${P}-icu-65.patch ) + +src_prepare() { + default + + if [[ ${PV} == *9999 ]]; then + mkdir -p m4 || die + eautoreconf + fi +} + +src_configure() { + local myeconfargs=( + --disable-werror + $(use_with doc docs) + $(use_enable test tests) + ) + econf "${myeconfargs[@]}" +} + +src_install() { + default + find "${ED}" -name '*.la' -type f -delete || die +} diff --git a/media-libs/libfreehand/libfreehand-0.1.2.ebuild b/media-libs/libfreehand/libfreehand-0.1.2.ebuild deleted file mode 100644 index 582c605fe52b..000000000000 --- a/media-libs/libfreehand/libfreehand-0.1.2.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic - -EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libfreehand.git" -[[ ${PV} == 9999 ]] && inherit autotools git-r3 - -DESCRIPTION="Library for import of FreeHand drawings" -HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libfreehand" -[[ ${PV} == 9999 ]] || SRC_URI="https://dev-www.libreoffice.org/src/libfreehand/${P}.tar.xz" - -LICENSE="MPL-2.0" -SLOT="0" -[[ ${PV} == 9999 ]] || \ -KEYWORDS="amd64 ~arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86" -IUSE="doc static-libs test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/librevenge - sys-libs/zlib -" -DEPEND="${RDEPEND} - dev-libs/boost - dev-libs/icu - dev-util/gperf - media-libs/lcms - sys-devel/libtool - virtual/pkgconfig - doc? ( app-doc/doxygen ) - test? ( dev-util/cppunit ) -" - -PATCHES=( "${FILESDIR}/${P}-icu-65.patch" ) - -src_prepare() { - default - [[ -d m4 ]] || mkdir "m4" - [[ ${PV} == 9999 ]] && eautoreconf -} - -src_configure() { - # bug 619762 - append-cxxflags -std=c++14 - - econf \ - --disable-werror \ - $(use_with doc docs) \ - $(use_enable static-libs static) \ - $(use_enable test tests) -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -}