diff options
author | Wolfram Schlich <wschlich@gentoo.org> | 2007-09-20 23:23:11 +0000 |
---|---|---|
committer | Wolfram Schlich <wschlich@gentoo.org> | 2007-09-20 23:23:11 +0000 |
commit | d6ec6881670bf45e0bddc09fff3ab972b1cbd8db (patch) | |
tree | b74845606c5b5101eadc546e655365aadf230df1 /sys-fs/inotify-tools | |
parent | Remove vulnerable NX 2.1 versions, security bug #192712 (diff) | |
download | gentoo-2-d6ec6881670bf45e0bddc09fff3ab972b1cbd8db.tar.gz gentoo-2-d6ec6881670bf45e0bddc09fff3ab972b1cbd8db.tar.bz2 gentoo-2-d6ec6881670bf45e0bddc09fff3ab972b1cbd8db.zip |
version bump wrt bug #193173
(Portage version: 2.1.3.7)
Diffstat (limited to 'sys-fs/inotify-tools')
-rw-r--r-- | sys-fs/inotify-tools/ChangeLog | 8 | ||||
-rw-r--r-- | sys-fs/inotify-tools/files/digest-inotify-tools-3.11 | 3 | ||||
-rw-r--r-- | sys-fs/inotify-tools/inotify-tools-3.11.ebuild | 21 |
3 files changed, 31 insertions, 1 deletions
diff --git a/sys-fs/inotify-tools/ChangeLog b/sys-fs/inotify-tools/ChangeLog index fea232bc5d93..b6e84e206ebe 100644 --- a/sys-fs/inotify-tools/ChangeLog +++ b/sys-fs/inotify-tools/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-fs/inotify-tools # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/inotify-tools/ChangeLog,v 1.14 2007/07/22 15:41:48 wschlich Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/inotify-tools/ChangeLog,v 1.15 2007/09/20 23:23:10 wschlich Exp $ + +*inotify-tools-3.11 (20 Sep 2007) + + 20 Sep 2007; Wolfram Schlich <wschlich@gentoo.org> + +inotify-tools-3.11.ebuild: + version bump wrt bug #193173 *inotify-tools-3.10 (22 Jul 2007) diff --git a/sys-fs/inotify-tools/files/digest-inotify-tools-3.11 b/sys-fs/inotify-tools/files/digest-inotify-tools-3.11 new file mode 100644 index 000000000000..0680e3eb9bd1 --- /dev/null +++ b/sys-fs/inotify-tools/files/digest-inotify-tools-3.11 @@ -0,0 +1,3 @@ +MD5 b7d19c6ee91e628de4e0105aebd2494d inotify-tools-3.11.tar.gz 388872 +RMD160 7833377960654fb5e88b3e62b3ced011ff16f5b7 inotify-tools-3.11.tar.gz 388872 +SHA256 4d8d2aa30fd9a54d64a9a2bdb491d138ab246b9b8834f688980d5f1a6e3c8660 inotify-tools-3.11.tar.gz 388872 diff --git a/sys-fs/inotify-tools/inotify-tools-3.11.ebuild b/sys-fs/inotify-tools/inotify-tools-3.11.ebuild new file mode 100644 index 000000000000..bd7bb4ba25b4 --- /dev/null +++ b/sys-fs/inotify-tools/inotify-tools-3.11.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/inotify-tools/inotify-tools-3.11.ebuild,v 1.1 2007/09/20 23:23:10 wschlich Exp $ + +DESCRIPTION="a set of command-line programs providing a simple interface to inotify" +HOMEPAGE="http://inotify-tools.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +DEPEND="virtual/libc" + +src_compile() { + econf || die "configure failed" + emake || die "make failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc NEWS AUTHORS +} |