blob: 5d6e59760c45e6844b60b7f2dfcd146a066aafb2 (
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-2006 Gentoo Foundation
# 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.7 2006/10/28 12:22:08 swegener 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-3*"
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 "emerge --config =${CATEGORY}/${PF}"
}
pkg_config() {
grep -q "^/usr/lib/kylix3\$" /etc/ld.so.conf
if [ $? == 1 ]; then
echo /opt/kylix3 >> /etc/ld.so.conf
fi
ldconfig
}
|