diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2007-11-14 23:02:08 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2007-11-14 23:02:08 +0000 |
commit | e325598cfeca3610db1d5b8899c7dfb9773cb690 (patch) | |
tree | f659bfc08c4b606c8104e2e4a16835cbca8c078a /media-gfx/graphviz/graphviz-2.8-r2.ebuild | |
parent | upstream fix for using https sites (diff) | |
download | gentoo-2-e325598cfeca3610db1d5b8899c7dfb9773cb690.tar.gz gentoo-2-e325598cfeca3610db1d5b8899c7dfb9773cb690.tar.bz2 gentoo-2-e325598cfeca3610db1d5b8899c7dfb9773cb690.zip |
Remove old versions.
(Portage version: 2.1.3.19)
Diffstat (limited to 'media-gfx/graphviz/graphviz-2.8-r2.ebuild')
-rw-r--r-- | media-gfx/graphviz/graphviz-2.8-r2.ebuild | 105 |
1 files changed, 0 insertions, 105 deletions
diff --git a/media-gfx/graphviz/graphviz-2.8-r2.ebuild b/media-gfx/graphviz/graphviz-2.8-r2.ebuild deleted file mode 100644 index cee47086dc50..000000000000 --- a/media-gfx/graphviz/graphviz-2.8-r2.ebuild +++ /dev/null @@ -1,105 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphviz/graphviz-2.8-r2.ebuild,v 1.16 2007/03/10 22:22:14 vapier Exp $ - -inherit eutils libtool autotools toolchain-funcs - -DESCRIPTION="Open Source Graph Visualization Software" -HOMEPAGE="http://www.graphviz.org/" -SRC_URI="http://www.graphviz.org/pub/graphviz/ARCHIVE/${P}.tar.gz" - -LICENSE="CPL-1.0" -SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 m68k ppc ppc64 s390 sh sparc x86 ~x86-fbsd" -IUSE="cairo tcl tk X static guile java lua perl php python ruby ocaml minimal" - -RDEPEND=">=sys-libs/zlib-1.1.3 - >=media-libs/libpng-1.2 - >=media-libs/jpeg-6b - media-libs/gd - media-libs/freetype - media-libs/fontconfig - dev-libs/expat - sys-libs/zlib - cairo? ( >=x11-libs/libsvg-cairo-0.1.3 ) - tk? ( >=dev-lang/tk-8.3 ) - tcl? ( >=dev-lang/tcl-8.3 ) - guile? ( <dev-scheme/guile-1.8 ) - java? ( virtual/jdk ) - perl? ( dev-lang/perl ) - ocaml? ( dev-lang/ocaml ) - lua? ( dev-lang/lua ) - php? ( dev-lang/php ) - python? ( dev-lang/python ) - ruby? ( dev-lang/ruby ) - X? ( x11-libs/libXaw x11-libs/libXpm ) - sys-devel/libtool" -DEPEND="${RDEPEND} - dev-util/pkgconfig - tcl? ( dev-lang/swig ) - tk? ( dev-lang/swig ) - guile? ( dev-lang/swig ) - java? ( dev-lang/swig ) - perl? ( dev-lang/swig ) - ocaml? ( >=dev-lang/swig-1.3.31 ) - lua? ( >=dev-lang/swig-1.3.31 ) - php? ( dev-lang/swig ) - python? ( dev-lang/swig ) - ruby? ( dev-lang/swig )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-notcl.patch - sed -i 's:LC_COLLATE=C:LC_ALL=C:g' lib/common/Makefile.* #134834 - - # Make sure SWIG interface is rebuilt - touch tclpkg/gv/gv.i - - # Hack around gd issues #165460 ... this is fixed properly in newer graphviz - echo '#include <entities.h>' | $(tc-getCPP) -P -dD > entities.h - sed -i '1istatic' entities.h - - eautoreconf -} - -src_compile() { - local my_conf - econf ${my_conf} \ - --disable-dependency-tracking \ - $(use_enable static) \ - $(use_with tcl) \ - $(use_with tk) \ - $(use_enable guile) \ - $(use_enable java) \ - $(use_enable lua) \ - $(use_enable ocaml) \ - $(use_enable perl) \ - $(use_enable php) \ - $(use_enable python) \ - $(use_enable ruby) \ - --disable-{sharp,io} \ - $(use_with X x) \ - || die "Configure Failed!" - emake || die "Compile Failed!" -} - -src_install() { - sed -i -e "s:htmldir:htmlinfodir:g" doc/info/Makefile - make DESTDIR="${D}" \ - txtdir=/usr/share/doc/${PF} \ - htmldir=/usr/share/doc/${PF}/html \ - htmlinfodir=/usr/share/doc/${PF}/html/info \ - pdfdir=/usr/share/doc/${PF}/pdf \ - pkgconfigdir=/usr/$(get_libdir)/pkgconfig \ - install || die "Install Failed!" - if use minimal ; then - rm -rf "${D}"/usr/share/doc/${PF}/{pdf,html} - rm -rf "${D}"/usr/$(get_libdir)/${PN}/{tcl,lua,perl,python,ruby} - fi - dodoc AUTHORS ChangeLog NEWS README -} - -pkg_postinst() { - dot -c -} |