diff options
author | 2010-01-08 17:44:02 +0000 | |
---|---|---|
committer | 2010-01-08 17:44:02 +0000 | |
commit | 35800bf873c1c258201933304c65f8c5e98fc5cd (patch) | |
tree | b82daefebcacbe06e1d3b8c52f5ae230463cdaf5 /app-text/dvipdfmx/dvipdfmx-20090708-r1.ebuild | |
parent | old (diff) | |
download | gentoo-2-35800bf873c1c258201933304c65f8c5e98fc5cd.tar.gz gentoo-2-35800bf873c1c258201933304c65f8c5e98fc5cd.tar.bz2 gentoo-2-35800bf873c1c258201933304c65f8c5e98fc5cd.zip |
Revision bump to fix bug #295235.
(Portage version: 2.2_rc61/cvs/Linux x86_64, RepoMan options: --force)
Diffstat (limited to 'app-text/dvipdfmx/dvipdfmx-20090708-r1.ebuild')
-rw-r--r-- | app-text/dvipdfmx/dvipdfmx-20090708-r1.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/app-text/dvipdfmx/dvipdfmx-20090708-r1.ebuild b/app-text/dvipdfmx/dvipdfmx-20090708-r1.ebuild new file mode 100644 index 000000000000..7ff17961167a --- /dev/null +++ b/app-text/dvipdfmx/dvipdfmx-20090708-r1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/dvipdfmx/dvipdfmx-20090708-r1.ebuild,v 1.1 2010/01/08 17:44:02 scarabeus Exp $ + +EAPI="2" + +inherit eutils base autotools + +DESCRIPTION="DVI to PDF translator with multi-byte character support" +HOMEPAGE="http://project.ktug.or.kr/dvipdfmx/" +SRC_URI="http://project.ktug.or.kr/${PN}/snapshot/latest/${P}.tar.gz" +IUSE="" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ppc64 ~sparc ~x86" + +DEPEND=" + app-text/libpaper + media-libs/libpng + sys-libs/zlib + virtual/tex-base + app-text/libpaper +" +RDEPEND="${DEPEND} + virtual/poppler + app-text/poppler-data +" + +PATCHES=( + "${FILESDIR}/${PV}-fix_file_collisions.patch" +) + +src_prepare() { + base_src_prepare + eautoreconf +} + +src_install() { + # Override dvipdfmx.cfg default installation location so that it is easy to + # modify it and it gets config protected. Symlink it from the old location. + emake configdatadir="/etc/texmf/dvipdfm" DESTDIR="${D}" install || die "make install failed" + dosym /etc/texmf/dvipdfm/dvipdfmx.cfg /usr/share/texmf/dvipdfm/dvipdfmx.cfg || die + + # Symlink poppler-data cMap, bug #201258 + dosym /usr/share/poppler/cMap /usr/share/texmf/fonts/cmap/cMap || die + dodoc AUTHORS ChangeLog README || die + +# Remove symlink conflicting with app-text/dvipdfm (bug #295235) + rm "${D}"/usr/bin/ebb +} + +pkg_postinst() { + [[ ${ROOT} == / ]] && /usr/sbin/texmf-update +} + +pkg_postrm() { + [[ ${ROOT} == / ]] && /usr/sbin/texmf-update +} |