blob: 1373dcbabca755265eac264e453344be66d7eb33 (
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
58
59
60
61
62
63
64
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/pccts/pccts-1.33.33.ebuild,v 1.12 2004/11/08 23:54:08 carlo Exp $
inherit eutils
S=${WORKDIR}/${PN}
DESCRIPTION="Purdue Compiler Construction Tool Set is an embedded C/C++ parser generator"
SRC_URI="http://www.polhode.com/pccts133mr33.zip"
HOMEPAGE="http://www.polhode.com/"
SLOT="0"
LICENSE="BSD"
KEYWORDS="x86 ~ppc sparc alpha hppa amd64 ia64 ~ppc-macos"
IUSE=""
DEPEND="app-arch/unzip"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PF}-gentoo.diff || die "epatch failed."
}
src_compile() {
emake COPT="${CFLAGS}" || die "compilation failed"
}
src_install() {
# main binaries
dobin bin/{antlr,dlg,genmk,sor}
# .c and .cpp files go into /usr/include/pccts also,
# because genmk looks for them for being included in output-files
# (which are c/c++) generated from grammar-files
# right now i include _everything_ just to make sure
# it doesn't break pccts-based projects
#
# if i dive further into the details of genmk.c
# it should be possible to put that stuff into /usr/share/pccts
#
# the M$ and MAC specific stuff gets _not_ included
#
# main includes
insinto /usr/include/pccts
doins h/*.{h,c,cpp}
# sorcerer includes
insinto /usr/include/pccts/sorcerer
doins sorcerer/h/*.{h,c,cpp}
# sorcerer libraries
insinto /usr/include/pccts/sorcerer/lib
doins sorcerer/lib/*.{h,c,cpp}
# documentation
# leaving out the M$ and MAC stuff
dodoc CHANGES* KNOWN_PROBLEMS* README RIGHTS history.txt history.ps
dodoc sorcerer/README sorcerer/UPDATES
# manual pages
doman dlg/dlg.1 antlr/antlr.1
}
|