Created
April 25, 2011 16:47
-
-
Save matsuu/940788 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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