diff options
author | 2011-11-20 13:07:31 +0000 | |
---|---|---|
committer | 2011-11-20 13:07:31 +0000 | |
commit | f485867f8c1dd44478490960e65b88361b72a461 (patch) | |
tree | 28070f7ed592debd1a58fcc7b5da8b523364c61f /x11-misc/alltray/alltray-0.7.5.1.ebuild | |
parent | Version bump, remove old. (diff) | |
download | historical-f485867f8c1dd44478490960e65b88361b72a461.tar.gz historical-f485867f8c1dd44478490960e65b88361b72a461.tar.bz2 historical-f485867f8c1dd44478490960e65b88361b72a461.zip |
Version bump wrt #390801 by "teidakankan"
Package-Manager: portage-2.2.0_alpha75/cvs/Linux x86_64
Diffstat (limited to 'x11-misc/alltray/alltray-0.7.5.1.ebuild')
-rw-r--r-- | x11-misc/alltray/alltray-0.7.5.1.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/x11-misc/alltray/alltray-0.7.5.1.ebuild b/x11-misc/alltray/alltray-0.7.5.1.ebuild new file mode 100644 index 000000000000..76cc45bf732e --- /dev/null +++ b/x11-misc/alltray/alltray-0.7.5.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/alltray/alltray-0.7.5.1.ebuild,v 1.1 2011/11/20 13:07:31 ssuominen Exp $ + +EAPI=4 +inherit autotools + +MY_P=${P}dev + +DESCRIPTION="An application which allows any application to be docked into the system notification area" +HOMEPAGE="http://alltray.trausch.us/" +SRC_URI="http://code.launchpad.net/${PN}/trunk/${PV}dev/+download/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="dev-libs/glib:2 + gnome-base/libgtop:2 + x11-libs/gtk+:2 + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm + x11-libs/libwnck:1" +DEPEND="${RDEPEND} + dev-lang/vala:0.14 + dev-util/pkgconfig" + +S=${WORKDIR}/${MY_P} + +DOCS=( AUTHORS ChangeLog HACKING NEWS README ) + +src_prepare() { + sed -i -e 's:-DG.*DISABLE_DEPRECATED::' src/Makefile.{am,in} || die #391101 + + sed -i \ + -e '/Encoding/d' \ + -e '/Categories/s:Application;::' \ + -e '/Icon/s:.png::' \ + data/alltray.desktop{,.in} || die + + sed -i -e '/AC_PATH_PROG/s:valac:valac-0.14:g' configure.ac + + eautoreconf +} |