diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-04-03 18:23:25 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-04-03 18:23:25 +0000 |
commit | 10dbded5b7a270e1f350cd42d2a745ae71fc876f (patch) | |
tree | 52ad068700dad35f238bddad64495e8a01904379 /net-misc | |
parent | Fixing digest and closing bug #46693. (Manifest recommit) (diff) | |
download | gentoo-2-10dbded5b7a270e1f350cd42d2a745ae71fc876f.tar.gz gentoo-2-10dbded5b7a270e1f350cd42d2a745ae71fc876f.tar.bz2 gentoo-2-10dbded5b7a270e1f350cd42d2a745ae71fc876f.zip |
Adding pxes-0.8 ebuild and closing bugs #32794 and #46639.
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/pxes/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/pxes/files/digest-pxes-0.8 | 2 | ||||
-rw-r--r-- | net-misc/pxes/pxes-0.8.ebuild | 50 |
3 files changed, 58 insertions, 1 deletions
diff --git a/net-misc/pxes/ChangeLog b/net-misc/pxes/ChangeLog index 243cf5469a1a..11bbffabbf9c 100644 --- a/net-misc/pxes/ChangeLog +++ b/net-misc/pxes/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/pxes # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/pxes/ChangeLog,v 1.9 2004/03/01 10:24:32 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/pxes/ChangeLog,v 1.10 2004/04/03 18:23:24 wolf31o2 Exp $ + +*pxes-0.8 (03 Apr 2004) + + 03 Apr 2004; Chris Gianelloni <wolf31o2@gentoo.org> pxes-0.8.ebuild: + Adding pxes-0.8 ebuild and closing bugs #32794 and #46639. 01 Mar 2004; Michael Cummings <mcummings@gentoo.org> pxes-0.7.ebuild: Fixed calls to perl-modules eclass. This resolves the sandbox violation of bug diff --git a/net-misc/pxes/files/digest-pxes-0.8 b/net-misc/pxes/files/digest-pxes-0.8 new file mode 100644 index 000000000000..821fe05dfc16 --- /dev/null +++ b/net-misc/pxes/files/digest-pxes-0.8 @@ -0,0 +1,2 @@ +MD5 51667641606cf643d56f68228003f7e0 pxes-base-i586-0.8-9.tar.gz 14661896 +MD5 95dc5840d650c4fe734e48154b9d159f pxesconfig-0.8-9.tar.gz 246763 diff --git a/net-misc/pxes/pxes-0.8.ebuild b/net-misc/pxes/pxes-0.8.ebuild new file mode 100644 index 000000000000..ca40a4ad6899 --- /dev/null +++ b/net-misc/pxes/pxes-0.8.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/pxes/pxes-0.8.ebuild,v 1.1 2004/04/03 18:23:24 wolf31o2 Exp $ + +#IUSE="ltsp cdr" +IUSE="" +DESCRIPTION="PXES is a package for building thin clients using multiple types of clients" +HOMEPAGE="http://pxes.sourceforge.net" +SRC_URI="mirror://sourceforge/pxes/${PN}-base-i586-${PV}-9.tar.gz + mirror://sourceforge/pxes/pxesconfig-${PV}-9.tar.gz" + +KEYWORDS="~x86" + +SLOT="0" +LICENSE="GPL-2" +DEPEND=">=dev-lang/perl-5.8.0-r12" + +RDEPEND="${DEPEND} + dev-perl/gtk-perl + >=dev-perl/glade-perl-0.61 + cdr? app-cdr/cdrtools" + +inherit perl-module + +dir=/opt/${P} +Ddir=${D}/${dir} + +src_unpack() { + unpack ${A} || die "Unpacking" +# use ltsp && unpack ${PN}-ltsp-${PV}-9.tar.gz +} + +src_compile() { + cd ${WORKDIR}/pxesconfig-${PV} + MMSIXELEVEN="" + perl-module_src_prep || die + perl-module_src_compile || die +} + +src_install() { + dodir ${dir} + cd ${Ddir} + cp -r ${S}/stock ${Ddir} || die "Copying files" + cp -a ${S}/tftpboot ${D} + dodoc Documentation/ChangeLog + dohtml Documentation/html/{index,pxe,readme,screenshots}.html,howto/{configuring_ICA,customizing_kernel_and_modules,gdm,xfs,ms_only_environment/ms_only_environment}.html + cd ${WORKDIR}/pxesconfig-${PV} + perl-module_src_install || die + dosym /usr/bin/cpio /bin/cpio +} |