| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/app-text/lcdf-typetools/lcdf-typetools-2.92.ebuild,v 1.9 2012/07/08 16:03:16 armin76 Exp $
|
| 4 |
|
| 5 |
EAPI=2
|
| 6 |
|
| 7 |
DESCRIPTION="Font utilities for eg manipulating OTF"
|
| 8 |
SRC_URI="http://www.lcdf.org/type/${P}.tar.gz"
|
| 9 |
HOMEPAGE="http://www.lcdf.org/type/#typetools"
|
| 10 |
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
|
| 11 |
SLOT="0"
|
| 12 |
LICENSE="GPL-2"
|
| 13 |
IUSE="+kpathsea"
|
| 14 |
|
| 15 |
DEPEND="kpathsea? ( virtual/tex-base )"
|
| 16 |
RDEPEND="${DEPEND}"
|
| 17 |
|
| 18 |
src_configure() {
|
| 19 |
econf $(use_with kpathsea)
|
| 20 |
}
|
| 21 |
|
| 22 |
src_install() {
|
| 23 |
emake DESTDIR="${D}" install || die "emake install failed"
|
| 24 |
dodoc NEWS README ONEWS
|
| 25 |
}
|