diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-text/mftrace | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-text/mftrace')
-rw-r--r-- | app-text/mftrace/Manifest | 1 | ||||
-rw-r--r-- | app-text/mftrace/metadata.xml | 6 | ||||
-rw-r--r-- | app-text/mftrace/mftrace-1.2.18.ebuild | 53 |
3 files changed, 60 insertions, 0 deletions
diff --git a/app-text/mftrace/Manifest b/app-text/mftrace/Manifest new file mode 100644 index 000000000000..8baebf43d2c6 --- /dev/null +++ b/app-text/mftrace/Manifest @@ -0,0 +1 @@ +DIST mftrace-1.2.18.tar.gz 79112 SHA256 0d31065f1d35919e311d9170bbfcdacc58736e3f783311411ed1277aa09d3261 SHA512 db26a643a92cfcbb150c5f80af65b1ce6030a266023b4433ea760c3601092c42602617f52a49ce467cd3a4804aa6779e72ee38dc557dc03e1e1c86a36dbd54db WHIRLPOOL 32db904ab2962046052416ecab143b3bcc3480ac4baa99d1c68dfb0da8907722f69ab3de68d8e62fb9959094e0b08b764a1e2aca3945737238877f4b0372526d diff --git a/app-text/mftrace/metadata.xml b/app-text/mftrace/metadata.xml new file mode 100644 index 000000000000..f967eaf5ae9c --- /dev/null +++ b/app-text/mftrace/metadata.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>fonts</herd> +<herd>tex</herd> +</pkgmetadata> diff --git a/app-text/mftrace/mftrace-1.2.18.ebuild b/app-text/mftrace/mftrace-1.2.18.ebuild new file mode 100644 index 000000000000..d41aa2d5f531 --- /dev/null +++ b/app-text/mftrace/mftrace-1.2.18.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" +PYTHON_DEPEND="2" + +inherit python toolchain-funcs + +DESCRIPTION="Traces TeX fonts to PFA or PFB fonts (formerly pktrace)" +HOMEPAGE="http://lilypond.org/mftrace/" +SRC_URI="http://lilypond.org/download/sources/mftrace/${P}.tar.gz" +LICENSE="GPL-2" +KEYWORDS="amd64 ~hppa ppc x86 ~x86-fbsd" +# SLOT 1 was used in pktrace ebuild +SLOT="1" +IUSE="test truetype" + +RDEPEND=">=app-text/t1utils-1.25 + || ( media-gfx/potrace >=media-gfx/autotrace-0.30 ) + truetype? ( media-gfx/fontforge ) + virtual/latex-base" +DEPEND="${RDEPEND} + test? ( media-gfx/fontforge )" + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_configure() { + tc-export CC + econf \ + --datadir="$(python_get_sitedir)" \ + PYTHON="$(PYTHON)" +} + +src_compile() { + emake CFLAGS="-Wall ${CFLAGS}" +} + +src_install () { + emake DESTDIR="${D}" PYC_MODULES="" install + dodoc README.txt ChangeLog +} + +pkg_postinst() { + python_mod_optimize mftrace +} + +pkg_postrm() { + python_mod_cleanup mftrace +} |