blob: 35e6f13cda81d5ed1a7b0449d1ab38d7f4f13600 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-misc/qcad-parts/qcad-parts-2.0.1.2-r1.ebuild,v 1.1 2006/01/10 03:14:43 markusle Exp $
MY_PN="partlibrary"
MY_PV="${PV}-1"
DESCRIPTION="Collection of CAD files that can be used from the library browser of QCad"
LICENSE="GPL-2"
HOMEPAGE="http://www.ribbonsoft.com/qcad_library.html"
SRC_URI="http://www.ribbonsoft.com/archives/partlibrary/partlibrary-${MY_PV}.zip"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE=""
DEPEND="app-arch/unzip"
S="${WORKDIR}/${MY_PN}-${MY_PV}"
src_install() {
cd "${S}"
einfo "Fixing permissions - this might take a while"
insinto /usr/share/${PN}
doins -r ./* || die "Failed installing qcad-parts files"
}
pkg_postinst() {
einfo
einfo "The QCad parts library was installed in"
einfo "/usr/share/${PN}"
einfo "Please set this path in QCad's preferences to access it."
einfo "(Edit->Application Preferences->Paths->Part Libraries)"
einfo
einfo "After restarting QCad, you can use the library by selecting"
einfo "View->Views->Library Browser"
einfo
}
|