blob: d91a1ec744148e9ec46f9e9a9cf3eb331b2438fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2
# Maintainer: Thilo Bangert <bangert@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/sys-apps/ucspi-unix/ucspi-unix-0.34.ebuild,v 1.3 2002/04/27 21:46:45 bangert Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A ucspi implementation for unix sockets."
SRC_URI="http://untroubled.org/ucspi-unix/${P}.tar.gz"
HOMEPAGE="http://untroubled.org"
src_compile() {
emake || die
}
src_install () {
exeinto /usr/bin
doexe unixserver unixclient unixcat
}
|