You are not logged in.

#1 2004-12-06 04:59:49

poetofnumbers
Member
From: Kansas, United States
Registered: 2004-10-30
Posts: 106
Website

[network: terminal server] ltsp-utils, ltsp-sound

I have made packages for the Linux Terminal Server Project (ltsp) 4.1 installer, ltsp-utils, and the client-side sound package, ltsp-sound.  These pacman packages have not been tested.  The actual LTSP code should be stable.  I only have one computer at my disposal, and so I don't feel confident that I could effectively test the pacman packages.  However, once I buy my family a G5 imac, I'll inherit their old pc which will go to testing these pacman package.  Don't expect to happen for at least a few months.  Poor graduate students need time to save up for expensive Apple hardware.  As the LTSP is fairly technical reading the documentation and knowing what you are doing is a must.

ltsp-utils PKGBUILD:

pkgname=ltsp-utils
pkgver=0.10
pkgrel=1
pkgdesc="LTSP is an add-on package for Linux that allows you to connect lots 
of low-powered thin client terminals to a Linux server.  Applications 
typically run on the server, and accept input and display their output on the 
thin client display."
url="http://www.ltsp.org/"
license="GPL"
install=ltsp-utils.install
source=(http://www.ltsp.org/$pkgname-$pkgver.tgz)
md5sums=('46fc32dbf63ee277f37b3de9c85d020e')

build() {
  cd $startdir/src/$pkgname
  mkdir -p $startdir/pkg/usr/sbin
  sed -i "s|/usr/sbin|$startdir/pkg/usr/sbin|g" install.sh }

ltsp-utils.install:

pre_install() {
  $startdir/src/ltsp-utils-0.10/install.sh
  /bin/true
}

post_install() { /bin/true }
pre_upgrade() { /bin/true }
post_upgrade() { /bin/true }
pre_remove() { /bin/true }
post_remove() { /bin/true }

op=$1
shift
$op $*

ltsp-sound PKGBUILD:

pkgname=ltsp-sound
pkgver=1.0
pkgrel=1
pkgdesc="LTSP package needed to re-direct sound to the clients"
url="http://www.ltsp.org/"
license="GPL"
depends=('ltsp-utils')
source=(http://www.ltsp.org/ltsp-4.1/$pkgname-$pkgver-0.1.tar.bz2)
md5sums=('239437dba29269bb23275dcb2f5003c2')
install=ltsp-sound.install

build() {
  cd $startdir/src/$pkgname-$pkgver
  mkdir -p $startdir/pkg/etc
  sed -i "s|/etc|$startdir/pkg/etc|g" install.sh
}

ltsp-sound.install:

pre_install() {
  $startdir/src/ltsp-sound-1.0/install.sh
  /bin/true
}

post_install() { /bin/true }
pre_upgrade() { /bin/true }
post_upgrade() { /bin/true }
pre_remove() { /bin/true }
post_remove() { /bin/true }

op=$1
shift
$op $*

My apologizes for submitting two untested arch packages to the forums.  I haven't sent them to the tur mailing list because of this.


Sweet, now I can play with myself.

Offline

Board footer

Powered by FluxBB