diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2004-08-27 07:55:35 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2004-08-27 07:55:35 +0000 |
commit | f9e68921d35d331a8e0e4bcb058fa20f3b56deef (patch) | |
tree | 2c21f0382e53593c461ee31e77f268a51631b269 /x11-misc/icemc | |
parent | version bump (Manifest recommit) (diff) | |
download | gentoo-2-f9e68921d35d331a8e0e4bcb058fa20f3b56deef.tar.gz gentoo-2-f9e68921d35d331a8e0e4bcb058fa20f3b56deef.tar.bz2 gentoo-2-f9e68921d35d331a8e0e4bcb058fa20f3b56deef.zip |
version bump
Diffstat (limited to 'x11-misc/icemc')
-rw-r--r-- | x11-misc/icemc/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/icemc/Manifest | 2 | ||||
-rw-r--r-- | x11-misc/icemc/files/digest-icemc-2.1 | 1 | ||||
-rw-r--r-- | x11-misc/icemc/icemc-2.1.ebuild | 30 |
4 files changed, 39 insertions, 1 deletions
diff --git a/x11-misc/icemc/ChangeLog b/x11-misc/icemc/ChangeLog index 80d2d46bc9a6..feb2f30bb9e9 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.16 2004/08/25 07:00:14 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/icemc/ChangeLog,v 1.17 2004/08/27 07:53:41 phosphan Exp $ + +*icemc-2.1 (27 Aug 2004) + + 27 Aug 2004; Patrick Kursawe <phosphan@gentoo.org> +icemc-2.1.ebuild: + version bump, using C*FLAGS now 25 Aug 2004; Patrick Kursawe <phosphan@gentoo.org> icemc-1.9.ebuild: Stable for x86 diff --git a/x11-misc/icemc/Manifest b/x11-misc/icemc/Manifest index 27468f0f964a..9db9e4e4cb5c 100644 --- a/x11-misc/icemc/Manifest +++ b/x11-misc/icemc/Manifest @@ -1,6 +1,8 @@ MD5 8040d32578ad0c12d0cb4cb26879d785 icemc-1.9.ebuild 748 MD5 a1132902c715416297b8257fd6b6593d icemc-1.8.ebuild 632 +MD5 b02d28b429e8128bc382f62fc1ed8674 icemc-2.1.ebuild 826 MD5 89eacd19d9aebfe4068613a4a933eda1 ChangeLog 1896 MD5 b742040acaeddc3798a21739bd59e8aa metadata.xml 224 MD5 261b7e7d34cc5918993f29c55caa084f files/digest-icemc-1.8 62 MD5 67e30f0a094cffef38bb5ceea331bf0a files/digest-icemc-1.9 61 +MD5 9fb9aea4af74359d79c5b034dea84768 files/digest-icemc-2.1 61 diff --git a/x11-misc/icemc/files/digest-icemc-2.1 b/x11-misc/icemc/files/digest-icemc-2.1 new file mode 100644 index 000000000000..fc3599c985b4 --- /dev/null +++ b/x11-misc/icemc/files/digest-icemc-2.1 @@ -0,0 +1 @@ +MD5 cb2afc6efaa0f9d77b0119b29d528667 icemc-2.1.tar.bz2 29267 diff --git a/x11-misc/icemc/icemc-2.1.ebuild b/x11-misc/icemc/icemc-2.1.ebuild new file mode 100644 index 000000000000..fb675d64c386 --- /dev/null +++ b/x11-misc/icemc/icemc-2.1.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-2.1.ebuild,v 1.1 2004/08/27 07:53:41 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 ~ppc" +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" + echo >> ${PN}.pro -e "QMAKE_CXXFLAGS_RELEASE += ${CXXFLAGS}\nQMAKE_CFLAGS_RELEASE += ${CFLAGS}" +} + +src_compile() { + addwrite ${QTDIR}/etc/settings + qmake ${PN}.pro + emake || die "emake failed" +} + +src_install() { + make INSTALL_ROOT="${D}" install || die + dodoc AUTHORS ChangeLog README TODO +} |