summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2004-08-27 06:28:50 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2004-08-27 06:28:50 +0000
commit83fb82c2a2092578783ea046f38f06a4b5fc3228 (patch)
treed23f881d0e9d1581e5fce008bfcbf6b6cf976a1c /x11-misc/icecc
parentremove cyrus-imap* for testing. (diff)
downloadgentoo-2-83fb82c2a2092578783ea046f38f06a4b5fc3228.tar.gz
gentoo-2-83fb82c2a2092578783ea046f38f06a4b5fc3228.tar.bz2
gentoo-2-83fb82c2a2092578783ea046f38f06a4b5fc3228.zip
*** empty log message ***
Diffstat (limited to 'x11-misc/icecc')
-rw-r--r--x11-misc/icecc/ChangeLog7
-rw-r--r--x11-misc/icecc/Manifest2
-rw-r--r--x11-misc/icecc/files/digest-icecc-2.91
-rw-r--r--x11-misc/icecc/icecc-2.9.ebuild43
4 files changed, 52 insertions, 1 deletions
diff --git a/x11-misc/icecc/ChangeLog b/x11-misc/icecc/ChangeLog
index 764ba6705191..f3d88a9fd258 100644
--- a/x11-misc/icecc/ChangeLog
+++ b/x11-misc/icecc/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-misc/icecc
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/ChangeLog,v 1.19 2004/08/27 05:43:08 phosphan Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/ChangeLog,v 1.20 2004/08/27 06:28:50 phosphan Exp $
+
+*icecc-2.9 (27 Aug 2004)
+
+ 27 Aug 2004; Patrick Kursawe <phosphan@gentoo.org> +icecc-2.9.ebuild:
+ Version bump, uses C*FLAGS now.
27 Aug 2004; Patrick Kursawe <phosphan@gentoo.org> icecc-2.7.ebuild:
stable for x86
diff --git a/x11-misc/icecc/Manifest b/x11-misc/icecc/Manifest
index b8aaf4a1f4c8..c840d5bbda25 100644
--- a/x11-misc/icecc/Manifest
+++ b/x11-misc/icecc/Manifest
@@ -1,6 +1,8 @@
MD5 e5c2c162a4b3872443adeb1d9e69412f icecc-2.6.ebuild 865
MD5 4705f850a3ae79020a13640fe2f449ad icecc-2.7.ebuild 996
+MD5 63d71aa9f37c9dc999126be72d342458 icecc-2.9.ebuild 997
MD5 191f8e1e8f130a4057c702ff242da523 ChangeLog 2631
MD5 b742040acaeddc3798a21739bd59e8aa metadata.xml 224
MD5 c9deb0796c495d5949d555279ee0118c files/digest-icecc-2.6 62
MD5 244444410e3a9581e702d14c36fecedd files/digest-icecc-2.7 62
+MD5 753db79012a1b8cc542ced2ef8279eb7 files/digest-icecc-2.9 62
diff --git a/x11-misc/icecc/files/digest-icecc-2.9 b/x11-misc/icecc/files/digest-icecc-2.9
new file mode 100644
index 000000000000..46459cb1c285
--- /dev/null
+++ b/x11-misc/icecc/files/digest-icecc-2.9
@@ -0,0 +1 @@
+MD5 e3ddbb3536941745435f727053816865 icecc-2.9.tar.bz2 121550
diff --git a/x11-misc/icecc/icecc-2.9.ebuild b/x11-misc/icecc/icecc-2.9.ebuild
new file mode 100644
index 000000000000..6b9897c140f5
--- /dev/null
+++ b/x11-misc/icecc/icecc-2.9.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/icecc-2.9.ebuild,v 1.1 2004/08/27 06:28:50 phosphan Exp $
+
+inherit eutils
+
+DESCRIPTION="IceWM Control Center (only main program, see icewm-tools for the rest)"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+HOMEPAGE="http://icecc.sourceforge.net/"
+
+LICENSE="GPL-2"
+KEYWORDS="~x86 ~ppc"
+IUSE=""
+SLOT="0"
+
+DEPEND=">=x11-libs/qt-3.0.0"
+
+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
+ emake || die
+}
+
+src_install() {
+ make INSTALL_ROOT="${D}" install || die
+
+ rm -rf ${D}/usr/doc
+ dohtml ${PN}/docs/en/*.{html,sgml}
+ dodoc AUTHORS ChangeLog README TODO
+ dodir /usr/share/${PN}/themes
+ cp -a theme/* ${D}/usr/share/${PN}/themes/
+ chmod go-w ${D}/usr/share/${PN}/themes/
+}
+
+pkg_postinst() {
+ einfo "emerge icewm-tools for the control center helper tools"
+}