diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2007-12-27 06:52:37 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2007-12-27 06:52:37 +0000 |
commit | a43dac2cff0ebc95aa0b3f82cbb7c39217d04f7f (patch) | |
tree | 957705d82c7edbf485cd484cf512350d32d42f19 /media-libs/ftgl | |
parent | whitespace (diff) | |
download | gentoo-2-a43dac2cff0ebc95aa0b3f82cbb7c39217d04f7f.tar.gz gentoo-2-a43dac2cff0ebc95aa0b3f82cbb7c39217d04f7f.tar.bz2 gentoo-2-a43dac2cff0ebc95aa0b3f82cbb7c39217d04f7f.zip |
license should have been LGPL-2 (bug #174440)
(Portage version: 2.1.3.19)
Diffstat (limited to 'media-libs/ftgl')
-rw-r--r-- | media-libs/ftgl/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/ftgl/ftgl-2.1.2-r1.ebuild | 11 |
2 files changed, 9 insertions, 7 deletions
diff --git a/media-libs/ftgl/ChangeLog b/media-libs/ftgl/ChangeLog index 8a31b0c06115..27b46e147277 100644 --- a/media-libs/ftgl/ChangeLog +++ b/media-libs/ftgl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/ftgl # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ftgl/ChangeLog,v 1.18 2007/12/25 14:52:55 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/ftgl/ChangeLog,v 1.19 2007/12/27 06:52:37 mr_bones_ Exp $ + + 27 Dec 2007; Michael Sterrett <mr_bones_@gentoo.org> ftgl-2.1.2-r1.ebuild: + license should have been LGPL-2 (bug #174440) 25 Dec 2007; Christian Heim <phreak@gentoo.org> metadata.xml: Removing seemant from metadata.xml as per #202469. diff --git a/media-libs/ftgl/ftgl-2.1.2-r1.ebuild b/media-libs/ftgl/ftgl-2.1.2-r1.ebuild index 5c966bbe6521..d9c0f9f8af02 100644 --- a/media-libs/ftgl/ftgl-2.1.2-r1.ebuild +++ b/media-libs/ftgl/ftgl-2.1.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ftgl/ftgl-2.1.2-r1.ebuild,v 1.15 2007/10/23 23:57:31 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/ftgl/ftgl-2.1.2-r1.ebuild,v 1.16 2007/12/27 06:52:37 mr_bones_ Exp $ WANT_AUTOMAKE=latest WANT_AUTOCONF=latest @@ -10,7 +10,7 @@ DESCRIPTION="library to use arbitrary fonts in OpenGL applications" HOMEPAGE="http://homepages.paradise.net.nz/henryj/code/#FTGL" SRC_URI="http://opengl.geek.nz/ftgl/${P}.tar.gz" -LICENSE="GPL-2" +LICENSE="LGPL-2" SLOT="0" KEYWORDS="alpha amd64 hppa mips ppc ppc64 sparc x86 ~x86-fbsd" IUSE="" @@ -35,13 +35,13 @@ src_unpack() { ln -fs ../../docs/html "${S}/docs" fi sed -i \ - -e "s:\((PACKAGE_NAME)\):\1-${PVR}:g" ${S}/docs/Makefile \ + -e "s:\((PACKAGE_NAME)\):\1-${PVR}:g" "${S}"/docs/Makefile \ || die "sed failed" sed -i \ - -e "s: \\$:\t\\$:g" ${S}/src/Makefile \ + -e "s: \\$:\t\\$:g" "${S}"/src/Makefile \ || die "sed failed" - cd ${S} + cd "${S}" AT_M4DIR=m4 eautoreconf } @@ -49,7 +49,6 @@ src_compile() { strip-flags # ftgl is sensitive - bug #112820 econf \ --enable-shared \ - --enable-shared \ || die emake || die } |