diff options
author | Pacho Ramos <pacho@gentoo.org> | 2016-09-18 11:31:01 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2016-09-18 11:57:31 +0200 |
commit | 454f243f20be36d7e57104d2063cf74c143f4ee9 (patch) | |
tree | d7b1d0983838d8964a4aa0930f07296a14c0035e /dev-dotnet | |
parent | dev-dotnet/gnome-keyring-sharp: amd64/x86 stable, bug #594200 (diff) | |
download | gentoo-454f243f20be36d7e57104d2063cf74c143f4ee9.tar.gz gentoo-454f243f20be36d7e57104d2063cf74c143f4ee9.tar.bz2 gentoo-454f243f20be36d7e57104d2063cf74c143f4ee9.zip |
dev-dotnet/gnome-keyring-sharp: Drop old
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-dotnet')
-rw-r--r-- | dev-dotnet/gnome-keyring-sharp/gnome-keyring-sharp-1.0.2.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-dotnet/gnome-keyring-sharp/gnome-keyring-sharp-1.0.2.ebuild b/dev-dotnet/gnome-keyring-sharp/gnome-keyring-sharp-1.0.2.ebuild deleted file mode 100644 index 3d3e402a4510..000000000000 --- a/dev-dotnet/gnome-keyring-sharp/gnome-keyring-sharp-1.0.2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit mono - -DESCRIPTION="C# implementation of gnome-keyring" -HOMEPAGE="http://www.mono-project.com/ https://github.com/mono/gnome-keyring-sharp" -SRC_URI="http://www.go-mono.com/archive/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="doc" - -RDEPEND=">=dev-lang/mono-2.0 - >=gnome-base/libgnome-keyring-2.30.0 - dev-dotnet/glib-sharp" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - # Disable building samples. - sed -i -e 's:sample::' "${S}"/Makefile.in || die "sed failed" -} - -src_configure() { - econf $(use_enable doc monodoc) || die "econf failed" -} - -src_compile() { - # This dies without telling in docs with anything not -j1 - # CSC=gmcs needed for https://bugs.gentoo.org/show_bug.cgi?id=250069 - emake -j1 CSC=gmcs || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog README || die - mono_multilib_comply - find "${D}" -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed" -} |