blob: a0b573e1eb1d6d7325daa9e3cfffdc43e588ab63 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/silvercity/silvercity-0.9.6.ebuild,v 1.1 2006/02/05 14:08:48 dju Exp $
inherit distutils python
DESCRIPTION="A lexical analyser for many languages."
HOMEPAGE="http://silvercity.sourceforge.net/"
MY_P=${P/silvercity/SilverCity}
SRC_URI="mirror://sourceforge/silvercity/${MY_P}.tar.gz"
S=${WORKDIR}/${MY_P}
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc-macos ~sparc ~x86"
IUSE=""
DEPEND=">=dev-lang/python-2.3"
src_install() {
distutils_src_install
# fix permissions
python_version
chmod 644 ${D}/usr/$(get_libdir)/python${PYVER}/site-packages/SilverCity/default.css
# fix CR/LF issue
find ${D}/usr/bin -iname "*.py" -exec sed -e 's/\r$//' -i \{\} \;
# fix path
dosed -i 's|#!/usr/home/sweetapp/bin/python|#!/usr/bin/env python|' \
/usr/bin/cgi-styler-form.py || die "dosed failed"
}
|