summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Meier <maekke@gentoo.org>2010-01-31 21:54:53 +0000
committerMarkus Meier <maekke@gentoo.org>2010-01-31 21:54:53 +0000
commitb89e45f0a87859188f7de97a0cf0049067a86ffa (patch)
tree6ded567a0c9e9d6a5433e389263ea7935c36f957 /media-gfx/tuxpaint
parentInitial import (diff)
downloadgentoo-2-b89e45f0a87859188f7de97a0cf0049067a86ffa.tar.gz
gentoo-2-b89e45f0a87859188f7de97a0cf0049067a86ffa.tar.bz2
gentoo-2-b89e45f0a87859188f7de97a0cf0049067a86ffa.zip
old
(Portage version: 2.2_rc62/cvs/Linux i686)
Diffstat (limited to 'media-gfx/tuxpaint')
-rw-r--r--media-gfx/tuxpaint/ChangeLog5
-rw-r--r--media-gfx/tuxpaint/tuxpaint-0.9.20.ebuild68
2 files changed, 4 insertions, 69 deletions
diff --git a/media-gfx/tuxpaint/ChangeLog b/media-gfx/tuxpaint/ChangeLog
index c20e0a6e8ab9..4b520bc7e9b8 100644
--- a/media-gfx/tuxpaint/ChangeLog
+++ b/media-gfx/tuxpaint/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-gfx/tuxpaint
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/tuxpaint/ChangeLog,v 1.58 2010/01/31 18:12:40 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/tuxpaint/ChangeLog,v 1.59 2010/01/31 21:54:53 maekke Exp $
+
+ 31 Jan 2010; Markus Meier <maekke@gentoo.org> -tuxpaint-0.9.20.ebuild:
+ old
31 Jan 2010; Markos Chandras <hwoarang@gentoo.org>
tuxpaint-0.9.20-r1.ebuild:
diff --git a/media-gfx/tuxpaint/tuxpaint-0.9.20.ebuild b/media-gfx/tuxpaint/tuxpaint-0.9.20.ebuild
deleted file mode 100644
index d535c24ac05e..000000000000
--- a/media-gfx/tuxpaint/tuxpaint-0.9.20.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/tuxpaint/tuxpaint-0.9.20.ebuild,v 1.4 2009/03/19 14:10:45 ranger Exp $
-
-EAPI="2"
-
-inherit eutils gnome2-utils multilib toolchain-funcs
-
-DESCRIPTION="Drawing program designed for young children"
-HOMEPAGE="http://www.tuxpaint.org/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-
-IUSE="nls"
-
-DEPEND="
- app-text/libpaper
- gnome-base/librsvg
- >=media-libs/libpng-1.2
- >=media-libs/freetype-2
- media-libs/libsdl
- media-libs/sdl-image[png]
- media-libs/sdl-mixer
- media-libs/sdl-pango
- media-libs/sdl-ttf
- x11-libs/cairo
- nls? ( sys-devel/gettext )"
-
-src_prepare() {
- # Sanitize the Makefile and correct a few other issues.
- epatch "${FILESDIR}/${P}-gentoo.patch"
- sed -i -e "s|linux_PREFIX:=/usr/local|linux_PREFIX:=/usr|" Makefile || die
-
- # Make multilib-strict compliant, see bug #200740
- sed -i -e "s:/lib/:/$(get_libdir)/:" Makefile || die
-}
-
-src_compile() {
- local myopts=""
-
- use nls && myopts="${myopts} ENABLE_GETTEXT=1"
-
- # emake may break things
- make CC="$(tc-getCC)" ${myopts} || die "Compilation failed"
-}
-
-src_install () {
- local myopts=""
-
- use nls && myopts="${myopts} ENABLE_GETTEXT=1"
-
- make PKG_ROOT="${D}" ${myopts} install || die "Installation failed"
-
- rm -f docs/COPYING.txt docs/INSTALL.txt
- dodoc docs/*.txt
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
-
- elog ""
- elog "For additional graphic stamps, you can emerge the"
- elog "media-gfx/tuxpaint-stamps package."
- elog ""
-}