summaryrefslogtreecommitdiff
path: root/dev-tex/metapost/metapost-1.780.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev-tex/metapost/metapost-1.780.ebuild')
-rw-r--r--dev-tex/metapost/metapost-1.780.ebuild73
1 files changed, 0 insertions, 73 deletions
diff --git a/dev-tex/metapost/metapost-1.780.ebuild b/dev-tex/metapost/metapost-1.780.ebuild
deleted file mode 100644
index ecc731318185..000000000000
--- a/dev-tex/metapost/metapost-1.780.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# 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
-}