diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2005-01-27 13:42:44 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2005-01-27 13:42:44 +0000 |
commit | b567ed9f163df618a0ed979eee54f41d1fa92a0d (patch) | |
tree | 282dc922a8f614da93254a4cd50d77e474b59d7d /rox-base/rox/rox-2.1.5.ebuild | |
parent | fix for scribus menu entry (diff) | |
download | gentoo-2-b567ed9f163df618a0ed979eee54f41d1fa92a0d.tar.gz gentoo-2-b567ed9f163df618a0ed979eee54f41d1fa92a0d.tar.bz2 gentoo-2-b567ed9f163df618a0ed979eee54f41d1fa92a0d.zip |
add 2.1.5; mark 2.1.4 stable on x86; amd64
(Portage version: 2.0.51-r15)
Diffstat (limited to 'rox-base/rox/rox-2.1.5.ebuild')
-rw-r--r-- | rox-base/rox/rox-2.1.5.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/rox-base/rox/rox-2.1.5.ebuild b/rox-base/rox/rox-2.1.5.ebuild new file mode 100644 index 000000000000..7831c1ce998f --- /dev/null +++ b/rox-base/rox/rox-2.1.5.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/rox-base/rox/rox-2.1.5.ebuild,v 1.1 2005/01/27 13:42:44 lanius Exp $ + +DESCRIPTION="ROX is a desktop environment, like GNOME, KDE and XFCE. It is an attempt to bring some of the good features from RISC OS to Unix and Linux." +HOMEPAGE="http://rox.sourceforge.net/" +SRC_URI="mirror://sourceforge/rox/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~alpha ~sparc ~amd64" + +DEPEND=">=x11-libs/gtk+-2.2 + >=dev-libs/glib-2.2 + >=dev-libs/libxml2-2.4.23 + >=x11-misc/shared-mime-info-0.9 + svg? ( gnome-base/librsvg )" + +IUSE="svg" + +src_compile() { +# rm ROX-Filer/src/configure # see bug #26162 + + # If the env variable PLATFORM is set, rox will build using that + # string. This causes issues as while the package will compile fine, + # it will try to rebuild it the first time rox is run because it will + # not be able to find a proper executable to run. + use sparc && unset PLATFORM + + ROX-Filer/AppRun --compile || die "make failed" + (cd ROX-Filer/src; make clean) > /dev/null +} + +src_install() { + doman rox.1 + + dodir /usr/bin + cp -rf ROX-Filer/ ${D}/usr/share/ + echo "#!/bin/sh" > "${D}/usr/bin/rox" + echo "exec /usr/share/ROX-Filer/AppRun \"\$@\"" >> "${D}/usr/bin/rox" + chmod a+x ${D}/usr/bin/rox + + insinto /usr/share/mime/packages + doins rox.xml + + dodir /usr/share/ + cp -rf Choices ${D}/usr/share/ + dodir /usr/share/Choices/Mime-icons + keepdir /usr/share/Choices/Mime-icons + + dodir /usr/share/icons + dosym /usr/share/ROX-Filer/ROX /usr/share/icons/ROX +} + +pkg_postinst() { + update-mime-database /usr/share/mime +} |