summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2007-08-18 04:20:22 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2007-08-18 04:20:22 +0000
commit00e9b09d5bf836b47713f2815afc47fc5bb61601 (patch)
treef9cc4e9709aa222cb023ea835793e64c22ad1076 /dev-libs/libotf
parentcorrected ChangeLog entry (diff)
downloadgentoo-2-00e9b09d5bf836b47713f2815afc47fc5bb61601.tar.gz
gentoo-2-00e9b09d5bf836b47713f2815afc47fc5bb61601.tar.bz2
gentoo-2-00e9b09d5bf836b47713f2815afc47fc5bb61601.zip
Version bumped, bug #189065.
(Portage version: 2.1.2.11)
Diffstat (limited to 'dev-libs/libotf')
-rw-r--r--dev-libs/libotf/ChangeLog7
-rw-r--r--dev-libs/libotf/files/digest-libotf-0.9.63
-rw-r--r--dev-libs/libotf/libotf-0.9.6.ebuild50
3 files changed, 59 insertions, 1 deletions
diff --git a/dev-libs/libotf/ChangeLog b/dev-libs/libotf/ChangeLog
index b1a67012bf41..cdbbfadc1f38 100644
--- a/dev-libs/libotf/ChangeLog
+++ b/dev-libs/libotf/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/libotf
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/ChangeLog,v 1.25 2007/07/22 08:28:47 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/ChangeLog,v 1.26 2007/08/18 04:20:22 matsuu Exp $
+
+*libotf-0.9.6 (18 Aug 2007)
+
+ 18 Aug 2007; MATSUU Takuto <matsuu@gentoo.org> +libotf-0.9.6.ebuild:
+ Version bumped, bug #189065.
22 Jul 2007; Hans de Graaff <graaff@gentoo.org> libotf-0.9.4.ebuild:
Drop virtual/x11 references.
diff --git a/dev-libs/libotf/files/digest-libotf-0.9.6 b/dev-libs/libotf/files/digest-libotf-0.9.6
new file mode 100644
index 000000000000..c48ec3181c97
--- /dev/null
+++ b/dev-libs/libotf/files/digest-libotf-0.9.6
@@ -0,0 +1,3 @@
+MD5 e0c9c86244e9915360516e223681dbb4 libotf-0.9.6.tar.gz 382026
+RMD160 3970e55bbf8807a3dc82e4eae32081ccd604bcbb libotf-0.9.6.tar.gz 382026
+SHA256 a6a93543ef8162d093a9dedcb12975d3e2c9fe0d13243617fc1366febdf863d7 libotf-0.9.6.tar.gz 382026
diff --git a/dev-libs/libotf/libotf-0.9.6.ebuild b/dev-libs/libotf/libotf-0.9.6.ebuild
new file mode 100644
index 000000000000..f4c2b3a58816
--- /dev/null
+++ b/dev-libs/libotf/libotf-0.9.6.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/libotf-0.9.6.ebuild,v 1.1 2007/08/18 04:20:22 matsuu Exp $
+
+WANT_AUTOMAKE=latest
+WANT_AUTOCONF=latest
+
+inherit autotools
+
+DESCRIPTION="Library for handling OpenType fonts (OTF)"
+HOMEPAGE="http://www.m17n.org/libotf/"
+SRC_URI="http://www.m17n.org/libotf/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="X"
+
+RDEPEND=">=media-libs/freetype-2.1
+ X? (
+ x11-libs/libXaw
+ x11-libs/libICE
+ )"
+
+DEPEND="${RDEPEND}
+ >=sys-apps/sed-4
+ dev-util/pkgconfig"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ use X || sed -i -e '/^bin_PROGRAMS/s/otfview//' example/Makefile.am || die
+ eautoremake
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+
+ dodoc AUTHORS NEWS README ChangeLog
+}
+
+pkg_postinst() {
+ if has_version '<dev-libs/libotf-0.9.3' ; then
+ ewarn
+ ewarn "Shared library extension has been changed. You may need to recompile"
+ ewarn "everything depending on this library (in short, please remerge m17n-lib"
+ ewarn " if you are upgrading)."
+ ewarn
+ fi
+}