diff options
author | Wolfram Schlich <wschlich@gentoo.org> | 2006-10-08 19:31:31 +0000 |
---|---|---|
committer | Wolfram Schlich <wschlich@gentoo.org> | 2006-10-08 19:31:31 +0000 |
commit | 7fc0ca7178e656c0f2a6ca94dc073cb361b9275f (patch) | |
tree | c96b7c59efdca2abbe2bfbeaa604af898d43f682 /sys-fs/inotify-tools | |
parent | version bump (diff) | |
download | gentoo-2-7fc0ca7178e656c0f2a6ca94dc073cb361b9275f.tar.gz gentoo-2-7fc0ca7178e656c0f2a6ca94dc073cb361b9275f.tar.bz2 gentoo-2-7fc0ca7178e656c0f2a6ca94dc073cb361b9275f.zip |
version bump
(Portage version: 2.1.1_pre4-r3)
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-2.6 | 3 | ||||
-rw-r--r-- | sys-fs/inotify-tools/inotify-tools-2.6.ebuild | 21 |
3 files changed, 31 insertions, 1 deletions
diff --git a/sys-fs/inotify-tools/ChangeLog b/sys-fs/inotify-tools/ChangeLog index 4384f79c3b77..ee51da4c8334 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-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/inotify-tools/ChangeLog,v 1.3 2006/09/10 15:17:12 wschlich Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/inotify-tools/ChangeLog,v 1.4 2006/10/08 19:31:31 wschlich Exp $ + +*inotify-tools-2.6 (08 Oct 2006) + + 08 Oct 2006; Wolfram Schlich <wschlich@gentoo.org> + +inotify-tools-2.6.ebuild: + version bump *inotify-tools-2.4 (10 Sep 2006) diff --git a/sys-fs/inotify-tools/files/digest-inotify-tools-2.6 b/sys-fs/inotify-tools/files/digest-inotify-tools-2.6 new file mode 100644 index 000000000000..2da87bc93453 --- /dev/null +++ b/sys-fs/inotify-tools/files/digest-inotify-tools-2.6 @@ -0,0 +1,3 @@ +MD5 4e3f876c4bac9d3cb520d81810832906 inotify-tools-2.6.tar.gz 93711 +RMD160 ac6fcd761e6e16535a54334812e0fcd4d1dfea2b inotify-tools-2.6.tar.gz 93711 +SHA256 ff77e1c4b76d5e232248a98443985417d3b753c174a256d177419d2937a90cf5 inotify-tools-2.6.tar.gz 93711 diff --git a/sys-fs/inotify-tools/inotify-tools-2.6.ebuild b/sys-fs/inotify-tools/inotify-tools-2.6.ebuild new file mode 100644 index 000000000000..599f02651cca --- /dev/null +++ b/sys-fs/inotify-tools/inotify-tools-2.6.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/inotify-tools/inotify-tools-2.6.ebuild,v 1.1 2006/10/08 19:31:31 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 +} |