summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2008-01-10 15:57:25 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2008-01-10 15:57:25 +0000
commit647e94bb4dc31f5d152ccd4653995bb1ae0a1a82 (patch)
tree0677e26a8dbb4b0c38acb5201ae21683d78ff0e6 /dev-libs/libotf
parentfix #205170 (diff)
downloadgentoo-2-647e94bb4dc31f5d152ccd4653995bb1ae0a1a82.tar.gz
gentoo-2-647e94bb4dc31f5d152ccd4653995bb1ae0a1a82.tar.bz2
gentoo-2-647e94bb4dc31f5d152ccd4653995bb1ae0a1a82.zip
Version bumped, bug #205138.
(Portage version: 2.1.3.19)
Diffstat (limited to 'dev-libs/libotf')
-rw-r--r--dev-libs/libotf/ChangeLog9
-rw-r--r--dev-libs/libotf/files/digest-libotf-0.9.73
-rw-r--r--dev-libs/libotf/libotf-0.9.7.ebuild50
3 files changed, 60 insertions, 2 deletions
diff --git a/dev-libs/libotf/ChangeLog b/dev-libs/libotf/ChangeLog
index cdbbfadc1f38..61edf66f93c6 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.26 2007/08/18 04:20:22 matsuu Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/ChangeLog,v 1.27 2008/01/10 15:57:25 matsuu Exp $
+
+*libotf-0.9.7 (10 Jan 2008)
+
+ 10 Jan 2008; MATSUU Takuto <matsuu@gentoo.org> +libotf-0.9.7.ebuild:
+ Version bumped, bug #205138.
*libotf-0.9.6 (18 Aug 2007)
diff --git a/dev-libs/libotf/files/digest-libotf-0.9.7 b/dev-libs/libotf/files/digest-libotf-0.9.7
new file mode 100644
index 000000000000..34234bea1585
--- /dev/null
+++ b/dev-libs/libotf/files/digest-libotf-0.9.7
@@ -0,0 +1,3 @@
+MD5 017dc38925ffe33cc76d6d29c7757d36 libotf-0.9.7.tar.gz 382250
+RMD160 f84aec315645b445808b45b29630e18b25edd097 libotf-0.9.7.tar.gz 382250
+SHA256 35769d53c1ca1dac003afb7b6ea6e044457e9c0899f5e81220f48dd68d67877f libotf-0.9.7.tar.gz 382250
diff --git a/dev-libs/libotf/libotf-0.9.7.ebuild b/dev-libs/libotf/libotf-0.9.7.ebuild
new file mode 100644
index 000000000000..da3716d673aa
--- /dev/null
+++ b/dev-libs/libotf/libotf-0.9.7.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/libotf-0.9.7.ebuild,v 1.1 2008/01/10 15:57:25 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
+}