diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-11-11 17:13:16 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-11-11 17:13:50 +0100 |
commit | d8f9ade7bfd079194406a5730f1989ef4201e3cb (patch) | |
tree | bd0bb4f41e587ab80df8e144ec454dd971eb3f61 /x11-libs | |
parent | media-video/guvcview: drop 2.0.8 (diff) | |
download | gentoo-d8f9ade7bfd079194406a5730f1989ef4201e3cb.tar.gz gentoo-d8f9ade7bfd079194406a5730f1989ef4201e3cb.tar.bz2 gentoo-d8f9ade7bfd079194406a5730f1989ef4201e3cb.zip |
x11-libs/gl2ps: drop 1.4.2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/gl2ps/gl2ps-1.4.2.ebuild | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/x11-libs/gl2ps/gl2ps-1.4.2.ebuild b/x11-libs/gl2ps/gl2ps-1.4.2.ebuild deleted file mode 100644 index e248470f2bde..000000000000 --- a/x11-libs/gl2ps/gl2ps-1.4.2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit cmake - -DESCRIPTION="OpenGL to PostScript printing library" -HOMEPAGE="http://www.geuz.org/gl2ps/" -SRC_URI="http://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/freeglut - x11-libs/libXmu - 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)" - ) - 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 -} |