blob: 32e514a1d878e3da06dbfd380bf5f806795028a1 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
S=${WORKDIR}/${P}
DESCRIPTION="Implements functions designed to lock the standard mailboxes."
SRC_URI="ftp://ftp.debian.org/debian/pool/main/libl/liblockfile/liblockfile_1.03.tar.gz"
HOMEPAGE="http://www.debian.org"
DEPEND="virtual/glibc"
src_compile() {
./configure --host=${CHOST} \
--with-mailgroup=mail \
--prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info || die
emake || die
}
src_install() {
dodir /usr/{bin,include,lib} /usr/share/man/{man1,man3}
make ROOT=${D} install || die
}
|