diff options
author | 2012-02-15 09:26:22 +0000 | |
---|---|---|
committer | 2012-02-15 09:26:22 +0000 | |
commit | f2f6d2bc9d632e753c3691d37f451a7813ddb297 (patch) | |
tree | 1eb3e91a3ad1fd4d8eeb2146b4c2033267541b9e /app-misc/gcal/gcal-3.6.1.ebuild | |
parent | Remove old. (diff) | |
download | historical-f2f6d2bc9d632e753c3691d37f451a7813ddb297.tar.gz historical-f2f6d2bc9d632e753c3691d37f451a7813ddb297.tar.bz2 historical-f2f6d2bc9d632e753c3691d37f451a7813ddb297.zip |
Version bump.
Package-Manager: portage-2.2.0_alpha86/cvs/Linux x86_64
Diffstat (limited to 'app-misc/gcal/gcal-3.6.1.ebuild')
-rw-r--r-- | app-misc/gcal/gcal-3.6.1.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/app-misc/gcal/gcal-3.6.1.ebuild b/app-misc/gcal/gcal-3.6.1.ebuild new file mode 100644 index 000000000000..570eee955a38 --- /dev/null +++ b/app-misc/gcal/gcal-3.6.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/gcal/gcal-3.6.1.ebuild,v 1.1 2012/02/15 09:26:22 radhermit Exp $ + +EAPI="4" + +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="~alpha ~amd64 ~arm ~ppc ~sparc ~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-flags -D_GNU_SOURCE + econf \ + --disable-rpath \ + $(use_enable nls) \ + $(use_enable ncurses term) \ + $(use_enable unicode) +} |