blob: 6e5d23abc85309093abe2452dcb32a4b5e828dd6 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/kylixlibs3-borqt/kylixlibs3-borqt-3.0.ebuild,v 1.4 2004/04/17 23:02:17 aliz Exp $
S=${WORKDIR}/${PN}
DESCRIPTION="Kylix 3 OE libraries"
HOMEPAGE="http://kylixlibs.sf.net"
SRC_URI="mirror://sourceforge/kylixlibs/${P}-2.tar.gz"
IUSE=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
DEPEND="x11-libs/qt"
src_compile() {
echo "Nothing to compile for ${P}."
}
src_install () {
dodir /opt/kylix3
insinto /opt/kylix3
doins libborqt-6.9.0-qt2.3.so
insinto /opt/kylix3
newins libborqt-6.9.0-qt2.3.so libborqt-6.9-qt2.3.so
dodoc README
}
pkg_postinst() {
einfo "If is the first install of ${P}"
einfo "you need to run:"
einfo "ebuild /var/db/pkg/x11-libs/${P}/${P}.ebuild config"
}
pkg_config() {
grep -q "^/usr/lib/kylix3\$" /etc/ld.so.conf
if [ $? == 1 ]; then
echo /opt/kylix3 >> /etc/ld.so.conf
fi
ldconfig
}
|