summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--x11-misc/icecc/ChangeLog8
-rw-r--r--x11-misc/icecc/Manifest4
-rw-r--r--x11-misc/icecc/files/digest-icecc-2.11
-rw-r--r--x11-misc/icecc/files/icecc-2.1.patch11
-rw-r--r--x11-misc/icecc/icecc-2.1.ebuild39
5 files changed, 60 insertions, 3 deletions
diff --git a/x11-misc/icecc/ChangeLog b/x11-misc/icecc/ChangeLog
index c8a9c86f472d..2fd5cc121485 100644
--- a/x11-misc/icecc/ChangeLog
+++ b/x11-misc/icecc/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-misc/icecc
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/ChangeLog,v 1.8 2003/04/24 14:06:18 phosphan Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/ChangeLog,v 1.9 2003/05/19 13:15:34 phosphan Exp $
+
+*icecc-2.1 (19 May 2003)
+
+ 19 May 2003; Patrick Kursawe <phosphan@gentoo.org> icecc-2.1.ebuild,
+ files/icecc-2.1.patch:
+ Version bump, site moved to SF.
24 Apr 2003; Patrick Kursawe <phosphan@gentoo.org> icecc-2.0.ebuild :
stable for x86
diff --git a/x11-misc/icecc/Manifest b/x11-misc/icecc/Manifest
index 016602e1b4af..6819631d4033 100644
--- a/x11-misc/icecc/Manifest
+++ b/x11-misc/icecc/Manifest
@@ -1,7 +1,7 @@
-MD5 3448b8f79ecb977650eec8d505c12dc6 icecc-2.1.ebuild 946
+MD5 82b833a9114865c3de6c61676737e051 icecc-2.1.ebuild 949
MD5 6806a2c35284ed922a910529735f0aec icecc-1.5.ebuild 614
MD5 6beb3d1bb7021baceb3c4c8f3268cccd icecc-2.0.ebuild 951
-MD5 d3ae2fa87f6722d392aaea2d4be40cd4 ChangeLog 1266
+MD5 084733c770f8e66a4b91523e26f88a18 ChangeLog 1423
MD5 8ffdf6aa0e2ce02cd060a956279b0f1d icecc-0.5.ebuild 725
MD5 f255bba4b714e8448420f1fee95f89bf files/icecc-2.0.patch 357
MD5 f255bba4b714e8448420f1fee95f89bf files/icecc-2.1.patch 357
diff --git a/x11-misc/icecc/files/digest-icecc-2.1 b/x11-misc/icecc/files/digest-icecc-2.1
new file mode 100644
index 000000000000..5d5f26f391c7
--- /dev/null
+++ b/x11-misc/icecc/files/digest-icecc-2.1
@@ -0,0 +1 @@
+MD5 f5745198f158a2087d4112e7438da272 icecc-2.1.tar.bz2 337536
diff --git a/x11-misc/icecc/files/icecc-2.1.patch b/x11-misc/icecc/files/icecc-2.1.patch
new file mode 100644
index 000000000000..855431abf148
--- /dev/null
+++ b/x11-misc/icecc/files/icecc-2.1.patch
@@ -0,0 +1,11 @@
+--- icecc/icecc.cpp 2003-04-03 22:48:22.000000000 +0200
++++ icecc/icecc.cpp.new 2003-04-14 11:27:47.000000000 +0200
+@@ -49,7 +49,7 @@
+ themeBrowser(0),
+ icewmCfgDir(getenv("ICEWM_PRIVCFG")),
+ aTools(COUNTTOOLS),
+-themeDir("/usr/local/share/icecc/themes/")
++themeDir("/usr/share/icecc/themes/")
+ {
+ setCaption(tr("IceWM Control Center " VERSION));
+
diff --git a/x11-misc/icecc/icecc-2.1.ebuild b/x11-misc/icecc/icecc-2.1.ebuild
new file mode 100644
index 000000000000..038f97fd98e8
--- /dev/null
+++ b/x11-misc/icecc/icecc-2.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/icecc-2.1.ebuild,v 1.1 2003/05/19 13:15:34 phosphan Exp $
+
+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"
+SLOT="0"
+
+DEPEND=">=x11-libs/qt-3.0.0"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ patch -p0 < ${FILESDIR}/${P}.patch || die "patch failed"
+}
+
+src_compile() {
+ econf || die
+ emake || die
+}
+
+src_install() {
+ einstall || 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"
+}