From 6bb2843afd8a0e6813749372e9aa5cebb6da4c5a Mon Sep 17 00:00:00 2001 From: Sam James Date: Sat, 29 Oct 2022 13:01:43 +0100 Subject: media-libs/ftgl: EAPI 8 Signed-off-by: Sam James --- media-libs/ftgl/ftgl-2.1.3_rc5-r1.ebuild | 58 ++++++++++++++++++++++++++++++++ media-libs/ftgl/ftgl-2.1.3_rc5.ebuild | 53 ----------------------------- 2 files changed, 58 insertions(+), 53 deletions(-) create mode 100644 media-libs/ftgl/ftgl-2.1.3_rc5-r1.ebuild delete mode 100644 media-libs/ftgl/ftgl-2.1.3_rc5.ebuild (limited to 'media-libs/ftgl') diff --git a/media-libs/ftgl/ftgl-2.1.3_rc5-r1.ebuild b/media-libs/ftgl/ftgl-2.1.3_rc5-r1.ebuild new file mode 100644 index 000000000000..7421ddac0cc2 --- /dev/null +++ b/media-libs/ftgl/ftgl-2.1.3_rc5-r1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools flag-o-matic + +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="https://sourceforge.net/projects/ftgl/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" +S="${WORKDIR}/${MY_P2}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" +IUSE="static-libs" + +DEPEND=" + media-libs/freeglut + >=media-libs/freetype-2.0.9 + virtual/opengl + virtual/glu +" +RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${P}-gentoo.patch + "${FILESDIR}"/${P}-underlink.patch + "${FILESDIR}"/${P}-freetype_pkgconfig.patch + "${FILESDIR}"/${P}-clang.patch +) + +src_prepare() { + default + + sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die + eautoreconf +} + +src_configure() { + strip-flags # ftgl is sensitive - bug #112820 + econf $(use_enable static-libs static) +} + +src_install() { + local DOCS=( AUTHORS BUGS ChangeLog NEWS README TODO docs/projects_using_ftgl.txt) + + default + + rm -r "${ED}"/usr/share/doc/ftgl || die + find "${ED}" -name '*.la' -delete || die +} diff --git a/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild b/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild deleted file mode 100644 index 22107b5dd36a..000000000000 --- a/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit autotools flag-o-matic - -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="https://sourceforge.net/projects/ftgl/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="static-libs" - -DEPEND=">=media-libs/freetype-2.0.9 - virtual/opengl - virtual/glu - media-libs/freeglut" -RDEPEND="${DEPEND} - virtual/pkgconfig" - -S="${WORKDIR}/${MY_P2}" - -PATCHES=( - "${FILESDIR}"/${P}-gentoo.patch - "${FILESDIR}"/${P}-underlink.patch - "${FILESDIR}"/${P}-freetype_pkgconfig.patch - "${FILESDIR}"/${P}-clang.patch -) - -src_prepare() { - default - sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die - eautoreconf -} - -src_configure() { - strip-flags # ftgl is sensitive - bug #112820 - econf $(use_enable static-libs static) -} - -src_install() { - local DOCS=( AUTHORS BUGS ChangeLog NEWS README TODO docs/projects_using_ftgl.txt) - default - rm -r "${ED%/}"/usr/share/doc/ftgl || die - find "${ED}" -name '*.la' -delete || die -} -- cgit v1.2.3-65-gdbad