diff options
author | Michael Januszewski <spock@gentoo.org> | 2006-01-22 15:46:55 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2006-01-22 15:46:55 +0000 |
commit | d84c87f4dc8e26bcf632af8b45b47f6c199663fb (patch) | |
tree | f427f1eb596b5ce6f5359f7db2eea38112ebea0d /x11-misc | |
parent | Version bump. (diff) | |
download | gentoo-2-d84c87f4dc8e26bcf632af8b45b47f6c199663fb.tar.gz gentoo-2-d84c87f4dc8e26bcf632af8b45b47f6c199663fb.tar.bz2 gentoo-2-d84c87f4dc8e26bcf632af8b45b47f6c199663fb.zip |
Version bump.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xfractint/ChangeLog | 10 | ||||
-rw-r--r-- | x11-misc/xfractint/files/digest-xfractint-20.4.03 | 1 | ||||
-rw-r--r-- | x11-misc/xfractint/xfractint-20.4.03.ebuild | 56 |
3 files changed, 65 insertions, 2 deletions
diff --git a/x11-misc/xfractint/ChangeLog b/x11-misc/xfractint/ChangeLog index 6271bf456d47..d5614bec95a4 100644 --- a/x11-misc/xfractint/ChangeLog +++ b/x11-misc/xfractint/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/xfractint -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfractint/ChangeLog,v 1.33 2005/09/08 13:30:22 metalgod Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfractint/ChangeLog,v 1.34 2006/01/22 15:46:55 spock Exp $ + +*xfractint-20.4.03 (22 Jan 2006) + + 22 Jan 2006; Michał Januszewski <spock@gentoo.org> + +xfractint-20.4.03.ebuild: + Version bump. 08 Sep 2005; Luis Medinas <metalgod@gentoo.org> xfractint-20.4.00.ebuild: Marked Stable on AMD64. diff --git a/x11-misc/xfractint/files/digest-xfractint-20.4.03 b/x11-misc/xfractint/files/digest-xfractint-20.4.03 new file mode 100644 index 000000000000..f297179fd15e --- /dev/null +++ b/x11-misc/xfractint/files/digest-xfractint-20.4.03 @@ -0,0 +1 @@ +MD5 a877882dec5a416bbf28d30a03c86f5e xfractint-20.04p03.tar.gz 1591997 diff --git a/x11-misc/xfractint/xfractint-20.4.03.ebuild b/x11-misc/xfractint/xfractint-20.4.03.ebuild new file mode 100644 index 000000000000..55d2dfbae744 --- /dev/null +++ b/x11-misc/xfractint/xfractint-20.4.03.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfractint/xfractint-20.4.03.ebuild,v 1.1 2006/01/22 15:46:55 spock Exp $ + +inherit eutils flag-o-matic + +MY_P=xfractint-20.04p03 +S="${WORKDIR}/${MY_P}" +DESCRIPTION="The best fractal generator for X." +HOMEPAGE="http://www.fractint.org" +SRC_URI="http://www.fractint.org/ftp/current/linux/${MY_P}.tar.gz" + +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +SLOT="0" +LICENSE="freedist" +IUSE="" + +RDEPEND="virtual/libc + >=sys-libs/ncurses-5.1 + || ( x11-libs/libX11 virtual/x11 )" + +DEPEND="${RDEPEND} + || ( x11-proto/xproto virtual/x11 )" + +src_compile() { + cd ${S} + cp Makefile Makefile.orig + replace-flags "-funroll-all-loops" "-funroll-loops" + sed -e "s:CFLAGS = :CFLAGS = $CFLAGS :" Makefile.orig >Makefile + + emake -j1 +} + +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 + + chmod 0644 -R ${D}usr/share/xfractint/* + + 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 +} |