summaryrefslogtreecommitdiff
blob: 393b4851ef89680ed7ecea0c67d552bbbb64a450 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 
# $Header: /var/cvsroot/gentoo-x86/app-misc/gcal/gcal-3.01.ebuild,v 1.1 2003/02/10 13:57:28 seemant Exp $

IUSE="ncurses nls"

S=${WORKDIR}/${P}
DESCRIPTION="The GNU Calendar - a replacement for cal"
SRC_URI="ftp://ftp.gnu.org/pub/gnu/gcal/${P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/gcal/gcal.html"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~alpha"

DEPEND="nls? ( sys-devel/gettext )"

src_compile() {
	econf `use_enable nls` `use_enable ncurses` || die
	emake || die
}

src_install() {
	einstall || die
	dodoc ABOUT-NLS ATTENTION BUGS COPYING DISCLAIM HISTORY \
		INSTALL LIMITATIONS MANIFEST NEWS README SYMBOLS THANKS TODO

	# Need to fix up paths for scripts in misc directory
	# that are automatically created by the makefile
	dosed /usr/share/gcal/misc/*/*

	# Rebuild the symlinks that makefile created into the image /usr/bin
	# directory during make install 
	dosym /usr/share/gcal/misc/daily/daily /usr/bin/gcal-daily 
	dosym /usr/share/gcal/misc/ddiff/ddiff /usr/bin/gcal-ddiff 
	dosym /usr/share/gcal/misc/ddiff/ddiffdrv /usr/bin/gcal-ddiffdrv 
	dosym /usr/share/gcal/misc/dst/dst /usr/bin/gcal-dst 
	dosym /usr/share/gcal/misc/gcalltx/gcalltx /usr/bin/gcal-gcalltx 
	dosym /usr/share/gcal/misc/gcalltx/gcalltx.pl /usr/bin/gcal-gcalltx.pl 
	dosym /usr/share/gcal/misc/moon/moon /usr/bin/gcal-moon 
	dosym /usr/share/gcal/misc/mrms/mrms /usr/bin/gcal-mrms 
	dosym /usr/share/gcal/misc/srss/srss /usr/bin/gcal-srss 
	dosym /usr/share/gcal/misc/wloc/wlocdrv /usr/bin/gcal-wlocdrv
}