diff options
author | Wolfram Schlich <wschlich@gentoo.org> | 2007-02-26 23:04:48 +0000 |
---|---|---|
committer | Wolfram Schlich <wschlich@gentoo.org> | 2007-02-26 23:04:48 +0000 |
commit | 53a204193bc6b4ab73420767bffd60c0c43dafed (patch) | |
tree | 5b11444e88a364633156364f21ab9e7a35cc232b /sys-fs/inotify-tools | |
parent | shared-objects-config is used by dev-java/aterm-java ./configure so adding it... (diff) | |
download | gentoo-2-53a204193bc6b4ab73420767bffd60c0c43dafed.tar.gz gentoo-2-53a204193bc6b4ab73420767bffd60c0c43dafed.tar.bz2 gentoo-2-53a204193bc6b4ab73420767bffd60c0c43dafed.zip |
version bump
(Portage version: 2.1.2)
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.8 | 3 | ||||
-rw-r--r-- | sys-fs/inotify-tools/inotify-tools-3.8.ebuild | 21 |
3 files changed, 31 insertions, 1 deletions
diff --git a/sys-fs/inotify-tools/ChangeLog b/sys-fs/inotify-tools/ChangeLog index 8d6b3aad2414..f01f4251aa53 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.11 2007/02/06 23:11:36 wschlich Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/inotify-tools/ChangeLog,v 1.12 2007/02/26 23:04:48 wschlich Exp $ + +*inotify-tools-3.8 (26 Feb 2007) + + 26 Feb 2007; Wolfram Schlich <wschlich@gentoo.org> + +inotify-tools-3.8.ebuild: + version bump *inotify-tools-3.7 (06 Feb 2007) diff --git a/sys-fs/inotify-tools/files/digest-inotify-tools-3.8 b/sys-fs/inotify-tools/files/digest-inotify-tools-3.8 new file mode 100644 index 000000000000..c1c6c81e170d --- /dev/null +++ b/sys-fs/inotify-tools/files/digest-inotify-tools-3.8 @@ -0,0 +1,3 @@ +MD5 31f3e8f59d65a9eee4939442e097e765 inotify-tools-3.8.tar.gz 377525 +RMD160 b3e9cb3a9c25205b45400ffd03d8dfeba8153c65 inotify-tools-3.8.tar.gz 377525 +SHA256 c7eaafc24869b474513be935aeb0226b78579fe73503de88c7b1cbfbfe430c49 inotify-tools-3.8.tar.gz 377525 diff --git a/sys-fs/inotify-tools/inotify-tools-3.8.ebuild b/sys-fs/inotify-tools/inotify-tools-3.8.ebuild new file mode 100644 index 000000000000..c53079861bd6 --- /dev/null +++ b/sys-fs/inotify-tools/inotify-tools-3.8.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.8.ebuild,v 1.1 2007/02/26 23:04:48 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 +} |