aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-util/gplex-dbremner/gplex-dbremner-1.2.2_p2015112101.ebuild')
-rw-r--r--dev-util/gplex-dbremner/gplex-dbremner-1.2.2_p2015112101.ebuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/dev-util/gplex-dbremner/gplex-dbremner-1.2.2_p2015112101.ebuild b/dev-util/gplex-dbremner/gplex-dbremner-1.2.2_p2015112101.ebuild
deleted file mode 100644
index ed401b3..0000000
--- a/dev-util/gplex-dbremner/gplex-dbremner-1.2.2_p2015112101.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-SLOT="0"
-
-KEYWORDS="~amd64"
-USE_DOTNET="net45"
-
-inherit dotnet
-
-IUSE="+${USE_DOTNET} debug"
-
-NAME="gplex"
-HOMEPAGE="https://github.com/dbremner/${NAME}"
-DESCRIPTION="C# version of lex (Garden Point Lex)"
-LICENSE="BSD" # https://gplex.codeplex.com/license
-
-SRC_URI="https://github.com/ArsenShnurkov/shnurise-tarballs/archive/${CATEGORY}/${PN}/${PN}-${PV}.tar.gz"
-RESTRICT="mirror"
-S="${WORKDIR}/shnurise-tarballs-${CATEGORY}-${PN}-${PN}-${PV}"
-
-src_prepare() {
- eapply "${FILESDIR}/fix-error-in-member-variable-name.patch"
- eapply "${FILESDIR}/output-path.patch"
- eapply_user
-}
-
-src_compile() {
- exbuild "GPLEXv1.sln"
-}
-
-src_install() {
- insinto "/usr/share/${PN}"
- if use debug; then
- newins bin/Debug/Gplex.exe gplex.exe
- make_wrapper gplex "/usr/bin/mono --debug /usr/share/${PN}/gplex.exe"
- else
- newins bin/Release/Gplex.exe gplex.exe
- make_wrapper gplex "/usr/bin/mono /usr/share/${PN}/gplex.exe"
- fi
-}