diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2013-01-22 18:09:51 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2013-01-22 18:09:51 +0000 |
commit | 6e897007f7c247ce97dbaa0c6c9861ae29542ee5 (patch) | |
tree | 2791849986099c996a0f5bcac63dc946fcdaa532 /media-libs | |
parent | old (diff) | |
download | gentoo-2-6e897007f7c247ce97dbaa0c6c9861ae29542ee5.tar.gz gentoo-2-6e897007f7c247ce97dbaa0c6c9861ae29542ee5.tar.bz2 gentoo-2-6e897007f7c247ce97dbaa0c6c9861ae29542ee5.zip |
old
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/sdl-gfx/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/sdl-gfx/sdl-gfx-2.0.23.ebuild | 39 |
2 files changed, 4 insertions, 40 deletions
diff --git a/media-libs/sdl-gfx/ChangeLog b/media-libs/sdl-gfx/ChangeLog index f2a37c531954..92ad24f1d36d 100644 --- a/media-libs/sdl-gfx/ChangeLog +++ b/media-libs/sdl-gfx/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/sdl-gfx # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/ChangeLog,v 1.96 2013/01/21 16:07:56 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/ChangeLog,v 1.97 2013/01/22 18:09:51 mr_bones_ Exp $ + + 22 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org> -sdl-gfx-2.0.23.ebuild: + old 21 Jan 2013; Agostino Sarubbo <ago@gentoo.org> sdl-gfx-2.0.24.ebuild: Stable for sparc, wrt bug #450768 diff --git a/media-libs/sdl-gfx/sdl-gfx-2.0.23.ebuild b/media-libs/sdl-gfx/sdl-gfx-2.0.23.ebuild deleted file mode 100644 index b822a491e778..000000000000 --- a/media-libs/sdl-gfx/sdl-gfx-2.0.23.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2012 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.23.ebuild,v 1.9 2012/05/17 15:22:52 aballier Exp $ - -EAPI=2 -inherit autotools multilib - -MY_P="${P/sdl-/SDL_}" -DESCRIPTION="Graphics drawing primitives library for SDL" -HOMEPAGE="http://www.ferzkopp.net/joomla/content/view/19/14/" -SRC_URI="http://www.ferzkopp.net/Software/SDL_gfx-2.0/${MY_P}.tar.gz" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" -IUSE="doc mmx static-libs" - -DEPEND="media-libs/libsdl[video]" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - sed -i -e 's/-O //' configure.in || die "sed failed" - eautoreconf -} - -src_configure() { - econf \ - --disable-dependency-tracking \ - $(use_enable mmx) \ - $(use_enable static-libs static) -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog README - use doc && dohtml -r Docs/* - use static-libs || rm -f "${D}"/usr/$(get_libdir)/lib*.la -} |