diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2004-08-03 07:13:33 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2004-08-03 07:13:33 +0000 |
commit | c4307c7cabf84e63f6d3173a203d27e9801fc73c (patch) | |
tree | e0e3455e676f7ecb4a30e642c8ccc0466a12856b /x11-misc/icewoed | |
parent | cgi should have extensions too. (diff) | |
download | gentoo-2-c4307c7cabf84e63f6d3173a203d27e9801fc73c.tar.gz gentoo-2-c4307c7cabf84e63f6d3173a203d27e9801fc73c.tar.bz2 gentoo-2-c4307c7cabf84e63f6d3173a203d27e9801fc73c.zip |
Version bump, new qmake based build
Diffstat (limited to 'x11-misc/icewoed')
-rw-r--r-- | x11-misc/icewoed/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/icewoed/Manifest | 2 | ||||
-rw-r--r-- | x11-misc/icewoed/files/digest-icewoed-1.6 | 1 | ||||
-rw-r--r-- | x11-misc/icewoed/icewoed-1.6.ebuild | 30 |
4 files changed, 39 insertions, 1 deletions
diff --git a/x11-misc/icewoed/ChangeLog b/x11-misc/icewoed/ChangeLog index 9ab8169dc323..27a779e49269 100644 --- a/x11-misc/icewoed/ChangeLog +++ b/x11-misc/icewoed/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/icewoed # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/icewoed/ChangeLog,v 1.9 2004/06/24 22:24:49 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/icewoed/ChangeLog,v 1.10 2004/08/03 07:13:33 phosphan Exp $ + +*icewoed-1.6 (03 Aug 2004) + + 03 Aug 2004; Patrick Kursawe <phosphan@gentoo.org> +icewoed-1.6.ebuild: + Version bump, new build process with qmake 24 Mar 2004; Patrick Kursawe <phosphan@gentoo.org> icewoed-1.5.ebuild: Adding IUSE diff --git a/x11-misc/icewoed/Manifest b/x11-misc/icewoed/Manifest index 85c37945aad1..594a3662840a 100644 --- a/x11-misc/icewoed/Manifest +++ b/x11-misc/icewoed/Manifest @@ -1,4 +1,6 @@ MD5 9e130a2a2c2a7eef0aeb18f16bc505c5 icewoed-1.5.ebuild 600 MD5 f7acc2e076b277080901fe97cf439599 ChangeLog 1097 MD5 b742040acaeddc3798a21739bd59e8aa metadata.xml 224 +MD5 a4bdf3b2d48b502203e254794c453256 icewoed-1.6.ebuild 601 MD5 978f45a5ad9bb84ade1326462abd3575 files/digest-icewoed-1.5 64 +MD5 d12fc409e1ffbf74f9acd13b16d5c7ea files/digest-icewoed-1.6 63 diff --git a/x11-misc/icewoed/files/digest-icewoed-1.6 b/x11-misc/icewoed/files/digest-icewoed-1.6 new file mode 100644 index 000000000000..62e6e4316326 --- /dev/null +++ b/x11-misc/icewoed/files/digest-icewoed-1.6 @@ -0,0 +1 @@ +MD5 a17d9f44c40e7f3f13a56c0b4df92ee5 icewoed-1.6.tar.bz2 21869 diff --git a/x11-misc/icewoed/icewoed-1.6.ebuild b/x11-misc/icewoed/icewoed-1.6.ebuild new file mode 100644 index 000000000000..7193ef90cf72 --- /dev/null +++ b/x11-misc/icewoed/icewoed-1.6.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/icewoed/icewoed-1.6.ebuild,v 1.1 2004/08/03 07:13:33 phosphan Exp $ + +DESCRIPTION="IceWM winoptions editor." +SRC_URI="mirror://sourceforge/icecc/${P}.tar.bz2" +HOMEPAGE="http://icecc.sourceforge.net/" +IUSE="" + +DEPEND=">=x11-libs/qt-3.0.0" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +src_unpack () { + unpack ${A} + cd ${S} + sed -e 's:/usr/local:/usr:' -i ${PN}.pro || die 'sed failed' +} + +src_compile () { + qmake || die +} + +src_install () { + make INSTALL_ROOT="${D}" install || die + + dodoc AUTHORS README TODO ChangeLog +} |