diff options
author | Fabian Groffen <grobian@gentoo.org> | 2005-10-31 18:42:32 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2005-10-31 18:42:32 +0000 |
commit | a2857735b2470ae60a6f1e6d40ab163f7bb16e8d (patch) | |
tree | 1d7071b867ddb12ccb8381031c52f2c9fd30bf6d /media-gfx/duhdraw/duhdraw-2.8.12.ebuild | |
parent | Version bump. (diff) | |
download | historical-a2857735b2470ae60a6f1e6d40ab163f7bb16e8d.tar.gz historical-a2857735b2470ae60a6f1e6d40ab163f7bb16e8d.tar.bz2 historical-a2857735b2470ae60a6f1e6d40ab163f7bb16e8d.zip |
Adding a small patch to allow compilation on OSX. Marked ~ppc-macos (bug #110946)
Package-Manager: portage-2.0.51.22-r3
Diffstat (limited to 'media-gfx/duhdraw/duhdraw-2.8.12.ebuild')
-rw-r--r-- | media-gfx/duhdraw/duhdraw-2.8.12.ebuild | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/media-gfx/duhdraw/duhdraw-2.8.12.ebuild b/media-gfx/duhdraw/duhdraw-2.8.12.ebuild index b3787a8fbd6e..2d307b5f50ad 100644 --- a/media-gfx/duhdraw/duhdraw-2.8.12.ebuild +++ b/media-gfx/duhdraw/duhdraw-2.8.12.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/duhdraw/duhdraw-2.8.12.ebuild,v 1.8 2005/06/05 12:06:14 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/duhdraw/duhdraw-2.8.12.ebuild,v 1.9 2005/10/31 18:42:32 grobian Exp $ -inherit toolchain-funcs +inherit toolchain-funcs eutils DESCRIPTION="ASCII art editor" HOMEPAGE="http://www.cs.helsinki.fi/u/penberg/duhdraw" @@ -10,11 +10,16 @@ SRC_URI="http://www.wwco.com/~wls/opensource/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="ppc x86" +KEYWORDS="ppc ~ppc-macos x86" IUSE="" DEPEND="sys-libs/ncurses" +src_unpack() { + unpack "${A}" + epatch "${FILESDIR}/${P}"-macos.patch +} + src_compile() { emake CC="$(tc-getCC) -s ${CFLAGS}" || die } |