aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2010-07-11 18:05:42 +0200
committerJustin Lecher <jlec@gentoo.org>2010-07-11 18:05:42 +0200
commitc3918c39751d453559a0af5163cffd453c1244ad (patch)
tree815c68ce3dbf024b46778445c4c4d5ecb8474240 /x11-libs/gl2ps/gl2ps-1.3.5-r1.ebuild
parentImported to tree (diff)
downloadsci-c3918c39751d453559a0af5163cffd453c1244ad.tar.gz
sci-c3918c39751d453559a0af5163cffd453c1244ad.tar.bz2
sci-c3918c39751d453559a0af5163cffd453c1244ad.zip
In tree
Diffstat (limited to 'x11-libs/gl2ps/gl2ps-1.3.5-r1.ebuild')
-rw-r--r--x11-libs/gl2ps/gl2ps-1.3.5-r1.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/x11-libs/gl2ps/gl2ps-1.3.5-r1.ebuild b/x11-libs/gl2ps/gl2ps-1.3.5-r1.ebuild
deleted file mode 100644
index b5a87ae11..000000000
--- a/x11-libs/gl2ps/gl2ps-1.3.5-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="3"
-inherit cmake-utils multilib
-
-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="~alpha ~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="png zlib doc"
-
-DEPEND="virtual/glut
- png? ( media-libs/libpng )
- zlib? ( sys-libs/zlib )
- doc? ( dev-texlive/texlive-latex
- dev-tex/tth )"
-
-S=${WORKDIR}/${P}-source
-
-PATCHES=( "${FILESDIR}/${P}-CMakeLists.patch" )
-
-src_configure() {
- mycmakeargs="${mycmakeargs}
- $(cmake-utils_use_has png PNG)
- $(cmake-utils_use_has zlib ZLIB)
- $(cmake-utils_use_has doc DOC)"
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
- prepalldocs
-
- if [[ ${CHOST} == *-darwin* ]] ; then
- # CMake produces an invalid dylib here, but I have no clue how to fix it
- # hmm, it's also unversioned :(
- install_name_tool \
- -id "${EPREFIX}"/usr/$(get_libdir)/libgl2ps.dylib \
- "${D%/}${EPREFIX}"/usr/$(get_libdir)/libgl2ps.dylib || die
- fi
-}