diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-06-16 02:18:02 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-06-16 02:18:02 +0000 |
commit | 0192741ece510e1072564fc3ec2d174d34ac4969 (patch) | |
tree | 8cb3f6b1b036e9fe1ffb37e173d81f602bcf10a2 /x11-libs | |
parent | new version that is libtoolized with elibtoolize, and that uses debug.eclass (diff) | |
download | gentoo-2-0192741ece510e1072564fc3ec2d174d34ac4969.tar.gz gentoo-2-0192741ece510e1072564fc3ec2d174d34ac4969.tar.bz2 gentoo-2-0192741ece510e1072564fc3ec2d174d34ac4969.zip |
new version with libtool.eclass and debug.eclass use
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/pango/ChangeLog | 8 | ||||
-rw-r--r-- | x11-libs/pango/files/digest-pango-1.0.3 | 1 | ||||
-rw-r--r-- | x11-libs/pango/pango-1.0.3.ebuild | 58 |
3 files changed, 66 insertions, 1 deletions
diff --git a/x11-libs/pango/ChangeLog b/x11-libs/pango/ChangeLog index 01ea263547f7..de56cee629fe 100644 --- a/x11-libs/pango/ChangeLog +++ b/x11-libs/pango/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-libs/pango # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.6 2002/05/28 08:52:12 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.7 2002/06/16 02:18:02 spider Exp $ + +*pango-1.0.3 (15 Jun 2002) + 15 Jun 2002; Spider <spider@gentoo.org>; pango-1.0.3.ebuild : + elibtoolize with libtool.eclass + move debug to eclass + new version *pango-1.0.2 (28 May 2002) 28 May 2002; Spider <spider@gentoo.org>; pango-1.0.2.ebuild : diff --git a/x11-libs/pango/files/digest-pango-1.0.3 b/x11-libs/pango/files/digest-pango-1.0.3 new file mode 100644 index 000000000000..37bdaa2586a0 --- /dev/null +++ b/x11-libs/pango/files/digest-pango-1.0.3 @@ -0,0 +1 @@ +MD5 5bb1904c4a7837ec5b8007501646302d pango-1.0.3.tar.bz2 763585 diff --git a/x11-libs/pango/pango-1.0.3.ebuild b/x11-libs/pango/pango-1.0.3.ebuild new file mode 100644 index 000000000000..cccc38ccb7ba --- /dev/null +++ b/x11-libs/pango/pango-1.0.3.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author: Spider <spider@gentoo.org> +# Maintainer: Spider <spider@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.0.3.ebuild,v 1.1 2002/06/16 02:18:02 spider Exp $ + + +inherit debug +inherit libtool + +SLOT="1" + +S=${WORKDIR}/${P} +DESCRIPTION="Text rendering and Layout library" +SRC_URI="ftp://ftp.gtk.org/pub/gtk/v2.0/${P}.tar.bz2" +HOMEPAGE="http://www.pango.org/" +LICENSE="LGPL-2.1" + +RDEPEND="virtual/x11 + >=dev-libs/glib-2.0.3 + >=media-libs/freetype-2.0.9" + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.12.0 + doc? ( >=dev-util/gtk-doc-0.9-r2 )" + + +src_compile() { + elibtoolize + local myconf + use doc && myconf="--enable-gtk-doc" || myconf="--disable-gtk-doc" + ./configure --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + ${myconf} \ + --enable-debug || die +# turn on debug again, glib dislikes not having it. + emake || make || die "paralell make and serial make failed" +} + +src_install() { + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + infodir=${D}/usr/share/info \ + mandir=${D}/usr/share/man \ + install || die + rm ${D}/etc/pango/pango.modules + + + dodoc AUTHORS ChangeLog COPYING README* INSTALL NEWS NEWS.pre-1-3 TODO* +} + +pkg_postinst() { + pango-querymodules >/etc/pango/pango.modules +} + |