diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2004-08-27 07:47:50 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2004-08-27 07:47:50 +0000 |
commit | 31ec47d0650380f7ecc5b7a4495bac22ed027f24 (patch) | |
tree | 8fe8a0d1a998bc3091f1108ed69c6e2a368f4b71 /x11-misc/icewoed | |
parent | version bump (diff) | |
download | historical-31ec47d0650380f7ecc5b7a4495bac22ed027f24.tar.gz historical-31ec47d0650380f7ecc5b7a4495bac22ed027f24.tar.bz2 historical-31ec47d0650380f7ecc5b7a4495bac22ed027f24.zip |
version bump
Diffstat (limited to 'x11-misc/icewoed')
-rw-r--r-- | x11-misc/icewoed/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/icewoed/Manifest | 4 | ||||
-rw-r--r-- | x11-misc/icewoed/files/digest-icewoed-1.8 | 1 | ||||
-rw-r--r-- | x11-misc/icewoed/icewoed-1.8.ebuild | 30 |
4 files changed, 40 insertions, 2 deletions
diff --git a/x11-misc/icewoed/ChangeLog b/x11-misc/icewoed/ChangeLog index 96a49c9956c3..0de97b9f54b3 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.12 2004/08/25 06:52:30 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/icewoed/ChangeLog,v 1.13 2004/08/27 07:47:50 phosphan Exp $ + +*icewoed-1.8 (27 Aug 2004) + + 27 Aug 2004; Patrick Kursawe <phosphan@gentoo.org> +icewoed-1.8.ebuild: + version bump, using C*FLAGS now 03 Aug 2004; David Holm <dholm@gentoo.org> icewoed-1.6.ebuild: Added to ~ppc. diff --git a/x11-misc/icewoed/Manifest b/x11-misc/icewoed/Manifest index e7dec304f610..0521c3c7aaa4 100644 --- a/x11-misc/icewoed/Manifest +++ b/x11-misc/icewoed/Manifest @@ -1,6 +1,8 @@ +MD5 5dc2af3da081221d68ea31928a5f2cd5 icewoed-1.8.ebuild 767 MD5 9e130a2a2c2a7eef0aeb18f16bc505c5 icewoed-1.5.ebuild 600 -MD5 fde99e19736469a2c4df243102934cd0 ChangeLog 1420 +MD5 2500a36c25d03368b2697df0e0026989 ChangeLog 1557 MD5 b742040acaeddc3798a21739bd59e8aa metadata.xml 224 MD5 78a7a134114437094ebb7348bf0b88bc icewoed-1.6.ebuild 670 MD5 978f45a5ad9bb84ade1326462abd3575 files/digest-icewoed-1.5 64 MD5 d12fc409e1ffbf74f9acd13b16d5c7ea files/digest-icewoed-1.6 63 +MD5 cade9c95ca9c75e3f524a3519bf75d88 files/digest-icewoed-1.8 63 diff --git a/x11-misc/icewoed/files/digest-icewoed-1.8 b/x11-misc/icewoed/files/digest-icewoed-1.8 new file mode 100644 index 000000000000..f688e3047ff1 --- /dev/null +++ b/x11-misc/icewoed/files/digest-icewoed-1.8 @@ -0,0 +1 @@ +MD5 518f05c02cb24a7e36715ce0d0672c8e icewoed-1.8.tar.bz2 21955 diff --git a/x11-misc/icewoed/icewoed-1.8.ebuild b/x11-misc/icewoed/icewoed-1.8.ebuild new file mode 100644 index 000000000000..3839bb703483 --- /dev/null +++ b/x11-misc/icewoed/icewoed-1.8.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.8.ebuild,v 1.1 2004/08/27 07:47:50 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 ~ppc" + +src_unpack () { + unpack ${A} + cd ${S} + sed -e 's:/usr/local:/usr:' -i ${PN}.pro || die 'sed failed' + echo >> ${PN}.pro -e "QMAKE_CXXFLAGS_RELEASE += ${CXXFLAGS}\nQMAKE_CFLAGS_RELEASE += ${CFLAGS}" +} + +src_compile () { + qmake || die +} + +src_install () { + make INSTALL_ROOT="${D}" install || die + dodoc AUTHORS README TODO ChangeLog +} |