blob: 341b1eb209ac1009a2b8b096eacb015546d3be54 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Your Name <your email>
# $Header: /var/cvsroot/gentoo-x86/dev-libs/pilot-link/pilot-link-0.9.0.ebuild,v 1.2 2001/06/08 01:08:06 achim Exp $
A=${PN}.${PV}.tar.gz
S=${WORKDIR}/${PN}.${PV}
DESCRIPTION="A pilot link librarie"
SRC_URI="http://www.slac.com/pilone/kpilot_home/download/${A}"
HOMEPAGE="http://www.slac.com/pilone/kpilot_home"
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
patch -p0 <${FILESDIR}/${PF}-gentoo.diff
}
src_compile() {
try ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} \
--with-tcl=no --with-itcl=no --with-tk=no \
--with-python=no --with-java=no --with-perl5=no
try make
}
src_install () {
try make prefix=${D}/usr mandir1=${D}/usr/share/man/man1 mandir7=${D}/usr/share/man/man7 install
dodoc COPYING* ChangeLog README TODO
}
|