forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metapost-1.780.ebuild
73 lines (63 loc) · 1.5 KB
/
metapost-1.780.ebuild
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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
DESCRIPTION="System for producing graphics"
HOMEPAGE="http://tug.org/metapost.html"
SRC_URI="http://foundry.supelec.fr/gf/download/frsrelease/395/1879/${P}-src.tar.bz2"
LICENSE="GPL-2 LGPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="dev-libs/kpathsea
>=app-eselect/eselect-mpost-0.3
x11-libs/cairo
x11-libs/pixman
media-libs/libpng"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S=${WORKDIR}/${P}/source/texk/web2c
src_configure() {
econf \
--disable-all-pkgs \
--enable-shared \
--disable-largefile \
--disable-ptex \
--enable-mp \
--with-system-cairo \
--with-system-libpng \
--without-ptexenc \
--with-system-kpathsea \
--with-system-xpdf \
--with-system-freetype \
--with-system-freetype2 \
--with-system-gd \
--with-system-teckit \
--with-system-t1lib \
--with-system-icu \
--with-system-graphite \
--with-system-zziplib \
--with-system-poppler \
--with-system-zlib \
--with-system-pixman \
--disable-native-texlive-build \
--without-mf-x-toolkit --without-x
}
src_compile() {
emake mpost
}
src_install() {
emake DESTDIR="${D}" \
SUBDIRS="" \
bin_PROGRAMS="mpost" \
nodist_man_MANS="" \
dist_man_MANS="" \
install-binPROGRAMS
# Rename it
mv "${D}/usr/bin/mpost" "${D}/usr/bin/mpost-${P}" || die "renaming failed"
cd "${WORKDIR}/${P}"
dodoc README CHANGES
}
pkg_postinst(){
einfo "Calling eselect mpost update"
eselect mpost update
}