diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-06-21 11:56:20 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-06-21 11:56:20 +0000 |
commit | 25d5611d7e467924f9346ff263cace61bf0e7773 (patch) | |
tree | 4ac943c11286e84da2ec2a6ed84e94f14020561f /x11-plugins/wmstickynotes | |
parent | Add net-im/err, bug 421373. Thanks to Pinkbyte (diff) | |
download | gentoo-2-25d5611d7e467924f9346ff263cace61bf0e7773.tar.gz gentoo-2-25d5611d7e467924f9346ff263cace61bf0e7773.tar.bz2 gentoo-2-25d5611d7e467924f9346ff263cace61bf0e7773.zip |
x11-plugins/wmstickynotes: Add underlinking fix, #369205
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'x11-plugins/wmstickynotes')
-rw-r--r-- | x11-plugins/wmstickynotes/ChangeLog | 8 | ||||
-rw-r--r-- | x11-plugins/wmstickynotes/files/wmstickynotes-0.2-gold.patch | 28 | ||||
-rw-r--r-- | x11-plugins/wmstickynotes/wmstickynotes-0.2.ebuild | 10 |
3 files changed, 42 insertions, 4 deletions
diff --git a/x11-plugins/wmstickynotes/ChangeLog b/x11-plugins/wmstickynotes/ChangeLog index 732df5592074..62707c516e5d 100644 --- a/x11-plugins/wmstickynotes/ChangeLog +++ b/x11-plugins/wmstickynotes/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-plugins/wmstickynotes -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmstickynotes/ChangeLog,v 1.4 2011/05/07 13:05:13 jlec Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmstickynotes/ChangeLog,v 1.5 2012/06/21 11:56:20 jlec Exp $ + + 21 Jun 2012; Justin Lecher <jlec@gentoo.org> wmstickynotes-0.2.ebuild, + +files/wmstickynotes-0.2-gold.patch: + Add underlinking fix, #369205 *wmstickynotes-0.2 (07 May 2011) diff --git a/x11-plugins/wmstickynotes/files/wmstickynotes-0.2-gold.patch b/x11-plugins/wmstickynotes/files/wmstickynotes-0.2-gold.patch new file mode 100644 index 000000000000..360140a85ed6 --- /dev/null +++ b/x11-plugins/wmstickynotes/files/wmstickynotes-0.2-gold.patch @@ -0,0 +1,28 @@ + Makefile.am | 2 +- + Makefile.in | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Makefile.am b/Makefile.am +index 7c69428..bccf1d4 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -10,5 +10,5 @@ AUTOMAKE_OPTIONS = gnu + bin_PROGRAMS = wmstickynotes + wmstickynotes_SOURCES = wmstickynotes.c wmstickynotes.h wmstickynotes.xpm delete_button.xpm resize_button.xpm + +-wmstickynotes_LDADD = @GTK_LIBS@ ++wmstickynotes_LDADD = @GTK_LIBS@ -lX11 + EXTRA_DIST = THANKS +diff --git a/Makefile.in b/Makefile.in +index 91b19bd..fd883f2 100644 +--- a/Makefile.in ++++ b/Makefile.in +@@ -182,7 +182,7 @@ top_srcdir = @top_srcdir@ + AM_CFLAGS = @GTK_CFLAGS@ + AUTOMAKE_OPTIONS = gnu + wmstickynotes_SOURCES = wmstickynotes.c wmstickynotes.h wmstickynotes.xpm delete_button.xpm resize_button.xpm +-wmstickynotes_LDADD = @GTK_LIBS@ ++wmstickynotes_LDADD = @GTK_LIBS@ -lX11 + EXTRA_DIST = THANKS + all: config.h + $(MAKE) $(AM_MAKEFLAGS) all-am diff --git a/x11-plugins/wmstickynotes/wmstickynotes-0.2.ebuild b/x11-plugins/wmstickynotes/wmstickynotes-0.2.ebuild index b01537861787..5f8ad38a9837 100644 --- a/x11-plugins/wmstickynotes/wmstickynotes-0.2.ebuild +++ b/x11-plugins/wmstickynotes/wmstickynotes-0.2.ebuild @@ -1,9 +1,11 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmstickynotes/wmstickynotes-0.2.ebuild,v 1.1 2011/05/07 13:05:13 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmstickynotes/wmstickynotes-0.2.ebuild,v 1.2 2012/06/21 11:56:20 jlec Exp $ EAPI=4 +inherit eutils + DESCRIPTION="A dockapp for keeping small notes around on the desktop" HOMEPAGE="http://wmstickynotes.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" @@ -15,3 +17,7 @@ IUSE="" DEPEND="x11-libs/gtk+:2" RDEPEND="${DEPEND}" + +src_prepare() { + epatch "${FILESDIR}"/${P}-gold.patch +} |