diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-05-17 14:23:19 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-05-17 14:23:19 +0000 |
commit | 2b1c4eb8db34aa5d60248bd89919f3056bc161eb (patch) | |
tree | f508bdc550847e0e281be580ef19b459a64ca12b /x11-misc/iconbox | |
parent | keyword ~amd64-fbsd (diff) | |
download | gentoo-2-2b1c4eb8db34aa5d60248bd89919f3056bc161eb.tar.gz gentoo-2-2b1c4eb8db34aa5d60248bd89919f3056bc161eb.tar.bz2 gentoo-2-2b1c4eb8db34aa5d60248bd89919f3056bc161eb.zip |
Set HOMEPAGE to http://packages.gentoo.org/ because upstream is dead wrt #416285
(Portage version: 2.2.0_alpha105/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/iconbox')
-rw-r--r-- | x11-misc/iconbox/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/iconbox/iconbox-0.2.ebuild | 30 |
2 files changed, 19 insertions, 19 deletions
diff --git a/x11-misc/iconbox/ChangeLog b/x11-misc/iconbox/ChangeLog index b6611f35acc4..abff713ce6ac 100644 --- a/x11-misc/iconbox/ChangeLog +++ b/x11-misc/iconbox/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-misc/iconbox -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/iconbox/ChangeLog,v 1.7 2011/03/02 17:22:22 signals Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/iconbox/ChangeLog,v 1.8 2012/05/17 14:23:19 ssuominen Exp $ + + 17 May 2012; Samuli Suominen <ssuominen@gentoo.org> iconbox-0.2.ebuild: + Set HOMEPAGE to http://packages.gentoo.org/ because upstream is dead wrt + #416285 02 Mar 2011; Kevin McCarthy <signals@gentoo.org> iconbox-0.2.ebuild: Slotted gtk+ depends and EAPI=2 bump to support it. diff --git a/x11-misc/iconbox/iconbox-0.2.ebuild b/x11-misc/iconbox/iconbox-0.2.ebuild index 44eee5ccd3dd..34d39f9f545b 100644 --- a/x11-misc/iconbox/iconbox-0.2.ebuild +++ b/x11-misc/iconbox/iconbox-0.2.ebuild @@ -1,32 +1,28 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/iconbox/iconbox-0.2.ebuild,v 1.7 2011/03/02 17:22:22 signals Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/iconbox/iconbox-0.2.ebuild,v 1.8 2012/05/17 14:23:19 ssuominen Exp $ -EAPI=2 -MY_P="${P/-/_}" +EAPI=4 + +MY_P=${P/-/_} DESCRIPTION="App for placing icons in a menu which auto-hides" -HOMEPAGE="http://elrodeo.de/velopment/iconbox/" -SRC_URI="http://elrodeo.de/velopment/${PN}/files/${MY_P}.tar.gz" +HOMEPAGE="http://packages.gentoo.org/" +SRC_URI="mirror://gentoo/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc x86" IUSE="" -DEPEND="x11-libs/gtk+:2 +RDEPEND="x11-libs/gtk+:2 dev-perl/gtk2-perl" +DEPEND="${RDEPEND}" -src_compile() { - true # no compilation is necessary -} +src_compile() { :; } src_install() { -# make install is borked due to a crappy makefile... it is simpler to go around -# it than to fix it... i have notified upstream - - exeinto /usr/bin/ - doexe iconbox iconboxconf || die - dodoc README Changelog Copyright - doman *.1 || die + dobin iconbox{,conf} + dodoc Changelog README + doman *.1 } |