summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2008-11-11 03:28:28 +0000
committerJeremy Olexa <darkside@gentoo.org>2008-11-11 03:28:28 +0000
commit7ff9d24caa91a5620898aba44533ad97b5a9c7f7 (patch)
tree900502f82edee3c8d5c8287ab4db9c3f05ab44b9 /app-admin/osiris/osiris-1.5.2-r1.ebuild
parentFix kernel build dir. bug #239189 (diff)
downloadgentoo-2-7ff9d24caa91a5620898aba44533ad97b5a9c7f7.tar.gz
gentoo-2-7ff9d24caa91a5620898aba44533ad97b5a9c7f7.tar.bz2
gentoo-2-7ff9d24caa91a5620898aba44533ad97b5a9c7f7.zip
(non maintainer commit) Version bump for bug #170498
(Portage version: 2.2_rc13/cvs/Linux 2.6.27.4 x86_64)
Diffstat (limited to 'app-admin/osiris/osiris-1.5.2-r1.ebuild')
-rw-r--r--app-admin/osiris/osiris-1.5.2-r1.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/app-admin/osiris/osiris-1.5.2-r1.ebuild b/app-admin/osiris/osiris-1.5.2-r1.ebuild
deleted file mode 100644
index 48b64e40d2c5..000000000000
--- a/app-admin/osiris/osiris-1.5.2-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/osiris/osiris-1.5.2-r1.ebuild,v 1.3 2007/01/24 14:46:42 genone 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 doc"
-
-DEPEND="mysql? ( virtual/mysql )"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- sed -i \
- -e "s:-O3 -fomit-frame-pointer:${CFLAGS}:" \
- src/crypto/*/Makefile || die "sed"
-}
-
-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.
- elog "Osiris uses gdbm by default, and will use MySQL if \"mysql\""
- elog "is set as a USE variable; it cannot be configured to use both."
-
- local myconf
- use mysql \
- && myconf="${myconf} --enable-module=mysql" \
- && sed -i -e "s:mysql.h:mysql/mysql.h:" ${S}/src/modules/module_mysql.c
- econf ${myconf} || die "./configure failed"
-
- emake || die "emake failed"
-}
-
-src_install() {
- make install DESTDIR="${D}" || die
-
- if use doc
- then
- insinto /usr/share/doc/${PF}
- dohtml docs/manual.html
- dodoc docs/manual.txt
- doins -r configs
- fi
-}