summaryrefslogtreecommitdiff
blob: 03fc92293a6a49d60a6a832700b437946ea853c4 (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
44
45
46
47
48
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/osiris/osiris-1.5.1b.ebuild,v 1.6 2003/09/23 20:20:55 aliz Exp $


DESCRIPTION="File integrity verification system"
HOMEPAGE="http://osiris.shmoo.com/"
SRC_URI="http://osiris.shmoo.com/data/${P}.tar.gz"
LICENSE="OSIRIS"

SLOT="0"
KEYWORDS="x86 -ppc"

IUSE="mysql"
DEPEND="mysql? ( >=mysql-3.23.54a )"


src_compile() {

	# Osiris provides the necessary gdbm source so that gdbm does not
	# need to be installed to use Osiris. If mysql is set as a USE
	# variable, Osiris will use mysql instead of gdbm.

	einfo "Osiris uses gdbm by default, and will use MySQL if \"mysql\""
	einfo "is set as a USE variable; it cannot be configured to use both."

	local myconf
	use mysql && myconf="${myconf} --enable-module=mysql"

	# The mysql module searches for the mysql.h file in the wrong place
	# sed line replaces it with the proper path (mysql/mysql.h)

	use mysql && sed -i -e "s:mysql.h:mysql/mysql.h:" \
				${S}/src/modules/module_mysql.c

	./configure \
		--host=${CHOST} \
		--prefix=/usr \
		--infodir=/usr/share/info \
		--mandir=/usr/share/man \
		${myconf} || die "./configure failed"

	emake || die
}

src_install() {
	einstall
}