Skip to content

Instantly share code, notes, and snippets.

@matsuu
Created April 25, 2011 16:47
Show Gist options
  • Save matsuu/940788 to your computer and use it in GitHub Desktop.
Save matsuu/940788 to your computer and use it in GitHub Desktop.
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
inherit multilib
DESCRIPTION="Growl Implementation For Linux"
SRC_URI="https://github.com/downloads/mattn/growl-for-linux/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-db/sqlite:3
dev-libs/dbus-glib
dev-libs/glib:2
dev-libs/libxml2
dev-libs/openssl
net-misc/curl
x11-libs/gtk+:2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_configure() {
econf --disable-static
}
src_install() {
emake DESTDIR="${D}" install || die
find "${ED}/usr/$(get_libdir)/growl-for-linux" -name "*.la" -exec rm {} + || die
dodoc AUTHORS ChangeLog NEWS README* TODO || die
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment