diff options
author | Simon Stelling <blubb@gentoo.org> | 2006-01-27 17:35:52 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2006-01-27 17:35:52 +0000 |
commit | 061ac3af77f25a9f4650b708fd2a5da36a7af992 (patch) | |
tree | 4332118d357e8bdf7664791bd7c298008fc309ac /sys-apps/dnotify | |
parent | Fix modular X deps. (diff) | |
download | gentoo-2-061ac3af77f25a9f4650b708fd2a5da36a7af992.tar.gz gentoo-2-061ac3af77f25a9f4650b708fd2a5da36a7af992.tar.bz2 gentoo-2-061ac3af77f25a9f4650b708fd2a5da36a7af992.zip |
fix problem stated in bug 118108 comment 6
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'sys-apps/dnotify')
-rw-r--r-- | sys-apps/dnotify/ChangeLog | 6 | ||||
-rw-r--r-- | sys-apps/dnotify/dnotify-0.18.0.ebuild | 11 | ||||
-rw-r--r-- | sys-apps/dnotify/files/dnotify-0.18.0-nls.patch | 10 |
3 files changed, 25 insertions, 2 deletions
diff --git a/sys-apps/dnotify/ChangeLog b/sys-apps/dnotify/ChangeLog index e84164f06d67..8096f317f011 100644 --- a/sys-apps/dnotify/ChangeLog +++ b/sys-apps/dnotify/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-apps/dnotify # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/ChangeLog,v 1.20 2006/01/27 15:41:47 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/ChangeLog,v 1.21 2006/01/27 17:35:52 blubb Exp $ + + 27 Jan 2006; Simon Stelling <blubb@gentoo.org> + +files/dnotify-0.18.0-nls.patch, dnotify-0.18.0.ebuild: + fix problem stated in bug 118108 comment 6 27 Jan 2006; Simon Stelling <blubb@gentoo.org> dnotify-0.18.0.ebuild: stable on amd64 diff --git a/sys-apps/dnotify/dnotify-0.18.0.ebuild b/sys-apps/dnotify/dnotify-0.18.0.ebuild index 662b20a1d35f..e692acaa77bf 100644 --- a/sys-apps/dnotify/dnotify-0.18.0.ebuild +++ b/sys-apps/dnotify/dnotify-0.18.0.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/dnotify-0.18.0.ebuild,v 1.7 2006/01/27 15:41:47 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dnotify/dnotify-0.18.0.ebuild,v 1.8 2006/01/27 17:35:52 blubb Exp $ + +inherit eutils DESCRIPTION="Execute a command when the contents of a directory change" HOMEPAGE="http://oskarsapps.mine.nu/dnotify.html" @@ -13,6 +15,13 @@ IUSE="nls" DEPEND="nls? ( sys-devel/gettext )" +src_unpack() { + unpack ${A} + cd ${S} + + epatch ${FILESDIR}/${P}-nls.patch +} + src_compile() { econf $(use_enable nls) || die "failed to configure" emake || die "failed to make" diff --git a/sys-apps/dnotify/files/dnotify-0.18.0-nls.patch b/sys-apps/dnotify/files/dnotify-0.18.0-nls.patch new file mode 100644 index 000000000000..7721ac1ee411 --- /dev/null +++ b/sys-apps/dnotify/files/dnotify-0.18.0-nls.patch @@ -0,0 +1,10 @@ +--- src/gettext.h.orig 2006-01-27 18:23:31.000000000 +0100 ++++ src/gettext.h 2006-01-27 18:25:07.000000000 +0100 +@@ -24,6 +24,7 @@ + + /* Get declarations of GNU message catalog functions. */ + # include <libintl.h> ++# include <locale.h> + + #else + |