diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2007-02-06 05:07:19 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2007-02-06 05:07:19 +0000 |
commit | ec25b71d96c0863ab19751c7c453a82f655d9295 (patch) | |
tree | 76782973a10df4ba2e79f6b43ed93ae5e9ab8b79 /media-libs/sdl-gfx | |
parent | Set myself up as (co)maintainer while axxo is away. You know, just to catch t... (diff) | |
download | gentoo-2-ec25b71d96c0863ab19751c7c453a82f655d9295.tar.gz gentoo-2-ec25b71d96c0863ab19751c7c453a82f655d9295.tar.bz2 gentoo-2-ec25b71d96c0863ab19751c7c453a82f655d9295.zip |
version bump
(Portage version: 2.1.1-r2)
Diffstat (limited to 'media-libs/sdl-gfx')
-rw-r--r-- | media-libs/sdl-gfx/ChangeLog | 10 | ||||
-rw-r--r-- | media-libs/sdl-gfx/files/digest-sdl-gfx-2.0.16 | 3 | ||||
-rw-r--r-- | media-libs/sdl-gfx/sdl-gfx-2.0.16.ebuild | 40 |
3 files changed, 51 insertions, 2 deletions
diff --git a/media-libs/sdl-gfx/ChangeLog b/media-libs/sdl-gfx/ChangeLog index 91c4d58c4345..f4a23b403a17 100644 --- a/media-libs/sdl-gfx/ChangeLog +++ b/media-libs/sdl-gfx/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/sdl-gfx -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/ChangeLog,v 1.33 2006/12/25 07:05:27 nyhm Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/ChangeLog,v 1.34 2007/02/06 05:07:19 mr_bones_ Exp $ + +*sdl-gfx-2.0.16 (06 Feb 2007) + + 06 Feb 2007; Michael Sterrett <mr_bones_@gentoo.org> + +sdl-gfx-2.0.16.ebuild: + version bump 25 Dec 2006; Tristan Heaven <nyhm@gentoo.org> sdl-gfx-2.0.14.ebuild: Add a revdep-rebuild warning, bug #159045 diff --git a/media-libs/sdl-gfx/files/digest-sdl-gfx-2.0.16 b/media-libs/sdl-gfx/files/digest-sdl-gfx-2.0.16 new file mode 100644 index 000000000000..73884cd4dfce --- /dev/null +++ b/media-libs/sdl-gfx/files/digest-sdl-gfx-2.0.16 @@ -0,0 +1,3 @@ +MD5 22dc2d9d916197829f9342c490d2d02b SDL_gfx-2.0.16.tar.gz 830086 +RMD160 1ee1b19f5699b5f3661a9ba461bc44a1e4f135da SDL_gfx-2.0.16.tar.gz 830086 +SHA256 1ac780303b76bc830b837e6030de60943df0c28d7b9dab3a7229427bb6f4c2ea SDL_gfx-2.0.16.tar.gz 830086 diff --git a/media-libs/sdl-gfx/sdl-gfx-2.0.16.ebuild b/media-libs/sdl-gfx/sdl-gfx-2.0.16.ebuild new file mode 100644 index 000000000000..1e9fdb182774 --- /dev/null +++ b/media-libs/sdl-gfx/sdl-gfx-2.0.16.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/sdl-gfx-2.0.16.ebuild,v 1.1 2007/02/06 05:07:19 mr_bones_ Exp $ + +inherit eutils flag-o-matic + +MY_P="${P/sdl-/SDL_}" +DESCRIPTION="Graphics drawing primitives library for SDL" +HOMEPAGE="http://www.ferzkopp.net/~aschiffler/Software/SDL_gfx-2.0/index.html" +SRC_URI="http://www.ferzkopp.net/~aschiffler/Software/SDL_gfx-2.0/${MY_P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86" +IUSE="mmx" + +DEPEND=">=media-libs/libsdl-1.2" + +S=${WORKDIR}/${MY_P} + +src_compile() { + filter-flags -finline-functions -funroll-loops #26892 #89749 + replace-flags -O? -O2 + + econf \ + --disable-dependency-tracking \ + $(use_enable mmx) || die + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog README + dohtml -r Docs/* +} + +pkg_postinst() { + ewarn "If you upgraded from sdl-gfx-2.0.13-r1 or earlier, please run" + ewarn "\"revdep-rebuild\" from app-portage/gentoolkit" +} |