diff options
author | 2004-12-23 22:22:18 +0000 | |
---|---|---|
committer | 2004-12-23 22:22:18 +0000 | |
commit | e7c52853a09e66356703da9ad2d33b98b7c7003b (patch) | |
tree | 27687dbf7a0997e190e5b99efe3534cf8a7e5b6b /app-emulation/crossover-office-bin/crossover-office-bin-4.1.ebuild | |
parent | Stable on alpha. (diff) | |
download | historical-e7c52853a09e66356703da9ad2d33b98b7c7003b.tar.gz historical-e7c52853a09e66356703da9ad2d33b98b7c7003b.tar.bz2 historical-e7c52853a09e66356703da9ad2d33b98b7c7003b.zip |
Version bump #75441 by Gen Zhang.
Diffstat (limited to 'app-emulation/crossover-office-bin/crossover-office-bin-4.1.ebuild')
-rw-r--r-- | app-emulation/crossover-office-bin/crossover-office-bin-4.1.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app-emulation/crossover-office-bin/crossover-office-bin-4.1.ebuild b/app-emulation/crossover-office-bin/crossover-office-bin-4.1.ebuild new file mode 100644 index 000000000000..2adcce302b33 --- /dev/null +++ b/app-emulation/crossover-office-bin/crossover-office-bin-4.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/crossover-office-bin/crossover-office-bin-4.1.ebuild,v 1.1 2004/12/23 22:22:18 vapier Exp $ + +inherit eutils + +DESCRIPTION="specialized version of wine for MS Office" +HOMEPAGE="http://www.codeweavers.com/site/products/cxoffice/" +SRC_URI="install-crossover-standard-${PV}.sh" + +LICENSE="CROSSOVER" +SLOT="0" +KEYWORDS="-* ~x86" +IUSE="" +RESTRICT="fetch nostrip" + +RDEPEND="virtual/x11 + virtual/libc" + +S=${WORKDIR} + +pkg_nofetch() { + einfo "Please visit ${HOMEPAGE}" + einfo "and place ${A} in ${DISTDIR}" +} + +src_unpack() { + unpack_makeself +} + +src_install() { + dodir /opt/cxoffice + cp -r * "${D}"/opt/cxoffice || die "cp failed" + rm -r "${D}"/opt/cxoffice/setup.{sh,data} + insinto /opt/cxoffice/etc + doins support/templates/cxoffice.conf +} |