summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-text/dvipdfmx/dvipdfmx-20031116.ebuild')
-rw-r--r--app-text/dvipdfmx/dvipdfmx-20031116.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/app-text/dvipdfmx/dvipdfmx-20031116.ebuild b/app-text/dvipdfmx/dvipdfmx-20031116.ebuild
deleted file mode 100644
index 1bc8a18e6165..000000000000
--- a/app-text/dvipdfmx/dvipdfmx-20031116.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/dvipdfmx/dvipdfmx-20031116.ebuild,v 1.8 2005/01/01 16:12:34 eradicator Exp $
-
-inherit eutils
-
-IUSE=""
-
-DESCRIPTION="DVI to PDF translator with multi-byte character support"
-HOMEPAGE="http://project.ktug.or.kr/dvipdfmx/"
-SRC_URI="http://project.ktug.or.kr/dvipdfmx/snapshot/release/${P}.tar.gz
- http://project.ktug.or.kr/dvipdfmx/snapshot/patch/${P}.patch"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 alpha sparc"
-
-RDEPEND="virtual/tetex
- >=media-libs/libpng-1.2.1
- >=sys-libs/zlib-1.1.4
- >=dev-libs/openssl-0.9.6i"
-DEPEND="${RDEPEND}
- >=sys-apps/sed-4"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${PN}-config-gentoo.diff
- cd src
- epatch ${DISTDIR}/${P}.patch
-}
-
-src_install() {
- einstall || die
- dodoc BUGS ChangeLog FONTMAP INSTALL README TODO
-}
-
-pkg_postinst() {
- if [ ! `grep -q CMAPINPUTS ${ROOT}/usr/share/texmf/web2c/texmf.cnf` ]; then
- cat >>${ROOT}/usr/share/texmf/web2c/texmf.cnf<<-EOF
- % automatically added by ${PF}.ebuild -- do not edit by hand!
- CMAPINPUTS = .;/opt/Acrobat5/Resource/Font//;/usr/share/xpdf//
- % done
- EOF
- fi
- mktexlsr
-}
-
-pkg_postrm() {
- if [ -e ${ROOT}/usr/share/texmf/web2c/texmf.cnf ] ; then
- sed -i -e "/${PF}\.ebuild/,+2d" \
- ${ROOT}/usr/share/texmf/web2c/texmf.cnf
- fi
- mktexlsr
-}