diff options
author | Wolfram Schlich <wschlich@gentoo.org> | 2006-09-10 15:17:12 +0000 |
---|---|---|
committer | Wolfram Schlich <wschlich@gentoo.org> | 2006-09-10 15:17:12 +0000 |
commit | 1b6f1371eee1969111faf1e10683e2f3cffee4d5 (patch) | |
tree | 1d5e2bcecaa159100520808f5659b554488d7432 /sys-fs/inotify-tools | |
parent | Added ~ppc. (diff) | |
download | gentoo-2-1b6f1371eee1969111faf1e10683e2f3cffee4d5.tar.gz gentoo-2-1b6f1371eee1969111faf1e10683e2f3cffee4d5.tar.bz2 gentoo-2-1b6f1371eee1969111faf1e10683e2f3cffee4d5.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.4 | 3 | ||||
-rw-r--r-- | sys-fs/inotify-tools/inotify-tools-2.4.ebuild | 21 |
3 files changed, 31 insertions, 1 deletions
diff --git a/sys-fs/inotify-tools/ChangeLog b/sys-fs/inotify-tools/ChangeLog index 345e57e02b00..4384f79c3b77 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.2 2006/08/19 16:38:34 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/inotify-tools/ChangeLog,v 1.3 2006/09/10 15:17:12 wschlich Exp $ + +*inotify-tools-2.4 (10 Sep 2006) + + 10 Sep 2006; Wolfram Schlich <wschlich@gentoo.org> + +inotify-tools-2.4.ebuild: + version bump 19 Aug 2006; Olivier Crête <tester@gentoo.org> inotify-tools-2.2.ebuild: Marked ~amd64 per bug #144428 diff --git a/sys-fs/inotify-tools/files/digest-inotify-tools-2.4 b/sys-fs/inotify-tools/files/digest-inotify-tools-2.4 new file mode 100644 index 000000000000..2f487f2b0fa0 --- /dev/null +++ b/sys-fs/inotify-tools/files/digest-inotify-tools-2.4 @@ -0,0 +1,3 @@ +MD5 dd27bea5289ac78dbd61afc5c2ebc6f3 inotify-tools-2.4.tar.gz 93875 +RMD160 dd3b0afe76b6d70bcc8da15c2418ff91546a362b inotify-tools-2.4.tar.gz 93875 +SHA256 2c668b9e21e715270b82527d3786b1e85bfdb41784a20c8403343fc561219bce inotify-tools-2.4.tar.gz 93875 diff --git a/sys-fs/inotify-tools/inotify-tools-2.4.ebuild b/sys-fs/inotify-tools/inotify-tools-2.4.ebuild new file mode 100644 index 000000000000..b99b8fb9d484 --- /dev/null +++ b/sys-fs/inotify-tools/inotify-tools-2.4.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.4.ebuild,v 1.1 2006/09/10 15:17:12 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 +} |