summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2004-10-17 01:59:48 +0000
committerMamoru Komachi <usata@gentoo.org>2004-10-17 01:59:48 +0000
commitdf5738b28672f7e78ea7a0cd9e7d0fcf2c2bcabd (patch)
tree139ae4dbb9f3cfb663436c749edc65f8fd1118ad /app-text/xdvik/xdvik-22.40y-r1.ebuild
parentVersion bump in the development series. Removed old development ebuilds. (diff)
downloadhistorical-df5738b28672f7e78ea7a0cd9e7d0fcf2c2bcabd.tar.gz
historical-df5738b28672f7e78ea7a0cd9e7d0fcf2c2bcabd.tar.bz2
historical-df5738b28672f7e78ea7a0cd9e7d0fcf2c2bcabd.zip
Added all arches from tetex-2.0.2-r3.
Diffstat (limited to 'app-text/xdvik/xdvik-22.40y-r1.ebuild')
-rw-r--r--app-text/xdvik/xdvik-22.40y-r1.ebuild71
1 files changed, 0 insertions, 71 deletions
diff --git a/app-text/xdvik/xdvik-22.40y-r1.ebuild b/app-text/xdvik/xdvik-22.40y-r1.ebuild
deleted file mode 100644
index b8112b08e220..000000000000
--- a/app-text/xdvik/xdvik-22.40y-r1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/xdvik/xdvik-22.40y-r1.ebuild,v 1.9 2004/06/24 22:56:29 agriffis Exp $
-
-inherit eutils
-
-IUSE="cjk libwww"
-
-XDVIK_JP="${P}-j1.17"
-
-DESCRIPTION="DVI previewer for X Window System"
-SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz
- cjk? ( mirror://gentoo/${XDVIK_JP}.patch.gz )"
-HOMEPAGE="http://sourceforge.net/projects/xdvi/"
-
-KEYWORDS="x86 alpha ppc sparc amd64"
-SLOT="0"
-LICENSE="GPL-2"
-
-DEPEND=">=media-libs/t1lib-1.3
- app-text/ptex
- !app-text/tetex
- virtual/x11
- cjk? ( media-fonts/kochi-substitute )
- libwww? ( >=net-libs/libwww-5.3.2-r1 )"
-
-src_unpack () {
-
- unpack ${P}.tar.gz
- if use cjk ; then
- epatch ${DISTDIR}/${XDVIK_JP}.patch.gz
- epatch ${FILESDIR}/${XDVIK_JP}-vfontcap-gentoo.diff
- fi
-}
-
-src_compile () {
-
- local myconf
-
- if use cjk ; then
- export CPPFLAGS="${CPPFLAGS} -I/usr/include/freetype2"
- myconf="${myconf} --with-vflib=vf2ft"
- fi
-
- econf --enable-xdvietcdir=/usr/share/texmf/xdvi \
- --disable-multiplatform \
- --with-system-t1lib \
- `use_with libwww system-wwwlib` \
- ${myconf} || die "econf failed"
-
- cd texk/xdvik
- make || die
-}
-
-src_install () {
-
- dodir /usr/share/texmf/xdvi
- dodir /usr/share/man/man1
-
- cd ${S}/texk/xdvik
- einstall texmf=${D}/usr/share/texmf \
- XDVIETCDIR=${D}/usr/share/texmf/xdvi \
- || die "install failed"
-
- dodoc ANNOUNCE BUGS FAQ README.*
- if use cjk; then
- dodoc CHANGES.xdvik-jp
- docinto READMEs
- dodoc READMEs/*
- fi
-}