commit:     e081e082783227007577b3ba97867ed30ff69fd1
Author:     Chris Mayo <aklhfex <AT> gmail <DOT> com>
AuthorDate: Tue Oct 15 18:36:44 2024 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Wed Oct 16 12:27:39 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e081e082

x11-libs/gl2ps: Fix dependencies

Signed-off-by: Chris Mayo <aklhfex <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/39003
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 x11-libs/gl2ps/gl2ps-1.4.2-r1.ebuild | 54 ++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

diff --git a/x11-libs/gl2ps/gl2ps-1.4.2-r1.ebuild 
b/x11-libs/gl2ps/gl2ps-1.4.2-r1.ebuild
new file mode 100644
index 000000000000..457bb278a4fe
--- /dev/null
+++ b/x11-libs/gl2ps/gl2ps-1.4.2-r1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit cmake
+
+DESCRIPTION="OpenGL to PostScript printing library"
+HOMEPAGE="https://www.geuz.org/gl2ps/";
+SRC_URI="https://geuz.org/${PN}/src/${P}.tgz";
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux ~ppc-macos"
+IUSE="doc png zlib"
+
+RDEPEND="
+       media-libs/libglvnd
+       png? ( media-libs/libpng:0= )
+       zlib? ( sys-libs/zlib )
+"
+DEPEND="${RDEPEND}
+       doc? (
+               dev-tex/tth
+               dev-texlive/texlive-latex
+               dev-texlive/texlive-latexrecommended
+       )
+"
+
+PATCHES=( "${FILESDIR}"/${PN}-1.4.2-cmake.patch )
+
+src_prepare() {
+       cmake_src_prepare
+       sed '/^install.*TODO\.txt/d' -i "${S}"/CMakeLists.txt || die
+}
+
+src_configure() {
+       local mycmakeargs=(
+               -DCMAKE_INSTALL_DOCDIR="share/doc/${PF}"
+               -DENABLE_DOC="$(usex doc)"
+               -DENABLE_PNG="$(usex png)"
+               -DENABLE_ZLIB="$(usex zlib)"
+               -DOpenGL_GL_PREFERENCE=GLVND
+       )
+       cmake_src_configure
+}
+
+src_install() {
+       cmake_src_install
+       if [[ ${CHOST} == *-darwin* ]] ; then
+               install_name_tool \
+                       -id "${EPREFIX}"/usr/$(get_libdir)/libgl2ps.dylib \
+                       "${D}${EPREFIX}"/usr/$(get_libdir)/libgl2ps.dylib || die
+       fi
+}

Reply via email to