You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.1 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

# Copyright 1999-2013 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.9 2013/05/12 12:07:14 pacho Exp $
EAPI=4
VALA_MIN_API_VERSION="0.14"
inherit autotools vala
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}
$(vala_depend)
virtual/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
vala_src_prepare
sed -i -e '/AC_PATH_PROG/s:valac:${VALAC}:g' configure.ac || die
eautoreconf
}