summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcelo Góes <vanquirius@gentoo.org>2005-05-17 19:19:04 +0000
committerMarcelo Góes <vanquirius@gentoo.org>2005-05-17 19:19:04 +0000
commite22a147b6e136d8911c88ba42f240b32814ea296 (patch)
treee5d0bf5152b014c7f2747fed576caed8d4ce32a3 /dev-libs/libpreludedb
parentpermission changes (diff)
downloadhistorical-e22a147b6e136d8911c88ba42f240b32814ea296.tar.gz
historical-e22a147b6e136d8911c88ba42f240b32814ea296.tar.bz2
historical-e22a147b6e136d8911c88ba42f240b32814ea296.zip
minor fix
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'dev-libs/libpreludedb')
-rw-r--r--dev-libs/libpreludedb/ChangeLog6
-rw-r--r--dev-libs/libpreludedb/files/digest-libpreludedb-0.9.0_rc31
-rw-r--r--dev-libs/libpreludedb/libpreludedb-0.9.0_rc3.ebuild47
-rw-r--r--dev-libs/libpreludedb/libpreludedb-0.9.0_rc5.ebuild4
4 files changed, 7 insertions, 51 deletions
diff --git a/dev-libs/libpreludedb/ChangeLog b/dev-libs/libpreludedb/ChangeLog
index 71b4f0d898e0..5ff8f380e413 100644
--- a/dev-libs/libpreludedb/ChangeLog
+++ b/dev-libs/libpreludedb/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/libpreludedb
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpreludedb/ChangeLog,v 1.2 2005/05/07 20:02:53 vanquirius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpreludedb/ChangeLog,v 1.3 2005/05/17 19:19:04 vanquirius Exp $
+
+ 17 May 2005; Marcelo Goes <vanquirius@gentoo.org>
+ -libpreludedb-0.9.0_rc3.ebuild, libpreludedb-0.9.0_rc5.ebuild:
+ Remove old ebuild, use make install instead of emake install.
*libpreludedb-0.9.0_rc5 (07 May 2005)
diff --git a/dev-libs/libpreludedb/files/digest-libpreludedb-0.9.0_rc3 b/dev-libs/libpreludedb/files/digest-libpreludedb-0.9.0_rc3
deleted file mode 100644
index 5aa6ca933848..000000000000
--- a/dev-libs/libpreludedb/files/digest-libpreludedb-0.9.0_rc3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 d9db3c66f12a6d0fd46025f812214364 libpreludedb-0.9.0-rc3.tar.gz 488878
diff --git a/dev-libs/libpreludedb/libpreludedb-0.9.0_rc3.ebuild b/dev-libs/libpreludedb/libpreludedb-0.9.0_rc3.ebuild
deleted file mode 100644
index e85c365cefe6..000000000000
--- a/dev-libs/libpreludedb/libpreludedb-0.9.0_rc3.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpreludedb/libpreludedb-0.9.0_rc3.ebuild,v 1.1 2005/04/01 23:01:33 vanquirius Exp $
-
-inherit versionator
-
-MY_P="${PN}-$(replace_version_separator 3 '-')"
-DESCRIPTION="Prelude-IDS framework for easy access to the Prelude database"
-HOMEPAGE="http://www.prelude-ids.org/"
-SRC_URI="http://www.prelude-ids.org/download/releases/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="debug doc mysql postgres perl python"
-
-DEPEND="virtual/libc
- >=dev-libs/libprelude-0.9.0_rc1
- doc? ( dev-util/gtk-doc )
- mysql? ( dev-db/mysql )
- postgres? ( dev-db/postgresql )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_compile() {
- local myconf
-
- use debug && append-flags -O -ggdb
- use doc && myconf="${myconf} --enable-gtk-doc" || myconf="${myconf} --enable-gtk-doc=no"
- use mysql && myconf="${myconf} --enable-mysql" || myconf="${myconf} --enable-mysql=no"
- use postgres && myconf="${myconf} --enable-postgresql" || myconf="${myconf} --enable-postgresql=no"
- use perl && myconf="${myconf} --enable-perl" || myconf="${myconf} --enable-perl=no"
- use python && myconf="${myconf} --enable-python" || myconf="${myconf} --enable-python=no"
- econf ${myconf} || die "econf failed"
-
- emake -j1 || die "emake failed"
- # -j1 may not be necessary in the future
-}
-
-src_install() {
- emake DESTDIR=${D} install || die "emake install failed"
-}
-
-pkg_postinst() {
- einfo "For additional installation instructions go to"
- einfo "https://trac.prelude-ids.org/wiki/InstallingLibpreludedb"
-}
diff --git a/dev-libs/libpreludedb/libpreludedb-0.9.0_rc5.ebuild b/dev-libs/libpreludedb/libpreludedb-0.9.0_rc5.ebuild
index 0fc55176ee11..645e05797464 100644
--- a/dev-libs/libpreludedb/libpreludedb-0.9.0_rc5.ebuild
+++ b/dev-libs/libpreludedb/libpreludedb-0.9.0_rc5.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpreludedb/libpreludedb-0.9.0_rc5.ebuild,v 1.1 2005/05/07 20:02:53 vanquirius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpreludedb/libpreludedb-0.9.0_rc5.ebuild,v 1.2 2005/05/17 19:19:04 vanquirius Exp $
inherit versionator
@@ -38,7 +38,7 @@ src_compile() {
}
src_install() {
- emake DESTDIR=${D} install || die "emake install failed"
+ make DESTDIR=${D} install || die "make install failed"
}
pkg_postinst() {