Removed obsolete stuff

This commit is contained in:
layman
2021-03-23 11:45:31 +01:00
parent 3e45e947ad
commit 96ed888ceb
27 changed files with 112 additions and 2305 deletions
-2
View File
@@ -1,2 +0,0 @@
EBUILD openscad-9999.ebuild 1078 BLAKE2B 1e7a71ddd28bbac2746b0eeaaf9b5dd249dce535af5d6ae4928cb572395c06923b9e55e04752b0e5078bbb8dc6c5479d09328997df8b3ed8107496bbbcc6a489 SHA512 46f09e3bb6d738ded79e07468d76ad0fe14db6616275137e75dc5cf291db50aa6117e3b354e75fcce9a8d179ad2a05391c7df7f4d9c5715dd19aef4f4ded127b
MISC metadata.xml 839 BLAKE2B 9a1245757665769e41645cf86d7b71c8688014aecf4e0574c6f3ea22e2b9af2bdd150e98fc7df95c79289db23a6c8c0a6fadc2f62ce9c8fbe058945e00741c5f SHA512 f13910d4339e820344e1c70edc384c4522ad506c50ffc80e843358199b0d2e27f9eafe99e4613f258a62abc4683b462d001fe71e19d849845f6f4cf75324ffd3
-13
View File
@@ -1,13 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>mattm@gentoo.org</email>
<name>Matthew Marlowe</name>
</maintainer>
<longdescription>
OpenSCAD is a software for creating solid 3D CAD objects. Unlike most free software for creating 3D models (such as the famous application Blender) it does not focus on the artistic aspects of 3D modelling but instead on the CAD aspects. Thus it might be the application you are looking for when you are planning to create 3D models of machine parts but pretty sure is not what you are looking for when you are more interested in creating computer-animated movies. OpenSCAD is free software and available for Linux/UNIX, MS Windows and Mac OS X.
</longdescription>
<use>
</use>
</pkgmetadata>
-57
View File
@@ -1,57 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit eutils qmake-utils
if [[ ${PV} == "9999" ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/openscad/openscad.git"
else
SRC_URI="http://files.openscad.org/${P}.src.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="The Programmers Solid 3D CAD Modeller"
HOMEPAGE="http://www.openscad.org/"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
CDEPEND="dev-util/ccache
media-gfx/opencsg
sci-mathematics/cgal
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtopengl:5
dev-cpp/eigen:3
dev-libs/gmp:0
dev-libs/mpfr:0
dev-libs/boost:=
>=x11-libs/qscintilla-2.10.7
"
DEPEND="${CDEPEND}"
RDEPEND="${CDEPEND}"
src_prepare() {
#Use our CFLAGS (specifically don't force x86)
sed -i "s/QMAKE_CXXFLAGS_RELEASE = .*//g" ${PN}.pro || die
sed -i "s/\/usr\/local/\/usr/g" ${PN}.pro || die
default
}
src_configure() {
local myqmakeargs=(
openscad.pro
)
eqmake5 "${myqmakeargs[@]}"
}
src_install() {
emake INSTALL_ROOT="${D}" install
}