summaryrefslogtreecommitdiff
path: root/media-libs/libpgf
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-05-07 00:00:56 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-05-07 00:00:56 +0100
commit7bcfea9c5e79a425a62a66bba477b9d3c0d7fdd0 (patch)
tree02bad8e4f1f060d4858a1a2ec3fc9404f0b7a197 /media-libs/libpgf
parent43c2a85d4e20318dd3d35872e348707900870067 (diff)
gentoo auto-resync : 07:05:2024 - 00:00:56
Diffstat (limited to 'media-libs/libpgf')
-rw-r--r--media-libs/libpgf/Manifest1
-rw-r--r--media-libs/libpgf/libpgf-7.21.7-r1.ebuild55
2 files changed, 0 insertions, 56 deletions
diff --git a/media-libs/libpgf/Manifest b/media-libs/libpgf/Manifest
index ef4322edb73b..c192a01f59ab 100644
--- a/media-libs/libpgf/Manifest
+++ b/media-libs/libpgf/Manifest
@@ -1,5 +1,4 @@
AUX libpgf-7.21.7-remove-off64_t.patch 887 BLAKE2B 88f420fb725d6f33f2f50073bbf21da21f7f587728bde4522bad1a0b695222a7704763f02373b35689737e59c4162be5563f84b477748abe88b53bc199d567fc SHA512 987bea1d48dc11bbaee23e411b8a89c78dd04bc90f3beb263277293cfc20578b3819c6b9d97cb9803ddfdeada19cbc80d3521d2288479e28cb0a8a0497b36a9b
DIST libpgf-7.21.7.zip 2075722 BLAKE2B 31c5ab5930ef5658ca9b320fa3df94b7d8566467a657df6d255781664a4750d6b5cb7b351c828cad7c60b42f8cb8926c51bb0271d5c51e2484426a15f18b5eb2 SHA512 dbc17d9dce1afbeffb272df0d573059914d2ac79d652d1d43e67c49509fd6e643be8594bbd1a3058a5aa3a9d30db100c6dcf641051345049cf8f9375d49e2799
-EBUILD libpgf-7.21.7-r1.ebuild 1185 BLAKE2B 011c77da3a4a53f4e1e2a80ca71bbf13c6dee90c8eb4979f72da7cd40931bd2d55b92900c203675ed713497b8cbfe0df4ff2abfab70b135c3e31b66846d1c995 SHA512 2d5eee0390a2f2a7fe6abe052e77294c2785e10e1f9c6976fec15ad92cf954eee31086b8d5155cad468c0ec965a081567bda8c211a557a199edeb9fdac90c7be
EBUILD libpgf-7.21.7-r2.ebuild 1234 BLAKE2B e4a8ed725437f89d8478dc1317e1b2a4b2008140ce2fe21641b86a165e8792dad75bc55a3f52fbcf928a5e2c20eda6b494ffa979d2214f3571fe1e94e4c41b1b SHA512 10e7e00615b2a280f78d4768998472d0fcbe46a05faa8611275333cb6839ec2436825421906feff53a53153f9db6ad794eb394952794655952a45616d48d56c7
MISC metadata.xml 325 BLAKE2B 2dc17e97d5c74f7679dcd00ab589cacc7ed2303413a07de0632abb4a0ede84b60d9ef085f71ff7ec983c8d79d6ca35a3901bdd4d1885e1ddda535d2fd7b7a8a9 SHA512 ce6fce6a25d71afa9a6834a43ccd22e3e6a8855b5963534295b3c8f13e22a817319ed77a5aa6eb441d6f97de31a9bd94065e6e021e8aa87727c0c40d23a9e53e
diff --git a/media-libs/libpgf/libpgf-7.21.7-r1.ebuild b/media-libs/libpgf/libpgf-7.21.7-r1.ebuild
deleted file mode 100644
index 37c2a59a03ce..000000000000
--- a/media-libs/libpgf/libpgf-7.21.7-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools edos2unix
-
-DESCRIPTION="Library to load, handle and manipulate images in the PGF format"
-HOMEPAGE="https://www.libpgf.org/"
-SRC_URI="https://downloads.sourceforge.net/project/libpgf/libpgf/${PV}/libpgf.zip -> ${P}.zip"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="doc"
-
-BDEPEND="
- app-arch/unzip
- doc? (
- app-text/doxygen
- dev-texlive/texlive-fontutils
- )
-"
-
-S="${WORKDIR}/libpgf"
-
-src_prepare() {
- default
-
- # configure.ac has wrong version number
- sed -i "s/7.15.32/${PV}/g" configure.ac || die
-
- # many files, including configure.ac and Makefile.am, are saved in dos format, causing errors in autotools
- edos2unix *.{am,ac,in,sh} */*.{am,in}
-
- # the package does not respect --docdir and installs docs in /usr/share/doc/${PN}
- sed -i -e 's/\$(DOC_DIR)/$(DESTDIR)@docdir@/' doc/Makefile.am || die
-
- if ! use doc; then
- sed -i -e "/HAS_DOXYGEN/{N;N;d}" Makefile.am || die
- fi
-
- eautoreconf
-}
-
-src_install() {
- default
-
- if use doc; then
- docinto pdf
- dodoc doc/*.pdf doc/latex/*.pdf
- fi
-
- find "${ED}" -name '*.la' -delete || die
-}