blob: ca792ab6c38d72a64b21a2a080d397694fefd11a (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/liblockfile/liblockfile-1.06.ebuild,v 1.9 2005/06/23 10:19:06 plasmaroo Exp $
inherit eutils multilib
DESCRIPTION="Implements functions designed to lock the standard mailboxes."
SRC_URI="mirror://debian/pool/main/libl/${PN}/${PN}_${PV}.tar.gz"
HOMEPAGE="http://www.debian.org"
DEPEND="virtual/libc"
SLOT="0"
LICENSE="LGPL-2"
KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86"
IUSE=""
src_compile() {
# Do not use lazy bindings on setXid files
sed -i -e 's~-o dotlockfile~-Wl,-z,now &~g' Makefile.in
econf --with-mailgroup=mail --enable-shared || die
emake || die
}
src_install() {
dodir /usr/{bin,include,$(get_libdir)} /usr/share/man/{man1,man3}
make ROOT=${D} install || die
}
|