* [gentoo-commits] gentoo-x86 commit in app-admin/tripwire: tripwire-2.4.1.2.ebuild ChangeLog
@ 2009-01-04 19:28 Patrick Lauer (patrick)
0 siblings, 0 replies; 3+ messages in thread
From: Patrick Lauer (patrick) @ 2009-01-04 19:28 UTC (permalink / raw
To: gentoo-commits
patrick 09/01/04 19:28:01
Modified: ChangeLog
Added: tripwire-2.4.1.2.ebuild
Log:
Bump to 2.4.1.2, fixes #189661
(Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
Revision Changes Path
1.28 app-admin/tripwire/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/ChangeLog?r1=1.27&r2=1.28
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/tripwire/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog 18 Jun 2008 02:57:18 -0000 1.27
+++ ChangeLog 4 Jan 2009 19:28:01 -0000 1.28
@@ -1,6 +1,11 @@
# ChangeLog for app-admin/tripwire
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/ChangeLog,v 1.27 2008/06/18 02:57:18 darkside Exp $
+# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/ChangeLog,v 1.28 2009/01/04 19:28:01 patrick Exp $
+
+*tripwire-2.4.1.2 (04 Jan 2009)
+
+ 04 Jan 2009; Patrick Lauer <patrick@gentoo.org> +tripwire-2.4.1.2.ebuild:
+ Bump to 2.4.1.2, fixes #189661
18 Jun 2008; Jeremy Olexa <darkside@gentoo.org>
tripwire-2.3.1.2-r2.ebuild:
1.1 app-admin/tripwire/tripwire-2.4.1.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild?rev=1.1&content-type=text/plain
Index: tripwire-2.4.1.2.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild,v 1.1 2009/01/04 19:28:01 patrick Exp $
inherit eutils flag-o-matic autotools
TW_VER="2.3.1-2"
DESCRIPTION="Open Source File Integrity Checker and IDS"
HOMEPAGE="http://www.tripwire.org/"
SRC_URI="mirror://sourceforge/tripwire/tripwire-${TW_VER}.tar.gz
mirror://gentoo/tripwire-2.3.1-2-pherman-portability-0.9.diff.bz2
mirror://gentoo/twpol.txt.gz
mirror://gentoo/tripwire.gif"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="ssl"
DEPEND="virtual/libc
sys-devel/automake
sys-devel/autoconf
dev-util/patchutils
ssl? ( dev-libs/openssl )"
RDEPEND="virtual/libc
virtual/cron
virtual/mta
ssl? ( dev-libs/openssl )"
S=${WORKDIR}/tripwire-${TW_VER}
src_unpack() {
# unpack tripwire source tarball
unpack tripwire-${TW_VER}.tar.gz
unpack twpol.txt.gz
cd ${S}
# Paul Herman has been maintaining some updates to tripwire
# including autoconf support and portability fixes.
# http://www.frenchfries.net/paul/tripwire/
export EPATCH_OPTS="-F3 -l"
epatch ${FILESDIR}/tripwire-friend-classes.patch
epatch ${DISTDIR}/tripwire-2.3.1-2-pherman-portability-0.9.diff.bz2
epatch ${FILESDIR}/tripwire-2.3.0-50-rfc822.patch
eautoreconf || die "eautoreconf failed"
}
src_compile() {
# tripwire can be sensitive to compiler optimisation.
# see #32613, #45823, and others.
# -taviso@gentoo.org
strip-flags
append-flags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
ebegin " Preparing Directory"
mkdir ${S}/lib ${S}/bin || die
eend
einfo "Done."
chmod +x configure
econf `use_enable ssl openssl` || die
emake || die
}
src_install() {
dosbin ${S}/bin/{siggen,tripwire,twadmin,twprint}
doman ${S}/man/man{4/*.4,5/*.5,8/*.8}
dodir /etc/tripwire /var/lib/tripwire{,/report}
keepdir /var/lib/tripwire{,/report}
exeinto /etc/cron.daily
doexe ${FILESDIR}/tripwire.cron
dodoc README Release_Notes ChangeLog policy/policyguide.txt TRADEMARK \
${FILESDIR}/tripwire.txt
insinto /etc/tripwire
doins ${WORKDIR}/twpol.txt ${FILESDIR}/twcfg.txt
exeinto /etc/tripwire
doexe ${FILESDIR}/twinstall.sh
fperms 755 /etc/tripwire/twinstall.sh /etc/cron.daily/tripwire.cron
}
pkg_postinst() {
elog "After installing this package, you should run \"/etc/tripwire/twinstall.sh\""
elog "to generate cryptographic keys, and \"tripwire --init\" to initialize the"
elog "database Tripwire uses."
elog
elog "A quickstart guide is included with the documentation."
elog
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-admin/tripwire: tripwire-2.4.1.2.ebuild ChangeLog
@ 2009-07-31 9:20 Mounir Lamouri (volkmar)
0 siblings, 0 replies; 3+ messages in thread
From: Mounir Lamouri (volkmar) @ 2009-07-31 9:20 UTC (permalink / raw
To: gentoo-commits
volkmar 09/07/31 09:20:08
Modified: tripwire-2.4.1.2.ebuild ChangeLog
Log:
Add static USE flag.
Bug 131816.
Thanks to Eric Martin.
(Portage version: 13856-svn/cvs/Linux i686)
Revision Changes Path
1.2 app-admin/tripwire/tripwire-2.4.1.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild?r1=1.1&r2=1.2
Index: tripwire-2.4.1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- tripwire-2.4.1.2.ebuild 4 Jan 2009 19:28:01 -0000 1.1
+++ tripwire-2.4.1.2.ebuild 31 Jul 2009 09:20:08 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild,v 1.1 2009/01/04 19:28:01 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild,v 1.2 2009/07/31 09:20:08 volkmar Exp $
inherit eutils flag-o-matic autotools
@@ -15,7 +15,7 @@
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
-IUSE="ssl"
+IUSE="ssl static"
DEPEND="virtual/libc
sys-devel/automake
@@ -58,7 +58,7 @@
eend
einfo "Done."
chmod +x configure
- econf `use_enable ssl openssl` || die
+ econf $(use_enable ssl openssl) $(use_enable static)
emake || die
}
1.29 app-admin/tripwire/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/ChangeLog?r1=1.28&r2=1.29
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/tripwire/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog 4 Jan 2009 19:28:01 -0000 1.28
+++ ChangeLog 31 Jul 2009 09:20:08 -0000 1.29
@@ -1,6 +1,9 @@
# ChangeLog for app-admin/tripwire
# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/ChangeLog,v 1.28 2009/01/04 19:28:01 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/ChangeLog,v 1.29 2009/07/31 09:20:08 volkmar Exp $
+
+ 31 Jul 2009; Mounir Lamouri <volkmar@gentoo.org> tripwire-2.4.1.2.ebuild:
+ Add static USE flag. Fix bug 131816. Thanks to Eric Martin.
*tripwire-2.4.1.2 (04 Jan 2009)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-admin/tripwire: tripwire-2.4.1.2.ebuild ChangeLog
@ 2009-11-19 13:10 Dawid Weglinski (cla)
0 siblings, 0 replies; 3+ messages in thread
From: Dawid Weglinski (cla) @ 2009-11-19 13:10 UTC (permalink / raw
To: gentoo-commits
cla 09/11/19 13:10:42
Modified: tripwire-2.4.1.2.ebuild ChangeLog
Log:
Drop EPATCH_OPTS as they are not longer needed and make problems with patch-2.6 (bug #293248)
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Revision Changes Path
1.5 app-admin/tripwire/tripwire-2.4.1.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild?r1=1.4&r2=1.5
Index: tripwire-2.4.1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- tripwire-2.4.1.2.ebuild 11 Oct 2009 23:59:13 -0000 1.4
+++ tripwire-2.4.1.2.ebuild 19 Nov 2009 13:10:42 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild,v 1.4 2009/10/11 23:59:13 halcy0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/tripwire-2.4.1.2.ebuild,v 1.5 2009/11/19 13:10:42 cla Exp $
inherit eutils flag-o-matic autotools
@@ -36,7 +36,6 @@
# Paul Herman has been maintaining some updates to tripwire
# including autoconf support and portability fixes.
# http://www.frenchfries.net/paul/tripwire/
- export EPATCH_OPTS="-F3 -l"
epatch "${FILESDIR}"/tripwire-friend-classes.patch
epatch "${DISTDIR}"/tripwire-2.3.1-2-pherman-portability-0.9.diff.bz2
epatch "${FILESDIR}"/tripwire-2.3.0-50-rfc822.patch
1.32 app-admin/tripwire/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tripwire/ChangeLog?r1=1.31&r2=1.32
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/tripwire/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog 11 Oct 2009 23:59:13 -0000 1.31
+++ ChangeLog 19 Nov 2009 13:10:42 -0000 1.32
@@ -1,6 +1,10 @@
# ChangeLog for app-admin/tripwire
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/ChangeLog,v 1.31 2009/10/11 23:59:13 halcy0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/tripwire/ChangeLog,v 1.32 2009/11/19 13:10:42 cla Exp $
+
+ 19 Nov 2009; Dawid Węgliński <cla@gentoo.org> tripwire-2.4.1.2.ebuild:
+ Drop EPATCH_OPTS as they are not longer needed and make problems with
+ patch-2.6 (bug #293248)
11 Oct 2009; Mark Loeser <halcy0n@gentoo.org> tripwire-2.3.1.2-r1.ebuild,
tripwire-2.3.1.2-r2.ebuild, tripwire-2.4.1.2.ebuild:
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-11-19 13:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-31 9:20 [gentoo-commits] gentoo-x86 commit in app-admin/tripwire: tripwire-2.4.1.2.ebuild ChangeLog Mounir Lamouri (volkmar)
-- strict thread matches above, loose matches on Subject: below --
2009-11-19 13:10 Dawid Weglinski (cla)
2009-01-04 19:28 Patrick Lauer (patrick)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox