From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 09811158042 for ; Mon, 11 Nov 2024 16:15:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF4C6E0805; Mon, 11 Nov 2024 16:14:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D43E9E0805 for ; Mon, 11 Nov 2024 16:14:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DF3E534092E for ; Mon, 11 Nov 2024 16:14:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E0381BCD for ; Mon, 11 Nov 2024 16:14:56 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1731341630.d8f9ade7bfd079194406a5730f1989ef4201e3cb.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/gl2ps/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/gl2ps/gl2ps-1.4.2.ebuild X-VCS-Directories: x11-libs/gl2ps/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d8f9ade7bfd079194406a5730f1989ef4201e3cb X-VCS-Branch: master Date: Mon, 11 Nov 2024 16:14:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 960e445c-e0dc-4e57-9837-8df28e9d7738 X-Archives-Hash: 864b1fc5726f47876f49165013a631eb commit: d8f9ade7bfd079194406a5730f1989ef4201e3cb Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Nov 11 16:13:16 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Nov 11 16:13:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8f9ade7 x11-libs/gl2ps: drop 1.4.2 Signed-off-by: Andreas Sturmlechner gentoo.org> x11-libs/gl2ps/gl2ps-1.4.2.ebuild | 51 --------------------------------------- 1 file changed, 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 -}