summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2004-08-27 07:42:44 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2004-08-27 07:42:44 +0000
commit51711afdaa0563ac1463d28187043d2e9cd00464 (patch)
tree3c12c1c56770a3dde9a3ddabd829c6806d0bc2d2 /x11-misc/icebgset
parentversion bump (Manifest recommit) (diff)
downloadgentoo-2-51711afdaa0563ac1463d28187043d2e9cd00464.tar.gz
gentoo-2-51711afdaa0563ac1463d28187043d2e9cd00464.tar.bz2
gentoo-2-51711afdaa0563ac1463d28187043d2e9cd00464.zip
version bump
Diffstat (limited to 'x11-misc/icebgset')
-rw-r--r--x11-misc/icebgset/ChangeLog7
-rw-r--r--x11-misc/icebgset/Manifest6
-rw-r--r--x11-misc/icebgset/files/digest-icebgset-1.31
-rw-r--r--x11-misc/icebgset/icebgset-1.3.ebuild29
4 files changed, 40 insertions, 3 deletions
diff --git a/x11-misc/icebgset/ChangeLog b/x11-misc/icebgset/ChangeLog
index e35d5f9cfe67..16b6b925bb0e 100644
--- a/x11-misc/icebgset/ChangeLog
+++ b/x11-misc/icebgset/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-misc/icebgset
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/icebgset/ChangeLog,v 1.13 2004/08/03 11:26:12 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/icebgset/ChangeLog,v 1.14 2004/08/27 07:42:43 phosphan Exp $
+
+*icebgset-1.3 (27 Aug 2004)
+
+ 27 Aug 2004; Patrick Kursawe <phosphan@gentoo.org> +icebgset-1.3.ebuild:
+ version bump: build procedure changed, using C*FLAGS now
03 Aug 2004; David Holm <dholm@gentoo.org> icebgset-1.1.ebuild:
Added to ~ppc.
diff --git a/x11-misc/icebgset/Manifest b/x11-misc/icebgset/Manifest
index 62c28f848bce..13a7ba1a9d9a 100644
--- a/x11-misc/icebgset/Manifest
+++ b/x11-misc/icebgset/Manifest
@@ -1,6 +1,8 @@
-MD5 913f4e78797a4de53f140cd9970b1bf6 ChangeLog 1466
-MD5 8d8649b83a517828858a9d48e80864a6 icebgset-1.0.ebuild 610
MD5 fc514088c57ea6e8197bd58c339c5266 icebgset-1.1.ebuild 611
+MD5 86083cfdbd4d970ec4064405c79fec72 icebgset-1.3.ebuild 761
+MD5 8d8649b83a517828858a9d48e80864a6 icebgset-1.0.ebuild 610
+MD5 913f4e78797a4de53f140cd9970b1bf6 ChangeLog 1466
MD5 b742040acaeddc3798a21739bd59e8aa metadata.xml 224
MD5 8f8c469df41296c7bc6fa297f322d3a3 files/digest-icebgset-1.0 65
MD5 667da31c170037db14079d4e13068c91 files/digest-icebgset-1.1 65
+MD5 c822ef71e90c6a455722f3186b407bb5 files/digest-icebgset-1.3 64
diff --git a/x11-misc/icebgset/files/digest-icebgset-1.3 b/x11-misc/icebgset/files/digest-icebgset-1.3
new file mode 100644
index 000000000000..e54b90ac6263
--- /dev/null
+++ b/x11-misc/icebgset/files/digest-icebgset-1.3
@@ -0,0 +1 @@
+MD5 7086b771fc7877369924affc5b5f5e41 icebgset-1.3.tar.bz2 11277
diff --git a/x11-misc/icebgset/icebgset-1.3.ebuild b/x11-misc/icebgset/icebgset-1.3.ebuild
new file mode 100644
index 000000000000..436b14c123c6
--- /dev/null
+++ b/x11-misc/icebgset/icebgset-1.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/icebgset/icebgset-1.3.ebuild,v 1.1 2004/08/27 07:42:44 phosphan Exp $
+
+DESCRIPTION="IceWM background editor"
+SRC_URI="mirror://sourceforge/icecc/${P}.tar.bz2"
+HOMEPAGE="http://icecc.sourceforge.net/"
+LICENSE="GPL-2"
+KEYWORDS="~x86 ~ppc"
+
+DEPEND=">=x11-libs/qt-3.0.0"
+IUSE=""
+SLOT="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
+}
+
+src_install() {
+ make INSTALL_ROOT="${D}" install || die
+ dodoc AUTHORS ChangeLog README TODO
+}