blob: 830a0e8905a00919488130b5e79e247b3374bb54 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/liblockfile/liblockfile-1.03.ebuild,v 1.9 2002/10/04 06:05:58 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Implements functions designed to lock the standard mailboxes."
SRC_URI="ftp://ftp.debian.org/debian/pool/main/libl/${PN}/${PN}_${PV}.tar.gz"
HOMEPAGE="http://www.debian.org"
DEPEND="virtual/glibc"
SLOT="0"
LICENSE="LGPL-2"
KEYWORDS="x86 ppc sparc sparc64"
src_compile() {
econf --with-mailgroup=mail || die
emake || die
}
src_install() {
dodir /usr/{bin,include,lib} /usr/share/man/{man1,man3}
make ROOT=${D} install || die
}
|