blob: 78caf566bb5fa9c709b74f69228a2a5157e988fc (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/seyon/seyon-2.20c.ebuild,v 1.4 2004/06/24 22:32:11 agriffis Exp $
inherit eutils
DESCRIPTION="Seyon is a complete full-featured telecommunications package for the X Window System. Some of its features are: dialing directory, scripting language, external file transfer protocol support, zmodem auto-download and configurable keyboard translation modes."
HOMEPAGE="http://www.debian.org/"
SRC_URI="mirror://debian/pool/main/s/seyon/seyon_2.20c.orig.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/x11"
src_compile() {
epatch ${FILESDIR}/${P}-compile-fix.patch
#fixes pronlem with lockfiles #38264
epatch ${FILESDIR}/${P}-lock-file-fix.patch
export PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin/"
xmkmf || die "xmkmf failed"
chmod 0750 makever.sh || die "could not set executable permissions to makever.sh"
epatch ${FILESDIR}/${P}-makefile-patch.patch
make || die
}
src_install() {
make DESTDIR=${D} install || die
make DESTDIR=${D} install.man
}
pkg_postinst() {
mkdir /var/lock/uucp
touch /var/lock/seyon_locks
}
DOCS="1-BUGREPORT 1-CHANGES 1-COPYING 1-FAQ 1-HISTORY 1-INSTALL 1-PORTING 1-README 1-SURVEY 1-TODO COPYING"
|