Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 50702 - New ebuild for IceWm Icons
Summary: New ebuild for IceWm Icons
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High enhancement (vote)
Assignee: Desktop WM Team (OBSOLETE)
URL:
Whiteboard:
Keywords: EBUILD
Depends on:
Blocks:
 
Reported: 2004-05-10 21:45 UTC by archan
Modified: 2004-06-19 07:10 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
iceicons-0.10.0.ebuild (iceicons-0.10.0.ebuild,1.00 KB, text/plain)
2004-05-10 21:46 UTC, archan
Details

Note You need to log in before you can comment on or make changes to this bug.
Description archan 2004-05-10 21:45:37 UTC
New ebuild for IceWm Icons [ http://themes.freshmeat.net/projects/iceicons/ ]

Reproducible: Always
Steps to Reproduce:
1. ebuild  /usr/local/portage/x11-themes/iceicons/iceicons-0.10.0.ebuild digest
2. emerge iceicons


Actual Results:  
iceicons will be installed in /usr/share/icewm/icons/iceicons/ The icons can be
accessed by adding following to ~/.icewm/preference/
IconPath="/usr/share/icewm/icons/iceicons:/usr/share/icewm/icons/iceicons/menuitems"


Expected Results:  
iceicons will be installed in /usr/share/icewm/icons/iceicons/ The icons can be
accessed by adding following to ~/.icewm/preference/
IconPath="/usr/share/icewm/icons/iceicons:/usr/share/icewm/icons/iceicons/menuitems"


/usr/local/portage/x11-themes/iceicons/iceicons-0.10.0.ebuild

--cut here--
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2

DESCRIPTION="IceWM Icons is a set of XPM 16x16, 32x32, and 48x48 XPM and PNG
icons for IceWM"

HOMEPAGE="http://themes.freshmeat.net/redir/iceicons/35147/url_homepage/iceicons"
SRC_BASE="http://themes.freshmeat.net/redir/iceicons/35147/url_tgz"
SRC_URI="${SRC_BASE}/iceicons-default-0.10.0.tar.gz"
LICENSE="GPL-2"

SLOT="0"
KEYWORDS="~x86"

DEPEND="${DEPEND}
	app-arch/gzip
	app-arch/tar
	>=x11-wm/icewm-1.2.6"

S="${WORKDIR}"
ICEICONSDIR="/usr/share/icewm/icons/iceicons"

src_unpack() {
	cd ${S}
	tar -xzvf ${DISTDIR}/${A}
}

src_install() {
	dodir ${ICEICONSDIR}
	cp -dRfv icons/* ${D}/${ICEICONSDIR}
	chown -R root:root ${D}/${ICEICONSDIR}
	chmod -R o-w ${D}/${ICEICONSDIR}
}

pkg_postinst() {
    einfo "To use new IceWm icons, add following"
	einfo "into your IceWm preference file:"
	einfo "IconPath=\"${ICEICONSDIR}:${ICEICONSDIR}\menuitems\""
}

pkg_postrm(){
    einfo "Update your IceWm preference."
}
--cut here--
Comment 1 archan 2004-05-10 21:46:55 UTC
Created attachment 31138 [details]
iceicons-0.10.0.ebuild

Ebuild Attached
Comment 2 Disenchanted (RETIRED) gentoo-dev 2004-05-29 22:10:37 UTC
nice, works
Comment 3 Mamoru KOMACHI (RETIRED) gentoo-dev 2004-06-19 07:10:08 UTC
Added to CVS. Actually, LICENSE of the package is not GPL-2 but
LGPL-2.1 (from HOMEPAGE), and so I changed it to LGPL-2.1.
Thanks for your contribution.