summaryrefslogtreecommitdiff
blob: f1567ff2b9a6721884c1ada8a08206c8585a1999 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/jasspa-microemacs/jasspa-microemacs-20021205.ebuild,v 1.6 2005/01/01 13:28:01 eradicator Exp $

MY_PV=${PV:2}	# 20021205 -> 021205

DESCRIPTION="Jasspa Microemacs"
HOMEPAGE="http://www.jasspa.com/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
# downloaded from:
#SRC_URI="http://www.jasspa.com/release_${MY_PV}/memacros.tar.gz 
#	http://www.jasspa.com/release_${MY_PV}/me.ehf.gz
#	http://www.jasspa.com/release_${MY_PV}/mehtml.tar.gz
#	http://www.jasspa.com/release_${MY_PV}/mesrc.tar.gz 
#	http://www.jasspa.com/release_${MY_PV}/meicons.tar.gz 
#	http://www.jasspa.com/release_${MY_PV}/meicons-extra.tar.gz"
##	http://www.jasspa.com/spelling/ls_enus.tar.gz
##	http://www.jasspa.com/release_${MY_PV}/readme.jasspa_gnome

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="X"

DEPEND="virtual/libc
	sys-libs/ncurses
	X? ( virtual/x11 )"

src_compile() {
	sed -i "/^COPTIMISE/s/.*/COPTIMISE = ${CFLAGS}/" linux2.gmk
	local loadpath="~/.jasspa:/usr/share/jasspa/site:/usr/share/jasspa"
	if use X
	then
		./build -p "$loadpath"
	else
		./build -t c -p "$loadpath"
	fi
	mv me me32
	cat >me <<'EOT'
#!/bin/bash
if [[ -n "$DISPLAY" ]]
then
	set +m; /usr/bin/me32 "$@"
else
	# ixon allows ctrl S to be used for searching
	stty -ixon; /usr/bin/me32 "$@"; stty ixon
fi
EOT
}

src_install() {
	dodir /usr/share/jasspa
	keepdir /usr/share/jasspa/site
	dobin me
	dobin me32
	cp -r ${S}/stagging/* ${D}/usr/share/jasspa
}