summaryrefslogtreecommitdiff
blob: 9fbc31456809d2865061f3b7e672ba888c894b9c (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
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/slidentd/slidentd-1.0.0.ebuild,v 1.10 2007/02/22 16:05:51 bangert Exp $

DESCRIPTION="A secure, lightweight ident daemon"
HOMEPAGE="http://www.uncarved.com/static/slidentd/"
SRC_URI="http://www.uncarved.com/static/slidentd/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc sparc x86"
IUSE=""

DEPEND="dev-libs/libowfat"
RDEPEND="${DEPEND}
	virtual/inetd"

src_unpack() {
#		-e "/^normal_cflags/s:=.*:=-DNDEBUG ${CFLAGS} -I/usr/include/libowfat:" \
	unpack ${A}
	cd "${S}"
	sed -i \
		-e "/^diet_cflags/s:=.*:=-DNDEBUG ${CFLAGS} -I/usr/include/libowfat -static:" \
		-e '/ALL=/s:stripobjects::' \
		-e '/ALL=/s:strip::' \
		Makefile || die
}

src_compile() {
	emake -j1 build_mode=diet || die
}

src_install () {
	make DESTDIR="${D}" install || die

	exeinto /var/lib/supervise/slidentd
	newexe "${FILESDIR}"/slidentd-run run
}

pkg_postinst() {
	elog "You need to start your supervise service:"
	elog '# ln -s /var/lib/supervise/slidentd /service/'
}