summaryrefslogtreecommitdiff
blob: 185c42cff9eb4417705c2fb0bd03365ebb974c7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/pdftex/pdftex-1.40.10.ebuild,v 1.7 2010/02/10 22:06:54 ssuominen Exp $

EAPI=2
inherit libtool toolchain-funcs eutils multilib

DESCRIPTION="Standalone (patched to use poppler) version of pdftex"
HOMEPAGE="http://www.pdftex.org/"
SLOT="0"
LICENSE="GPL-2"

SRC_URI="http://sarovar.org/frs/download.php/1292/${P}.tar.bz2"

KEYWORDS="alpha ~amd64 arm ~hppa ia64 ~ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE=""

RDEPEND=">=app-text/poppler-0.12.3-r3[xpdf-headers]
	media-libs/libpng
	sys-libs/zlib
	virtual/tex-base
	app-admin/eselect-pdftex"
DEPEND="${RDEPEND}
	dev-util/pkgconfig"

S=${WORKDIR}/${P}/src

src_unpack() {
	epatch "${FILESDIR}/${P}-poppler.patch"
	elibtoolize
}

src_configure() {
	# Too many regexps use A-Z a-z constructs, what causes problems with locales
	# that don't have the same alphabetical order than ascii. Bug #293199
	# So we set LC_ALL to C in order to avoid problems.
	export LC_ALL=C

	local myconf
	myconf=""
	has_version '>=app-text/texlive-core-2009' && myconf="--with-system-kpathsea"

	econf \
		--disable-cxx-runtime-hack	\
		--disable-afm2pl			\
		--disable-aleph				\
		--disable-bibtex			\
		--disable-bibtex8			\
		--disable-cfftot1			\
		--disable-cjkutils			\
		--disable-devnag			\
		--disable-detex				\
		--disable-dialog			\
		--disable-dtl				\
		--disable-dvi2tty			\
		--disable-dvidvi			\
		--disable-dviljk			\
		--disable-dvipdfm			\
		--disable-dvipdfmx			\
		--disable-dvipng			\
		--disable-dvipos			\
		--disable-dvipsk			\
		--disable-gsftopk			\
		--disable-lacheck			\
		--disable-lcdf-typetools	\
		--disable-luatex			\
		--disable-makeindexk		\
		--disable-mf				\
		--disable-mmafm				\
		--disable-mmpfb				\
		--disable-mp				\
		--disable-musixflx			\
		--disable-one				\
		--disable-otfinfo			\
		--disable-otftotfm			\
		--disable-pdfopen			\
		--disable-ps2eps			\
		--disable-ps2pkm			\
		--disable-psutils			\
		--disable-seetexk			\
		--disable-t1dotlessj		\
		--disable-t1lint			\
		--disable-t1rawafm			\
		--disable-t1reencode		\
		--disable-t1testpage		\
		--disable-t1utils			\
		--disable-tex				\
		--disable-tex4htk			\
		--disable-tpic2pdftex		\
		--disable-ttf2pk			\
		--disable-ttfdump			\
		--disable-ttftotype42		\
		--disable-vlna				\
		--disable-web-progs			\
		--disable-xetex				\
		--disable-xdv2pdf			\
		--disable-xdvik				\
		--disable-xdvipdfmx			\
		--disable-native-texlive-build \
		--disable-tetex				\
		--disable-texlive			\
		--without-mf-x-toolkit		\
		--without-x					\
		--disable-shared			\
		--disable-largefile			\
		--with-system-xpdf			\
		--with-system-zlib			\
		--with-system-pnglib		\
		--disable-multiplatform		\
		${myconf}
}

src_compile() {
	emake SHELL=/bin/sh || die
}

src_install() {
	cd "${S}/texk/web2c"
	emake DESTDIR="${D}" \
		SUBDIRS="" \
		bin_PROGRAMS="pdftex" \
		nodist_man_MANS="" \
		dist_man_MANS="" \
		install || die
	# Rename it
	mv "${D}/usr/bin/pdftex" "${D}/usr/bin/pdftex-${P}" || die "renaming failed"
}

pkg_postinst(){
	einfo "Calling eselect pdftex update"
	eselect pdftex update
}