diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-05-30 11:02:34 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-05-30 11:02:34 +0000 |
commit | 8fb0530570c42b4f5f705bb1defcdf17b0315f7a (patch) | |
tree | e2f2af6a8a28ee39ca1d601201d3740413e71874 /app-text/lcdf-typetools | |
parent | Add unzip to depends, thanks to Marek Miller <mlm@shells.pl> in bug #224149; ... (diff) | |
download | gentoo-2-8fb0530570c42b4f5f705bb1defcdf17b0315f7a.tar.gz gentoo-2-8fb0530570c42b4f5f705bb1defcdf17b0315f7a.tar.bz2 gentoo-2-8fb0530570c42b4f5f705bb1defcdf17b0315f7a.zip |
version bump
(Portage version: 2.1.5.2)
Diffstat (limited to 'app-text/lcdf-typetools')
-rw-r--r-- | app-text/lcdf-typetools/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/lcdf-typetools/lcdf-typetools-2.69.ebuild | 23 |
2 files changed, 30 insertions, 1 deletions
diff --git a/app-text/lcdf-typetools/ChangeLog b/app-text/lcdf-typetools/ChangeLog index 7d1d61325b82..8037647764f4 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.19 2008/05/12 20:33:14 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/lcdf-typetools/ChangeLog,v 1.20 2008/05/30 11:02:34 aballier Exp $ + +*lcdf-typetools-2.69 (30 May 2008) + + 30 May 2008; Alexis Ballier <aballier@gentoo.org> + +lcdf-typetools-2.69.ebuild: + version bump 12 May 2008; nixnut <nixnut@gentoo.org> lcdf-typetools-2.66.ebuild: Stable on ppc wrt bug 220651 diff --git a/app-text/lcdf-typetools/lcdf-typetools-2.69.ebuild b/app-text/lcdf-typetools/lcdf-typetools-2.69.ebuild new file mode 100644 index 000000000000..abdda82a5361 --- /dev/null +++ b/app-text/lcdf-typetools/lcdf-typetools-2.69.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2008 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.69.ebuild,v 1.1 2008/05/30 11:02:34 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 )" + +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 +} |