summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé María Alonso <nimiux@gentoo.org>2013-09-25 08:31:58 +0000
committerJosé María Alonso <nimiux@gentoo.org>2013-09-25 08:31:58 +0000
commit7a95c7e2fb331ce3407c25a9daa6945c726a4eed (patch)
tree11b08837b42504b0596729966650d78528c95ba5 /app-admin/mktwpol
parentVersion bump, wrt bug #485890 (diff)
downloadgentoo-2-7a95c7e2fb331ce3407c25a9daa6945c726a4eed.tar.gz
gentoo-2-7a95c7e2fb331ce3407c25a9daa6945c726a4eed.tar.bz2
gentoo-2-7a95c7e2fb331ce3407c25a9daa6945c726a4eed.zip
Version bump
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key D628E536)
Diffstat (limited to 'app-admin/mktwpol')
-rw-r--r--app-admin/mktwpol/ChangeLog7
-rw-r--r--app-admin/mktwpol/mktwpol-0.2.0.ebuild34
2 files changed, 40 insertions, 1 deletions
diff --git a/app-admin/mktwpol/ChangeLog b/app-admin/mktwpol/ChangeLog
index 8c5ec06fd392..1d4f0e8d4b36 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.4 2013/09/18 10:26:05 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/mktwpol/ChangeLog,v 1.5 2013/09/25 08:31:58 nimiux Exp $
+
+*mktwpol-0.2.0 (25 Sep 2013)
+
+ 25 Sep 2013; Chema Alonso <nimiux@gentoo.org> +mktwpol-0.2.0.ebuild:
+ Version bump
18 Sep 2013; Chema Alonso <nimiux@gentoo.org> mktwpol-0.1.5.ebuild:
Better description of the package
diff --git a/app-admin/mktwpol/mktwpol-0.2.0.ebuild b/app-admin/mktwpol/mktwpol-0.2.0.ebuild
new file mode 100644
index 000000000000..9a763bc1771b
--- /dev/null
+++ b/app-admin/mktwpol/mktwpol-0.2.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/mktwpol/mktwpol-0.2.0.ebuild,v 1.1 2013/09/25 08:31:58 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
+}