diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2003-11-20 16:16:33 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2003-11-20 16:16:33 +0000 |
commit | 0b801fcc6ba1a400965b336bcc93d4fe5ec29bd5 (patch) | |
tree | 918a3ce02c78b5f6cba9a4db6e8aa9c220bf4e82 /net-misc | |
parent | Bumped to version 0.7 for ~x86 (diff) | |
download | historical-0b801fcc6ba1a400965b336bcc93d4fe5ec29bd5.tar.gz historical-0b801fcc6ba1a400965b336bcc93d4fe5ec29bd5.tar.bz2 historical-0b801fcc6ba1a400965b336bcc93d4fe5ec29bd5.zip |
Bumped to version 0.7 for ~x86
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/pxes/Manifest | 5 | ||||
-rw-r--r-- | net-misc/pxes/files/digest-pxes-0.7 | 3 | ||||
-rw-r--r-- | net-misc/pxes/pxes-0.7.ebuild | 62 |
3 files changed, 67 insertions, 3 deletions
diff --git a/net-misc/pxes/Manifest b/net-misc/pxes/Manifest index 6fea4e879091..95a5c2d627d0 100644 --- a/net-misc/pxes/Manifest +++ b/net-misc/pxes/Manifest @@ -1,8 +1,7 @@ -MD5 30e62ac49cb298d78665ea79db172738 pxes-0.7.ebuild 1549 +MD5 4992fb3a04767006c1964d695dc7ef03 pxes-0.7.ebuild 1547 MD5 68223a47eb1a9c0628d02b3c83de742f pxes-0.6-r4.ebuild 1545 -MD5 e52c4dfc0e909bb771a86b9bed2e9ab7 ChangeLog 1069 +MD5 bedadcd26781d55e8e73a4dc1fb293f1 ChangeLog 1199 MD5 31f33377b38003e6c6e51369a83fafcc metadata.xml 644 MD5 1708574c57ea3dbb43faa2a5abe17a5d files/digest-pxes-0.6-r4 206 -MD5 17631579c17eec2824433cdbc8028c07 files/pxes-0.6-gentoo.patch 1068 MD5 f3afb0ef2357d69147125eeb6cda6c43 files/makedevices.sh 1626 MD5 587792f4ed87b201b12047186b3c19c4 files/digest-pxes-0.7 208 diff --git a/net-misc/pxes/files/digest-pxes-0.7 b/net-misc/pxes/files/digest-pxes-0.7 new file mode 100644 index 000000000000..fc073b60c6ed --- /dev/null +++ b/net-misc/pxes/files/digest-pxes-0.7 @@ -0,0 +1,3 @@ +MD5 f256e6bc75e0a4dd5ccbf28affead74d pxes-base-i586-0.7-1.tar.gz 14312040 +MD5 3d046dcb25e562a06752f2953cc271ec pxesconfig-0.7-1.tar.gz 245827 +MD5 4020d88286d78a1b04cd9a58a4609a93 pxes-ltsp-0.7-1.tar.gz 14513 diff --git a/net-misc/pxes/pxes-0.7.ebuild b/net-misc/pxes/pxes-0.7.ebuild new file mode 100644 index 000000000000..ea0ab122d624 --- /dev/null +++ b/net-misc/pxes/pxes-0.7.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/pxes/pxes-0.7.ebuild,v 1.1 2003/11/20 16:16:28 wolf31o2 Exp $ + +IUSE="ltsp" +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}-1.tar.gz + mirror://sourceforge/pxes/pxesconfig-${PV}-1.tar.gz + ltsp? ( mirror://sourceforge/pxes/${PN}-ltsp-${PV}-1.tar.gz )" + +KEYWORDS="~x86" + +SLOT="0" +LICENSE="GPL-2" +DEPEND=">=dev-lang/perl-5.8.0-r12 + ltsp? >=net-misc/ltsp-core-3.0.9-r1" + +RDEPEND="${DEPEND} + dev-perl/gtk-perl + >=dev-perl/glade-perl-0.61 + cdr? app-cdr/cdrtools" + +S=${WORKDIR}/${P} +RESTRICT="nouserpriv" + +inherit perl-module + +dir=/opt/${P} +Ddir=${D}/${dir} + +src_unpack() { + unpack ${A} + + use ltsp && unpack ${PN}-ltsp-${PV}-1.tar.gz +} + +src_compile() { + cd ${WORKDIR}/pxesconfig-${PV} + perl-module_src_compile || die +} + +src_install() { + dodir ${dir} + cp -ar ${S}/stock ${Ddir} + cp -ar ${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 + exeinto ${dir} + doexe ${FILESDIR}/makedevices.sh + cd ${WORKDIR}/pxesconfig-${PV} + perl-module_src_install || die + dosym /usr/bin/cpio /bin/cpio +} + +#pkg_postinst() { +# ${dir}/makedevices.sh +#} + +#pkg_prerm() { +# rm -rf ${dir}/stock/{dist,initrd}/dev +#} |