diff options
Diffstat (limited to 'media-gfx/tuxpaint/tuxpaint-0.9.15b-r1.ebuild')
-rw-r--r-- | media-gfx/tuxpaint/tuxpaint-0.9.15b-r1.ebuild | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/media-gfx/tuxpaint/tuxpaint-0.9.15b-r1.ebuild b/media-gfx/tuxpaint/tuxpaint-0.9.15b-r1.ebuild deleted file mode 100644 index fd9072e8e429..000000000000 --- a/media-gfx/tuxpaint/tuxpaint-0.9.15b-r1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/tuxpaint/tuxpaint-0.9.15b-r1.ebuild,v 1.7 2007/07/12 04:08:47 mr_bones_ Exp $ - -inherit eutils - -DESCRIPTION="Drawing program designed for young children" -HOMEPAGE="http://www.newbreedsoftware.com/tuxpaint/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" - -IUSE="gnome kde nls" - -DEPEND=">=media-libs/libpng-1.2 - media-libs/sdl-ttf - media-libs/sdl-mixer - media-libs/sdl-image - media-libs/libsdl - >=media-libs/freetype-2 - media-libs/netpbm - nls? ( sys-devel/gettext )" - -src_unpack() { - unpack "${A}" - cd "${S}" - - # Sanitize the Makefile and correct a few other issues. - epatch "${FILESDIR}"/${P}-gentoo.patch -} - -src_compile() { - local myopts="" - - use nls && myopts="${myopts} ENABLE_GETTEXT=1" - - # emake may break things - make ${myopts} || die "Compilation failed" -} - -src_install () { - local myopts="" - - use gnome && myopts="${myopts} GNOME_PREFIX=/usr" - - if use kde; then - myopts="${myopts} \ - KDE_PREFIX=/usr/share/applnk \ - KDE_ICON_PREFIX=/usr/share/icons" - fi - - 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() { - elog "" - elog "For additional graphic stamps, you can emerge the" - elog "media-gfx/tuxpaint-stamps package." - elog "" -} |