diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2006-02-14 13:09:21 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2006-02-14 13:09:21 +0000 |
commit | 3ed91d2a51dbbae648eb8b624bb44809fb24b737 (patch) | |
tree | 5a25396555d6b6b1caca19dcd412809ecf8f836c /media-gfx/tuxpaint/tuxpaint-0.9.14.ebuild | |
parent | Marked ~sparc (diff) | |
download | historical-3ed91d2a51dbbae648eb8b624bb44809fb24b737.tar.gz historical-3ed91d2a51dbbae648eb8b624bb44809fb24b737.tar.bz2 historical-3ed91d2a51dbbae648eb8b624bb44809fb24b737.zip |
Modified patch to avoid installing stuff under /usr/X11R6. Pruning old ebuild/patch.
Package-Manager: portage-2.1_pre4-r1
Diffstat (limited to 'media-gfx/tuxpaint/tuxpaint-0.9.14.ebuild')
-rw-r--r-- | media-gfx/tuxpaint/tuxpaint-0.9.14.ebuild | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/media-gfx/tuxpaint/tuxpaint-0.9.14.ebuild b/media-gfx/tuxpaint/tuxpaint-0.9.14.ebuild deleted file mode 100644 index 32d1ce07c52c..000000000000 --- a/media-gfx/tuxpaint/tuxpaint-0.9.14.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/tuxpaint/tuxpaint-0.9.14.ebuild,v 1.5 2005/05/26 18:49:39 luckyduck 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="x86 ppc amd64" - -IUSE="gnome kde nls" - -DEPEND="media-libs/libpng - 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} - - find . -name CVS | xargs rm -rf - # 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 -} - -src_install () { - local myopts="" - - use gnome && myopts="${myopts} GNOME_PREFIX=${D}/usr" - - if use kde; then - myopts="${myopts} \ - KDE_PREFIX=${D}/usr/share/applnk \ - KDE_ICON_PREFIX=${D}/usr/share/icons" - fi - - use nls && myopts="${myopts} ENABLE_GETTEXT=1" - - make PREFIX="${D}/usr" ${myopts} install || die - - rm docs/COPYING.txt docs/INSTALL.txt - dodoc docs/*.txt -} - -pkg_postinst() { - einfo "" - einfo "For additional graphic stamps, you can emerge the" - einfo "media-gfx/tuxpaint-stamps package." - einfo "" -} - |