diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-dotnet/monocalendar | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-dotnet/monocalendar')
-rw-r--r-- | dev-dotnet/monocalendar/Manifest | 1 | ||||
-rw-r--r-- | dev-dotnet/monocalendar/metadata.xml | 8 | ||||
-rw-r--r-- | dev-dotnet/monocalendar/monocalendar-0.7.2.ebuild | 35 |
3 files changed, 44 insertions, 0 deletions
diff --git a/dev-dotnet/monocalendar/Manifest b/dev-dotnet/monocalendar/Manifest new file mode 100644 index 000000000000..db52a8cf5d02 --- /dev/null +++ b/dev-dotnet/monocalendar/Manifest @@ -0,0 +1 @@ +DIST monocalendar-source-0.7.2.tar.gz 178249 SHA256 1058cf87a08d26017fd98eb8909da0dce45d1388f31b7a54828ff05e78f933a0 SHA512 8793f4a56d5626485a2e8378121b8b2f2435a5c7f26be12fad1bf4647e464686f670becbf1b0a35add60080f1bdf06ba993f9ecbc4d30ca3fad5ecceebcd0c12 WHIRLPOOL ef5bd41e75ee325d00bfd61bab37761153bfe417c883bb5376b752b2ed4967a6344801373c31e61033a34e7ba95fb889bdb077ea107b0fe4b0bbbc61cffcca6d diff --git a/dev-dotnet/monocalendar/metadata.xml b/dev-dotnet/monocalendar/metadata.xml new file mode 100644 index 000000000000..19daf93693a9 --- /dev/null +++ b/dev-dotnet/monocalendar/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>dotnet</herd> + <upstream> + <remote-id type="sourceforge">monocalendar</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-dotnet/monocalendar/monocalendar-0.7.2.ebuild b/dev-dotnet/monocalendar/monocalendar-0.7.2.ebuild new file mode 100644 index 000000000000..48a310773ffe --- /dev/null +++ b/dev-dotnet/monocalendar/monocalendar-0.7.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit mono eutils multilib + +S="${WORKDIR}/MonoCalendar" + +DESCRIPTION="iCal clone for .NET" +HOMEPAGE="http://www.monocalendar.com/" +SRC_URI="mirror://sourceforge/${PN}/${PN}-source-${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 x86" +IUSE="" + +DEPEND=">=dev-lang/mono-1.2.1" +RDEPEND="${DEPEND}" + +src_compile() { + cd "${S}"/bin/Release/ + + emake || die "emake failed" +} + +src_install() { + dodir /usr/$(get_libdir)/${PN} + insinto /usr/$(get_libdir)/${PN} + + doins bin/Release/*dll + doins bin/Release/*.exe + + make_wrapper monocalendar "mono /usr/$(get_libdir)/${PN}/MonoCalendar.exe" +} |