diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2008-11-23 21:17:38 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2008-11-23 21:17:38 +0000 |
commit | 25c4d7092a4bf77ff1fab0d0a675432c9157dba7 (patch) | |
tree | 63bf3ef8a01f5549308d1d1d9db5c21078b388ec /media-libs/ftgl | |
parent | Fix parallel make when monodoc is installed. Monodoc is automagic, so drop do... (diff) | |
download | gentoo-2-25c4d7092a4bf77ff1fab0d0a675432c9157dba7.tar.gz gentoo-2-25c4d7092a4bf77ff1fab0d0a675432c9157dba7.tar.bz2 gentoo-2-25c4d7092a4bf77ff1fab0d0a675432c9157dba7.zip |
Version bump to 2.1.3_rc5. Bug #234831
(Portage version: 2.1.4.5)
Diffstat (limited to 'media-libs/ftgl')
-rw-r--r-- | media-libs/ftgl/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/ftgl/files/ftgl-2.1.3_rc5-gentoo.patch | 23 | ||||
-rw-r--r-- | media-libs/ftgl/ftgl-2.1.3_rc5.ebuild | 48 |
3 files changed, 78 insertions, 1 deletions
diff --git a/media-libs/ftgl/ChangeLog b/media-libs/ftgl/ChangeLog index 3c4ee96a804a..3206135be962 100644 --- a/media-libs/ftgl/ChangeLog +++ b/media-libs/ftgl/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/ftgl # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ftgl/ChangeLog,v 1.21 2008/03/30 22:58:20 ricmm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/ftgl/ChangeLog,v 1.22 2008/11/23 21:17:38 tupone Exp $ + +*ftgl-2.1.3_rc5 (23 Nov 2008) + + 23 Nov 2008; Tupone Alfredo <tupone@gentoo.org> + +files/ftgl-2.1.3_rc5-gentoo.patch, +ftgl-2.1.3_rc5.ebuild: + Version bump to 2.1.3_rc5. Bug #234831 by Tomáš Chvátal 30 Mar 2008; <ricmm@gentoo.org> ftgl-2.1.2-r1.ebuild: Drop to ~mips due to unstable deps diff --git a/media-libs/ftgl/files/ftgl-2.1.3_rc5-gentoo.patch b/media-libs/ftgl/files/ftgl-2.1.3_rc5-gentoo.patch new file mode 100644 index 000000000000..e938665bad8a --- /dev/null +++ b/media-libs/ftgl/files/ftgl-2.1.3_rc5-gentoo.patch @@ -0,0 +1,23 @@ +--- configure.ac.old 2008-11-21 14:41:15.000000000 +0100 ++++ configure.ac 2008-11-21 14:44:19.000000000 +0100 +@@ -64,19 +64,11 @@ + CFLAGS="${CFLAGS} -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs" + + # Build HTML documentatin? +-AC_PATH_PROG(DOXYGEN, doxygen, no) ++DOXYGEN="no" + AM_CONDITIONAL(HAVE_DOXYGEN, test "x$DOXYGEN" != "xno") + + # Build PDF documentation? +-AC_PATH_PROG(LATEX, pdflatex, no) +-AC_PATH_PROG(KPSEWHICH, kpsewhich, no) +-AC_PATH_PROG(DVIPS, dvips, no) +-AC_PATH_PROG(CONVERT, convert, no) +-AC_PATH_PROG(EPSTOPDF, epstopdf, no) +-if test "${DVIPS}" = "no" -o "${KPSEWHICH}" = "no" -o "${EPSTOPDF}" = "no" \ +- -o "${CONVERT}" = "no"; then + LATEX="no" +-fi + if test "x${LATEX}" != "xno"; then + AC_MSG_CHECKING(for a4.sty and a4wide.sty) + if "${KPSEWHICH}" a4.sty >/dev/null 2>&1; then diff --git a/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild b/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild new file mode 100644 index 000000000000..e60c20b0a15b --- /dev/null +++ b/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild,v 1.1 2008/11/23 21:17:38 tupone Exp $ + +WANT_AUTOMAKE=latest +WANT_AUTOCONF=latest +inherit eutils flag-o-matic autotools + +MY_PV=${PV/_/-} +MY_PV2=${PV/_/\~} +MY_P=${PN}-${MY_PV} +MY_P2=${PN}-${MY_PV2} + +DESCRIPTION="library to use arbitrary fonts in OpenGL applications" +HOMEPAGE="http://ftgl.wiki.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +DEPEND=">=media-libs/freetype-2.0.9 + virtual/opengl + virtual/glu + virtual/glut" + +S="${WORKDIR}"/${MY_P2} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-gentoo.patch + AT_M4DIR=m4 eautoreconf +} + +src_compile() { + strip-flags # ftgl is sensitive - bug #112820 + econf + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + rm -rf "${D}"/usr/share/doc/ftgl + dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README TODO \ + docs/projects_using_ftgl.txt +} |