summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2004-09-18 17:26:00 +0000
committerSven Wegener <swegener@gentoo.org>2004-09-18 17:26:00 +0000
commit180b70a2d5b5c47070dca856c5c3f279437009e3 (patch)
tree4ed454868ea2d048c0cf0f81315918064c540e11 /sys-apps/dnotify
parentNew release (0.11.5) (Manifest recommit) (diff)
downloadgentoo-2-180b70a2d5b5c47070dca856c5c3f279437009e3.tar.gz
gentoo-2-180b70a2d5b5c47070dca856c5c3f279437009e3.tar.bz2
gentoo-2-180b70a2d5b5c47070dca856c5c3f279437009e3.zip
Version bump. Marked 0.16.0 stable on x86. Updated HOMEPAGE in all ebuilds.
Diffstat (limited to 'sys-apps/dnotify')
-rw-r--r--sys-apps/dnotify/ChangeLog8
-rw-r--r--sys-apps/dnotify/dnotify-0.16.0.ebuild6
-rw-r--r--sys-apps/dnotify/dnotify-0.17.1.ebuild31
-rw-r--r--sys-apps/dnotify/dnotify-0.5.0.ebuild4
-rw-r--r--sys-apps/dnotify/files/digest-dnotify-0.17.11
5 files changed, 44 insertions, 6 deletions
diff --git a/sys-apps/dnotify/ChangeLog b/sys-apps/dnotify/ChangeLog
index 0d6fd87e8530..47ad64a241a0 100644
--- a/sys-apps/dnotify/ChangeLog
+++ b/sys-apps/dnotify/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-apps/dnotify
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/ChangeLog,v 1.10 2004/07/17 23:28:07 dragonheart Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/ChangeLog,v 1.11 2004/09/18 17:26:00 swegener Exp $
+
+*dnotify-0.17.1 (18 Sep 2004)
+
+ 18 Sep 2004; Sven Wegener <swegener@gentoo.org> dnotify-0.16.0.ebuild,
+ +dnotify-0.17.1.ebuild, dnotify-0.5.0.ebuild:
+ Version bump. Marked 0.16.0 stable on x86. Updated HOMEPAGE in all ebuilds.
*dnotify-0.16.0 (18 Jul 2004)
diff --git a/sys-apps/dnotify/dnotify-0.16.0.ebuild b/sys-apps/dnotify/dnotify-0.16.0.ebuild
index 2f9b2c246842..bc2d89ba8567 100644
--- a/sys-apps/dnotify/dnotify-0.16.0.ebuild
+++ b/sys-apps/dnotify/dnotify-0.16.0.ebuild
@@ -1,11 +1,11 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/dnotify-0.16.0.ebuild,v 1.1 2004/07/17 23:28:07 dragonheart Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/dnotify-0.16.0.ebuild,v 1.2 2004/09/18 17:26:00 swegener Exp $
DESCRIPTION="Execute a command when the contents of a directory change"
SRC_URI="http://www.student.lu.se/~nbi98oli/src/${P}.tar.gz"
-HOMEPAGE="http://www.student.lu.se/~nbi98oli/"
-KEYWORDS="~x86 ~amd64 ~ppc ~sparc ~mips"
+HOMEPAGE="http://www.student.lu.se/~nbi98oli/dnotify.html"
+KEYWORDS="x86 ~amd64 ~ppc ~sparc ~mips"
IUSE="nls"
SLOT="0"
LICENSE="GPL-2"
diff --git a/sys-apps/dnotify/dnotify-0.17.1.ebuild b/sys-apps/dnotify/dnotify-0.17.1.ebuild
new file mode 100644
index 000000000000..101be14ad560
--- /dev/null
+++ b/sys-apps/dnotify/dnotify-0.17.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/dnotify-0.17.1.ebuild,v 1.1 2004/09/18 17:26:00 swegener Exp $
+
+DESCRIPTION="Execute a command when the contents of a directory change"
+SRC_URI="http://www.student.lu.se/~nbi98oli/src/${P}.tar.gz"
+HOMEPAGE="http://www.student.lu.se/~nbi98oli/dnotify.html"
+KEYWORDS="~x86 ~amd64 ~ppc ~sparc ~mips"
+IUSE="nls"
+SLOT="0"
+LICENSE="GPL-2"
+
+RDEPEND="virtual/libc"
+DEPEND="${RDEPEND}
+ sys-apps/gawk
+ sys-apps/grep
+ sys-devel/gettext"
+
+src_compile() {
+ econf $(use_enable nls) || die "failed to configure"
+ emake || die "failed to make"
+}
+
+src_install() {
+ emake DESTDIR=${D} install || die "make install failed"
+ dodoc AUTHORS TODO NEWS README || die "dodoc failed"
+}
+
+src_test() {
+ make check
+}
diff --git a/sys-apps/dnotify/dnotify-0.5.0.ebuild b/sys-apps/dnotify/dnotify-0.5.0.ebuild
index 297deaf47af5..e00bdee75606 100644
--- a/sys-apps/dnotify/dnotify-0.5.0.ebuild
+++ b/sys-apps/dnotify/dnotify-0.5.0.ebuild
@@ -1,10 +1,10 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/dnotify-0.5.0.ebuild,v 1.16 2004/07/17 23:28:07 dragonheart Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/dnotify-0.5.0.ebuild,v 1.17 2004/09/18 17:26:00 swegener Exp $
DESCRIPTION="Execute a command when the contents of a directory change"
SRC_URI="mirror://gentoo/dnotify-${PV}.tar.gz"
-HOMEPAGE="http://www.student.lu.se/~nbi98oli/"
+HOMEPAGE="http://www.student.lu.se/~nbi98oli/dnotify.html"
KEYWORDS="x86 amd64 ppc sparc mips"
IUSE=""
SLOT="0"
diff --git a/sys-apps/dnotify/files/digest-dnotify-0.17.1 b/sys-apps/dnotify/files/digest-dnotify-0.17.1
new file mode 100644
index 000000000000..79c377466b90
--- /dev/null
+++ b/sys-apps/dnotify/files/digest-dnotify-0.17.1
@@ -0,0 +1 @@
+MD5 000ace6d46018a24502c31408268a9a6 dnotify-0.17.1.tar.gz 182789