diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2008-12-02 11:15:31 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2008-12-02 11:15:31 +0000 |
commit | 34749f083381155fddf25d3a2e0b2f035bbe9041 (patch) | |
tree | dc1710ada3124fdc70587f0fbdfce542f54959a5 /x11-plugins/wmSun | |
parent | Version bump (diff) | |
download | gentoo-2-34749f083381155fddf25d3a2e0b2f035bbe9041.tar.gz gentoo-2-34749f083381155fddf25d3a2e0b2f035bbe9041.tar.bz2 gentoo-2-34749f083381155fddf25d3a2e0b2f035bbe9041.zip |
files/wmSun-1.03-makefile.patch:
Fixed LDFLAGS ordering. See bug #248616.
wmSun-1.03.ebuild:
wiped out oldest release.
(Portage version: 2.1.4.5)
Diffstat (limited to 'x11-plugins/wmSun')
-rw-r--r-- | x11-plugins/wmSun/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/wmSun/files/wmSun-1.03-makefile.patch | 2 | ||||
-rw-r--r-- | x11-plugins/wmSun/wmSun-1.03.ebuild | 31 |
3 files changed, 7 insertions, 33 deletions
diff --git a/x11-plugins/wmSun/ChangeLog b/x11-plugins/wmSun/ChangeLog index 4c8706809360..6143c5dbfca2 100644 --- a/x11-plugins/wmSun/ChangeLog +++ b/x11-plugins/wmSun/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-plugins/wmSun # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmSun/ChangeLog,v 1.12 2008/06/28 07:19:22 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmSun/ChangeLog,v 1.13 2008/12/02 11:15:31 s4t4n Exp $ + + 02 Dec 2008; Michele Noberasco <s4t4n@gentoo.org> files/wmSun-1.03-makefile.patch: + Fixed LDFLAGS ordering. See bug #248616. + wmSun-1.03.ebuild: + wiped out oldest release. 28 Jun 2008; Markus Meier <maekke@gentoo.org> wmSun-1.03-r1.ebuild: x86 stable, bug #229593 diff --git a/x11-plugins/wmSun/files/wmSun-1.03-makefile.patch b/x11-plugins/wmSun/files/wmSun-1.03-makefile.patch index 1e712ede094e..c12f6771e4db 100644 --- a/x11-plugins/wmSun/files/wmSun-1.03-makefile.patch +++ b/x11-plugins/wmSun/files/wmSun-1.03-makefile.patch @@ -28,7 +28,7 @@ wmSun.o: wmSun_master.xpm wmSun_mask.xbm wmSun: $(OBJS) - $(CC) $(COPTS) $(SYSTEM) -lm -o wmSun $^ $(INCDIR) $(LIBDIR) $(LIBS) -+ $(CC) $(CFLAGS) -lm -o wmSun $^ $(INCDIR) -L$(LIBDIR) $(LDFLAGS) $(LIBS) ++ $(CC) $(CFLAGS) -o wmSun $^ $(INCDIR) -L$(LIBDIR) $(LDFLAGS) $(LIBS) -lm clean: for i in $(OBJS) ; do \ diff --git a/x11-plugins/wmSun/wmSun-1.03.ebuild b/x11-plugins/wmSun/wmSun-1.03.ebuild deleted file mode 100644 index c56c8d7846ef..000000000000 --- a/x11-plugins/wmSun/wmSun-1.03.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmSun/wmSun-1.03.ebuild,v 1.12 2007/07/22 05:31:27 dberkholz Exp $ - -IUSE="" - -DESCRIPTION="dockapp which displays the rise/set time of the sun" -HOMEPAGE="http://nis-www.lanl.gov/~mgh/WindowMaker/DockApps.shtml" -SRC_URI="http://nis-www.lanl.gov/~mgh/WindowMaker/${P}.tar.gz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 amd64 ~mips ppc ~sparc" - -RDEPEND="x11-libs/libX11 - x11-libs/libXext - x11-libs/libXpm" -DEPEND="${RDEPEND} - x11-proto/xproto - x11-proto/xextproto" - -src_compile() { - emake -C wmSun clean || die "make clean failed" - COPTS=${CFLAGS} emake -C wmSun || die "parallel make failed" -} - -src_install() { - dobin wmSun/wmSun - doman wmSun/wmSun.1 - dodoc BUGS TODO wmSun/README -} |