blob: a0b0966bd7ee4470b43174fd23500ef6d82227b9 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/expander/expander-2.0.5.ebuild,v 1.9 2008/12/30 21:43:53 angelos Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Expander is a utility that acts as a filter for text editors."
HOMEPAGE="http://www.nedit.org"
SRC_URI="ftp://ftp.nedit.org/pub/contrib/misc/nedit_expander_kit_2.05.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gentoo.patch
}
src_compile() {
cd src
emake compiler="$(tc-getCC) ${CFLAGS}" || die "make failed"
}
src_install() {
cd src
dobin expander boxcomment align_columns align_comments where_is
dosym /usr/bin/boxcomment /usr/bin/unboxcomment
insinto /usr/share/${P}
doins "${S}"/service
for x in defs macros misc templates ; do
insinto /usr/share/${P}/${x}
doins "${S}"/${x}/*
done
cd "${S}"/docs
doman *.1
cd "${S}"
dodoc ChangeLog INSTALL README USAGE
}
pkg_postinst() {
elog
elog "Instructions for using expander with NEdit are in /usr/share/doc/${PF}/INSTALL"
elog "Macro, definition and template files can be found in /usr/share/${P}"
elog
}
|