blob: 460818b92a333e1cbf86304df594610ed671a9a5 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/ksimus/ksimus-0.3.6-r1.ebuild,v 1.7 2004/04/16 05:29:12 vapier Exp $
inherit kde-base eutils
need-kde 3
MY_PATCH="ksimus-patch-0.3.6-2"
DESCRIPTION="KSimus is a KDE tool for simulation, automatization and visualization of technical processes."
HOMEPAGE="http://ksimus.berlios.de/"
SRC_URI="http://ksimus.berlios.de/download/ksimus-3-${PV}.tar.gz
http://ksimus.berlios.de/download/${MY_PATCH}.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=sys-apps/sed-4
sys-devel/autoconf"
RDEPEND=""
src_unpack() {
unpack ${A}
cd ${S}
epatch ../${MY_PATCH}
sed -i 's/head -\([1-9]\)/head -n \1/g' acinclude.m4 aclocal.m4 configure \
admin/acinclude.m4.in admin/cvs.sh admin/libtool.m4.in
make -f Makefile.dist # configure.in.in was patched
}
|