diff --git a/media-libs/libvisio/Manifest b/media-libs/libvisio/Manifest index 7dbd1a97c2750..888b8eb35c308 100644 --- a/media-libs/libvisio/Manifest +++ b/media-libs/libvisio/Manifest @@ -1,2 +1 @@ DIST libvisio-0.1.10.tar.xz 2041876 BLAKE2B dc0a2db0907e817f657fe17e437c4da7a4816498cec07e5ff798d90c7a40724fe3c1c13ad5f2251733e5908f25e3d215853861329f218d490098e1950aaf3f25 SHA512 2b827b90d3b32b975ab1edd4147b166edce238b27536d22c582289b4e15ce9644b8ad95336f167046161c7449b8747ee9f23d74d8dc9c5a66afbbaf4443563b7 -DIST libvisio-0.1.8.tar.xz 1686344 BLAKE2B 5e852e96c6484990349e3fb93dafb1bb3a23f9f72fefc13ceaf56677e3e4aaf01384fcae423cf9f022fb9a91800dc967a89b3eced40a96fe17c756241fb88ad8 SHA512 f89e7cd08287f769936cfacdbdd95fe97a535cca63231c14e2637a8ee6a5e86c6de79b3858c08a5ab483e17cf06107af4fac9014f695b25fedad15f841efba53 diff --git a/media-libs/libvisio/libvisio-0.1.8-r1.ebuild b/media-libs/libvisio/libvisio-0.1.8-r1.ebuild deleted file mode 100644 index 601201606922f..0000000000000 --- a/media-libs/libvisio/libvisio-0.1.8-r1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit flag-o-matic - -if [[ ${PV} == *9999* ]]; then - EGIT_REPO_URI="https://git.libreoffice.org/libvisio.git" - inherit autotools git-r3 -else - SRC_URI="https://dev-www.libreoffice.org/src/libvisio/${P}.tar.xz" - KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" -fi - -DESCRIPTION="Library parsing the file format of MS Visio documents" -HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libvisio" - -LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )" -SLOT="0" -IUSE="doc test tools" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/icu:= - dev-libs/librevenge - dev-libs/libxml2:= -" -DEPEND="${RDEPEND} - dev-libs/boost - dev-util/gperf - dev-build/libtool - test? ( dev-util/cppunit ) -" -BDEPEND=" - dev-lang/perl - virtual/pkgconfig - doc? ( app-text/doxygen ) -" - -src_prepare() { - default - [[ -d m4 ]] || mkdir "m4" || die - [[ ${PV} == *9999* ]] && eautoreconf -} - -src_configure() { - # bug 619688, 932496 - append-cxxflags -std=c++17 - - local myeconfargs=( - $(use_with doc docs) - $(use_enable test tests) - $(use_enable tools) - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - find "${ED}" -name '*.la' -delete || die -}