diff options
author | 2024-11-14 06:31:04 +0100 | |
---|---|---|
committer | 2024-11-14 19:42:01 +0100 | |
commit | 6dc964333c20dc2e7ac2e9c1f769afa45726aad2 (patch) | |
tree | 30b5900c73ea462a6cbb0a2714bede6463c9e704 /app-text/libetonyek/libetonyek-0.1.11.ebuild | |
parent | dev-db/postgresql: Stabilize 17.1 arm, #943513 (diff) | |
download | gentoo-6dc964333c20dc2e7ac2e9c1f769afa45726aad2.tar.gz gentoo-6dc964333c20dc2e7ac2e9c1f769afa45726aad2.tar.bz2 gentoo-6dc964333c20dc2e7ac2e9c1f769afa45726aad2.zip |
app-text/libetonyek: add 0.1.11
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-text/libetonyek/libetonyek-0.1.11.ebuild')
-rw-r--r-- | app-text/libetonyek/libetonyek-0.1.11.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/app-text/libetonyek/libetonyek-0.1.11.ebuild b/app-text/libetonyek/libetonyek-0.1.11.ebuild new file mode 100644 index 000000000000..535cecb7dd54 --- /dev/null +++ b/app-text/libetonyek/libetonyek-0.1.11.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2024 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/libetonyek.git" + inherit autotools git-r3 +else + SRC_URI="https://dev-www.libreoffice.org/src/libetonyek/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +DESCRIPTION="Library parsing Apple Keynote presentations" +HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek" + +LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )" +SLOT="0" +IUSE="doc test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-text/liblangtag + dev-libs/librevenge + dev-libs/libxml2 + >=dev-util/mdds-2.1:1= + sys-libs/zlib +" +DEPEND="${RDEPEND} + dev-libs/boost + media-libs/glm + dev-build/libtool + test? ( dev-util/cppunit ) +" +BDEPEND=" + virtual/pkgconfig + doc? ( app-text/doxygen ) +" + +src_prepare() { + default + [[ -d m4 ]] || mkdir "m4" || die + [[ ${PV} == *9999* ]] && eautoreconf +} + +src_configure() { + local myeconfargs=( + --disable-werror + --with-mdds=2.1 + $(use_with doc docs) + $(use_enable test tests) + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + default + find "${ED}" -name '*.la' -type f -delete || die +} |