summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2004-07-27 09:52:06 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2004-07-27 09:52:06 +0000
commit8cab29336cd5954e1b5366c9a0166ed4b3a2a829 (patch)
tree7bb77b867a1c19a205b218e46515492159ee8b12 /x11-misc/icemc
parentFixed dependencies, added description to metadata.xml. (diff)
downloadhistorical-8cab29336cd5954e1b5366c9a0166ed4b3a2a829.tar.gz
historical-8cab29336cd5954e1b5366c9a0166ed4b3a2a829.tar.bz2
historical-8cab29336cd5954e1b5366c9a0166ed4b3a2a829.zip
'Version bump, build procedure changed'
Diffstat (limited to 'x11-misc/icemc')
-rw-r--r--x11-misc/icemc/ChangeLog7
-rw-r--r--x11-misc/icemc/Manifest4
-rw-r--r--x11-misc/icemc/files/digest-icemc-1.91
-rw-r--r--x11-misc/icemc/icemc-1.9.ebuild30
4 files changed, 40 insertions, 2 deletions
diff --git a/x11-misc/icemc/ChangeLog b/x11-misc/icemc/ChangeLog
index 343c455b9c99..7b79088ac77d 100644
--- a/x11-misc/icemc/ChangeLog
+++ b/x11-misc/icemc/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-misc/icemc
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/icemc/ChangeLog,v 1.13 2004/06/24 22:23:34 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/icemc/ChangeLog,v 1.14 2004/07/27 09:52:06 phosphan Exp $
+
+*icemc-1.9 (27 Jul 2004)
+
+ 27 Jul 2004; Patrick Kursawe <phosphan@gentoo.org> +icemc-1.9.ebuild:
+ Version bump, build procedure changed
24 Mar 2004; Patrick Kursawe <phosphan@gentoo.org> icemc-1.8.ebuild:
Stable for x86
diff --git a/x11-misc/icemc/Manifest b/x11-misc/icemc/Manifest
index 25aa20c65072..2dd6aa3004c7 100644
--- a/x11-misc/icemc/Manifest
+++ b/x11-misc/icemc/Manifest
@@ -1,6 +1,8 @@
MD5 a14eed4f2687bddf0e2d3642cf9ab5ee icemc-1.6.1.ebuild 634
+MD5 ded25b33fedd9d509588b969ffd8de1c icemc-1.9.ebuild 744
MD5 a1132902c715416297b8257fd6b6593d icemc-1.8.ebuild 632
-MD5 9efbf109f3ace86538eb059912a239d9 ChangeLog 1587
+MD5 b40a410662a467294e2e088d739d7c94 ChangeLog 1726
MD5 b742040acaeddc3798a21739bd59e8aa metadata.xml 224
MD5 261b7e7d34cc5918993f29c55caa084f files/digest-icemc-1.8 62
+MD5 67e30f0a094cffef38bb5ceea331bf0a files/digest-icemc-1.9 61
MD5 8300014cbfb1f879c71b3a4df6593496 files/digest-icemc-1.6.1 64
diff --git a/x11-misc/icemc/files/digest-icemc-1.9 b/x11-misc/icemc/files/digest-icemc-1.9
new file mode 100644
index 000000000000..a699737401e3
--- /dev/null
+++ b/x11-misc/icemc/files/digest-icemc-1.9
@@ -0,0 +1 @@
+MD5 9707331a126859e6156d89393ace6cb6 icemc-1.9.tar.bz2 26831
diff --git a/x11-misc/icemc/icemc-1.9.ebuild b/x11-misc/icemc/icemc-1.9.ebuild
new file mode 100644
index 000000000000..2ed6a6fb2c36
--- /dev/null
+++ b/x11-misc/icemc/icemc-1.9.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/icemc/icemc-1.9.ebuild,v 1.1 2004/07/27 09:52:06 phosphan Exp $
+
+DESCRIPTION="IceWM menu/toolbar editor"
+HOMEPAGE="http://icecc.sourceforge.net/"
+SRC_URI="mirror://sourceforge/icecc/${P}.tar.bz2"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+DEPEND=">=x11-libs/qt-3.0.0"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ sed -e "s:/usr/local:${D}/usr:" -i ${PN}.pro || die "sed failed"
+}
+
+src_compile() {
+ qmake ${PN}.pro
+ emake || die "emake failed"
+}
+
+src_install() {
+ make DESTDIR=${D} install || die "einstall failed"
+ rm -rf ${D}/usr/doc
+ dohtml icemc/docs/en/*
+ dodoc authors ChangeLog readme
+}