diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-13 14:31:02 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-13 14:31:02 +0000 |
commit | 6c15c47580cb05d7ae571d637404b79d13478cfa (patch) | |
tree | 6ce4f27ad6c90ac2001b7e79e85facfff0f2b341 | |
parent | Updating dependencies to >=app-emulation/emul-linux-x86-baselibs-20100409 (Bu... (diff) | |
download | gentoo-2-6c15c47580cb05d7ae571d637404b79d13478cfa.tar.gz gentoo-2-6c15c47580cb05d7ae571d637404b79d13478cfa.tar.bz2 gentoo-2-6c15c47580cb05d7ae571d637404b79d13478cfa.zip |
clean up
(Portage version: 2.2_rc67/cvs/Linux x86_64)
-rw-r--r-- | x11-misc/fluxter/files/fluxter-0.1.0-asneeded.patch | 10 | ||||
-rw-r--r-- | x11-misc/fluxter/fluxter-0.1.0.ebuild | 23 |
2 files changed, 16 insertions, 17 deletions
diff --git a/x11-misc/fluxter/files/fluxter-0.1.0-asneeded.patch b/x11-misc/fluxter/files/fluxter-0.1.0-asneeded.patch index 3551ba307ac6..8b68260741e7 100644 --- a/x11-misc/fluxter/files/fluxter-0.1.0-asneeded.patch +++ b/x11-misc/fluxter/files/fluxter-0.1.0-asneeded.patch @@ -1,15 +1,13 @@ -diff -ur fluxter-0.1.0.orig/Makefile.am fluxter-0.1.0/Makefile.am ---- fluxter-0.1.0.orig/Makefile.am 2002-04-14 08:50:33.000000000 +0300 -+++ fluxter-0.1.0/Makefile.am 2007-11-18 19:11:50.000000000 +0200 +--- Makefile.am ++++ Makefile.am @@ -17,4 +17,4 @@ NETInterface.cc NETInterface.hh \ blackboxstyle.hh EXTRA_DIST = BUGS TODO -fluxter_LDADD = @X_LIBS@ +fluxter_LDADD = @LIBS@ -diff -ur fluxter-0.1.0.orig/configure.in fluxter-0.1.0/configure.in ---- fluxter-0.1.0.orig/configure.in 2002-04-14 01:03:05.000000000 +0300 -+++ fluxter-0.1.0/configure.in 2007-11-18 19:11:35.000000000 +0200 +--- configure.in ++++ configure.in @@ -18,14 +18,12 @@ [ test "$CFLAGS" = "" && CFLAGS="-g -Wall -DDEBUG" diff --git a/x11-misc/fluxter/fluxter-0.1.0.ebuild b/x11-misc/fluxter/fluxter-0.1.0.ebuild index 4152e6d018ac..c5b5e6c47ee1 100644 --- a/x11-misc/fluxter/fluxter-0.1.0.ebuild +++ b/x11-misc/fluxter/fluxter-0.1.0.ebuild @@ -1,7 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/fluxter/fluxter-0.1.0.ebuild,v 1.14 2007/11/18 17:18:39 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/fluxter/fluxter-0.1.0.ebuild,v 1.15 2010/06/13 14:31:02 ssuominen Exp $ +EAPI=2 inherit autotools eutils DESCRIPTION="workspace pager dockapp, particularly useful with the Fluxbox window manager" @@ -10,24 +11,24 @@ SRC_URI="http://www.isomedia.com/homes/stevencooper/files/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 hppa ppc x86 ~x86-fbsd" +KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd" IUSE="" -DEPEND="virtual/blackbox" +DEPEND="x11-libs/libX11 + x11-libs/libSM + x11-libs/libICE" -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { epatch "${FILESDIR}"/${P}-asneeded.patch eautoreconf } -src_compile() { - econf --datadir=/usr/share/commonbox - emake || die "emake failed." +src_configure() { + econf \ + --datadir=/usr/share/commonbox } src_install() { - emake DESTDIR="${D}" install || die "emake install failed." - dodoc README AUTHORS ChangeLog NEWS README TODO + emake DESTDIR="${D}" install || die + dodoc AUTHORS BUGS ChangeLog README TODO } |