blob: cc6c32c6c62ab97c6db402ee9cedb4af852205c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfractint/xfractint-20.3.00.ebuild,v 1.13 2004/06/28 20:28:49 agriffis Exp $
inherit eutils flag-o-matic
MY_P=xfract${PV}
S="${WORKDIR}/xfract-fo-20.03p00"
DESCRIPTION="The best fractal generator for X."
HOMEPAGE="http://www.fractint.org"
SRC_URI="http://www.fractint.org/ftp/old/linux/${MY_P}.fo.tar.gz
http://dev.gentoo.org/~spock/portage/distfiles/xfract-fo-20.03p00-files.tar.bz2"
KEYWORDS="x86 sparc"
SLOT="0"
LICENSE="freedist"
IUSE=""
DEPEND="virtual/libc
>=sys-libs/ncurses-5.1
virtual/x11"
RDEPEND=$DEPEND
src_unpack() {
unpack ${MY_P}.fo.tar.gz
unpack xfract-fo-20.03p00-files.tar.bz2
epatch ${FILESDIR}/xfractint-20.03p00.patch
}
src_compile() {
cd ${S}
cp Makefile Makefile.orig
replace-flags "-funroll-all-loops" "-funroll-loops"
sed -e "s:CFLAGS = :CFLAGS = $CFLAGS :" Makefile.orig >Makefile
MAKEOPTS='-j1' emake
}
src_install() {
dodir /usr/bin
dodir /usr/share/xfractint
dodir /usr/man/man1
make \
BINDIR=${D}usr/bin \
MANDIR=${D}usr/man/man1 \
SRCDIR=${D}usr/share/xfractint \
install || die
insinto /etc/env.d
newins ${FILESDIR}/xfractint.envd 60xfractint
}
pkg_postinst() {
einfo
einfo "XFractInt requires the FRACTDIR variable to be set in order to start."
einfo "Please re-login or \`source /etc/profile\` to have this variable set automatically."
einfo
}
|