diff options
author | José María Alonso <nimiux@gentoo.org> | 2014-02-04 09:50:46 +0000 |
---|---|---|
committer | José María Alonso <nimiux@gentoo.org> | 2014-02-04 09:50:46 +0000 |
commit | 267c776559478176ca473c9dd372fc5b58549d83 (patch) | |
tree | dc981a296c38e638cc140c337a94dd1bdcff82ed /app-admin/mktwpol | |
parent | Add missing die and use usex; user proper autotools-utils functions (diff) | |
download | gentoo-2-267c776559478176ca473c9dd372fc5b58549d83.tar.gz gentoo-2-267c776559478176ca473c9dd372fc5b58549d83.tar.bz2 gentoo-2-267c776559478176ca473c9dd372fc5b58549d83.zip |
Bump to version 0.2.2
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key D628E536)
Diffstat (limited to 'app-admin/mktwpol')
-rw-r--r-- | app-admin/mktwpol/ChangeLog | 9 | ||||
-rw-r--r-- | app-admin/mktwpol/mktwpol-0.2.2.ebuild | 34 |
2 files changed, 41 insertions, 2 deletions
diff --git a/app-admin/mktwpol/ChangeLog b/app-admin/mktwpol/ChangeLog index 2b6905d21d9e..39a837b0b827 100644 --- a/app-admin/mktwpol/ChangeLog +++ b/app-admin/mktwpol/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-admin/mktwpol -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/mktwpol/ChangeLog,v 1.6 2013/09/25 08:33:52 nimiux Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/mktwpol/ChangeLog,v 1.7 2014/02/04 09:50:46 nimiux Exp $ + +*mktwpol-0.2.2 (04 Feb 2014) + + 04 Feb 2014; Chema Alonso <nimiux@gentoo.org> +mktwpol-0.2.2.ebuild: + Version bump 25 Sep 2013; Chema Alonso <nimiux@gentoo.org> -mktwpol-0.1.5.ebuild: Drop old diff --git a/app-admin/mktwpol/mktwpol-0.2.2.ebuild b/app-admin/mktwpol/mktwpol-0.2.2.ebuild new file mode 100644 index 000000000000..2ac09ec7a805 --- /dev/null +++ b/app-admin/mktwpol/mktwpol-0.2.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/mktwpol/mktwpol-0.2.2.ebuild,v 1.1 2014/02/04 09:50:46 nimiux Exp $ + +EAPI=5 + +DESCRIPTION="Bash scripts to install tripwire and generate tripwire policy files" +HOMEPAGE="https://sourceforge.net/projects/mktwpol" +SRC_URI="mirror://sourceforge/mktwpol/${P}.tar.gz" + +LICENSE="CC-BY-SA-3.0" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND="app-admin/tripwire" + +src_prepare() { + sed -i -e 's|/usr/local|/usr|' Makefile || die +} + +src_install() { + emake DESTDIR="${D}" install +} + +pkg_postinst() { + elog + elog "Installation and setup of tripwire ..." + elog " - Run: \`twsetup.sh\`" + elog + elog "Maintenance of tripwire as packages are added and/or deleted ..." + elog " - Run: \`mktwpol.sh -u\` to update tripwire policy and database" + elog +} |