blob: 4f2f1b7e74a02bd28f74b3945f43d91d4c75058c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/pxes/pxes-1.0.ebuild,v 1.1 2005/05/18 15:43:11 wolf31o2 Exp $
IUSE="cdr"
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}-6.tar.gz
mirror://sourceforge/pxes/pxesconfig-${PV}-7.tar.gz"
KEYWORDS="~x86 ~amd64"
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
sys-fs/squashfs-tools
cdr? ( app-cdr/cdrtools )"
inherit eutils perl-module
dir=/opt/${P}
Ddir=${D}/${dir}
die_from_busted_gtk-perl() {
ewarn "PXES requires that gtk-perl was built with USE=gnome. You can"
ewarn "fix this by doing the following:"
echo
einfo "mkdir -p /etc/portage"
einfo "echo 'dev-perl/gtk-perl gnome' >> /etc/portage/package.use"
einfo "emerge --oneshot dev-perl/gtk-perl"
die "gtk-perl requires USE=gnome"
}
pkg_setup() {
built_with_use dev-perl/gtk-perl gnome || die_from_busted_gtk-perl
}
src_compile() {
cd ${WORKDIR}/pxesconfig-${PV}
SRC_PREP="yes"
perl Makefile.PL PREFIX=${D}/usr INSTALLDIRS=vendor DESTDIR=${D}
perl-module_src_compile || die
}
src_install() {
dodir ${dir}
cp -r ${S}/stock ${Ddir} || die "Copying files"
cp -a ${S}/tftpboot ${D} || die "Copying tftpboot"
dodir ${dir}/tools
dosym /usr/bin/mksquashfs ${dir}/tools/mksquashfs
dodoc Documentation/ChangeLog
dohtml -r Documentation/html/*
cd ${WORKDIR}/pxesconfig-${PV}
perl-module_src_install || die
# Cleanup from improper install
cp -r ${D}/${D}/usr ${D}
rm -rf ${D}/var
}
|