diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-02-27 13:43:03 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-02-27 13:43:03 +0000 |
commit | 6ffc6db040753cf3376e4db70f5b3764e6855a70 (patch) | |
tree | 7119867d68172a0739086695310c794101cfcad0 /app-text/lcdf-typetools | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-6ffc6db040753cf3376e4db70f5b3764e6855a70.tar.gz gentoo-2-6ffc6db040753cf3376e4db70f5b3764e6855a70.tar.bz2 gentoo-2-6ffc6db040753cf3376e4db70f5b3764e6855a70.zip |
version bump
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'app-text/lcdf-typetools')
-rw-r--r-- | app-text/lcdf-typetools/ChangeLog | 10 | ||||
-rw-r--r-- | app-text/lcdf-typetools/lcdf-typetools-2.75.ebuild | 24 |
2 files changed, 32 insertions, 2 deletions
diff --git a/app-text/lcdf-typetools/ChangeLog b/app-text/lcdf-typetools/ChangeLog index 199bb9f6799b..35b08de9251b 100644 --- a/app-text/lcdf-typetools/ChangeLog +++ b/app-text/lcdf-typetools/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-text/lcdf-typetools -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/lcdf-typetools/ChangeLog,v 1.30 2008/12/23 14:18:39 aballier Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/lcdf-typetools/ChangeLog,v 1.31 2009/02/27 13:43:03 aballier Exp $ + +*lcdf-typetools-2.75 (27 Feb 2009) + + 27 Feb 2009; Alexis Ballier <aballier@gentoo.org> + +lcdf-typetools-2.75.ebuild: + version bump 23 Dec 2008; Alexis Ballier <aballier@gentoo.org> -lcdf-typetools-2.66.ebuild, -lcdf-typetools-2.71.ebuild: diff --git a/app-text/lcdf-typetools/lcdf-typetools-2.75.ebuild b/app-text/lcdf-typetools/lcdf-typetools-2.75.ebuild new file mode 100644 index 000000000000..28fe00d07fa0 --- /dev/null +++ b/app-text/lcdf-typetools/lcdf-typetools-2.75.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/lcdf-typetools/lcdf-typetools-2.75.ebuild,v 1.1 2009/02/27 13:43:03 aballier Exp $ + +DESCRIPTION="Font utilities for eg manipulating OTF" +SRC_URI="http://www.lcdf.org/type/${P}.tar.gz" +HOMEPAGE="http://www.lcdf.org/type/#typetools" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +SLOT="0" +LICENSE="GPL-2" +IUSE="kpathsea" + +DEPEND="kpathsea? ( virtual/tex-base )" +RDEPEND="${DEPEND}" + +src_compile() { + econf $(use_with kpathsea) || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc NEWS README ONEWS +} |