summaryrefslogtreecommitdiff
path: root/x11-libs/gl2ps/gl2ps-1.3.9.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-02-17 10:35:54 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-02-17 10:35:54 +0000
commit463397cf1e064185110fe57c568d73f99a06f5d1 (patch)
tree9aa75eefc5154eaf0e3c33658b830fc54dc68052 /x11-libs/gl2ps/gl2ps-1.3.9.ebuild
parentc8d60dada2ec8eb48b2d2b290cd6683ccec40e39 (diff)
gentoo resync : 17.02.2021
Diffstat (limited to 'x11-libs/gl2ps/gl2ps-1.3.9.ebuild')
-rw-r--r--x11-libs/gl2ps/gl2ps-1.3.9.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/x11-libs/gl2ps/gl2ps-1.3.9.ebuild b/x11-libs/gl2ps/gl2ps-1.3.9.ebuild
deleted file mode 100644
index 8343480aa877..000000000000
--- a/x11-libs/gl2ps/gl2ps-1.3.9.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit cmake-utils
-
-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 ~hppa ppc ppc64 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 )"
-
-S=${WORKDIR}/${P}-source
-
-PATCHES=( "${FILESDIR}"/${PN}-1.3.8-cmake.patch )
-
-src_prepare() {
- cmake-utils_src_prepare
- sed '/^install.*TODO\.txt/d' -i "${S}"/CMakeLists.txt || die
-}
-
-src_configure() {
- local mycmakeargs=(
- -DCMAKE_INSTALL_DOCDIR="share/doc/${PF}"
- -DUSE_ENABLE_DOC="$(usex doc)"
- -DUSE_ENABLE_PNG="$(usex png)"
- -DUSE_ENABLE_ZLIB="$(usex zlib)"
- )
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_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
-}