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 /app-misc/gcal | |
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 'app-misc/gcal')
-rw-r--r-- | app-misc/gcal/Manifest | 1 | ||||
-rw-r--r-- | app-misc/gcal/gcal-3.6.3.ebuild | 33 | ||||
-rw-r--r-- | app-misc/gcal/metadata.xml | 17 |
3 files changed, 51 insertions, 0 deletions
diff --git a/app-misc/gcal/Manifest b/app-misc/gcal/Manifest new file mode 100644 index 000000000000..02834c7038bf --- /dev/null +++ b/app-misc/gcal/Manifest @@ -0,0 +1 @@ +DIST gcal-3.6.3.tar.xz 1640172 SHA256 6742913a1d011ac109ad713ef4a8263eaf4c5cfd315471626a92f094e3e4b31b SHA512 9be7d6e58a55fbb7531f91bd2a6fa51e8d62364636c31d8d65f6ac24415ac2de8af5eaab8496e155c2820b7480ecf926c4395114ff4363deb21bd268dec44963 WHIRLPOOL 8dc5c99af8b76d58f751f28d687bf1bf5ba62864df38570de7d8a11fbf09e5d5d93688f6ab7d26ecc5b9676c4f5f0a2b8572c5271fb0c82a64e82ca30d77a071 diff --git a/app-misc/gcal/gcal-3.6.3.ebuild b/app-misc/gcal/gcal-3.6.3.ebuild new file mode 100644 index 000000000000..860cbde89b84 --- /dev/null +++ b/app-misc/gcal/gcal-3.6.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils flag-o-matic toolchain-funcs + +DESCRIPTION="The GNU Calendar - a replacement for cal" +HOMEPAGE="http://www.gnu.org/software/gcal/" +SRC_URI="mirror://gnu/gcal/${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 ~arm ppc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="ncurses nls unicode" + +DEPEND=" + app-arch/xz-utils + nls? ( >=sys-devel/gettext-0.17 )" +RDEPEND="nls? ( virtual/libintl )" + +DOCS=( BUGS LIMITATIONS NEWS README THANKS TODO ) + +src_configure() { + tc-export CC + append-cppflags -D_GNU_SOURCE + econf \ + --disable-rpath \ + $(use_enable nls) \ + $(use_enable ncurses term) \ + $(use_enable unicode) +} diff --git a/app-misc/gcal/metadata.xml b/app-misc/gcal/metadata.xml new file mode 100644 index 000000000000..d8de67ce3e0b --- /dev/null +++ b/app-misc/gcal/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>shell-tools</herd> + <longdescription> + Gcal is a program similar the standard calendar programs BSD "cal" and + "calendar". Gcal displays hybrid and proleptic Julian and Gregorian calendar + sheets, respectively, for one month, three months or a whole year. It also + displays eternal holiday lists for many countries around the globe, and + features a very powerful creation of fixed date lists that can be used for + reminding purposes. Gcal can calculate various astronomical data and times + of the Sun and the Moon for at pleasure any location, precisely enough for + most civil purposes. Gcal supports some other calendar systems, for example + the Chinese and Japanese calendar, the Hebrew calendar and the civil Islamic + calendar, too. +</longdescription> +</pkgmetadata> |