You are not logged in.

#1 2006-01-29 23:56:00

rafal
Member
From: Poland
Registered: 2005-05-18
Posts: 49

[REQUEST] gnuserv dla emacsa

I've done the following PKGBUILD of gnuserv

# $Id$
# Maintainer: sewi <skokot@o2.pl>
pkgname=gnuserv
pkgver=3.12.7
pkgrel=1
pkgdesc="gnuserv with gnu emacs compatability layer"
url="http://meltin.net/hacks/emacs/"
license="GPL"
depends=('emacs')
makedepends=('emacs')
conflicts=()
replaces=()
backup=()
install=
source=(http://meltin.net/hacks/emacs/src/$pkgname-$pkgver.tar.gz)
md5sums=('b1522454fbccab33fb271f6a46afc3e9')

build() {
  cd $startdir/src/$pkgname-$pkgver
  ./configure --prefix=/usr
  make || return 1
  make prefix=$startdir/pkg install
}

copied gnuserv.el, gnuserv-compat.el and devices.el files to ~/elisp/ directory (which is on path) and put the lines below to .emacs

(autoload 'gnuserv-start "gnuserv-compat"
  "Allow this Emacs process to be a server for client processes." t)
(setq gnuserv-program "gnuclient")
(gnuserv-start)

But when I run emacs the gnuserv doesn't run and get this in modeline:

Gnuserv process exited; restart with `M-x gnuserv-start'

What I've done wrong?

Offline

Board footer

Powered by FluxBB