summaryrefslogtreecommitdiff
path: root/dev-util/laminar/laminar-0.6.0.7.ebuild
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2019-04-28 00:09:24 +0200
committerKarel Kočí <cynerd@email.cz>2019-04-28 00:09:24 +0200
commit34534d5da216649e1479d0d8ef03650125c15171 (patch)
treef82d58f3e523ccf22347a9a5bb59fd4ba6bb256f /dev-util/laminar/laminar-0.6.0.7.ebuild
parent238250cf65eeeda5e89ea3efc7b9bfa2901844fc (diff)
downloadgentoo-personal-overlay-34534d5da216649e1479d0d8ef03650125c15171.tar.gz
gentoo-personal-overlay-34534d5da216649e1479d0d8ef03650125c15171.tar.bz2
gentoo-personal-overlay-34534d5da216649e1479d0d8ef03650125c15171.zip
dev-util/laminar: update to 0.7 release
Diffstat (limited to 'dev-util/laminar/laminar-0.6.0.7.ebuild')
-rw-r--r--dev-util/laminar/laminar-0.6.0.7.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/dev-util/laminar/laminar-0.6.0.7.ebuild b/dev-util/laminar/laminar-0.6.0.7.ebuild
deleted file mode 100644
index f2e9c6e..0000000
--- a/dev-util/laminar/laminar-0.6.0.7.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-EAPI=6
-
-inherit cmake-utils
-
-HASHV="0c67d4c8447b999f456d64addc6106bb318e87ee"
-DESCRIPTION="Lightweight and modular Continuous Integration service for Linux"
-HOMEPAGE="http://laminar.ohwg.net/"
-SRC_URI="https://github.com/ohwgiles/${PN}/archive/${HASHV}.tar.gz -> ${P}.tar.gz
- https://cdnjs.cloudflare.com/ajax/libs/vue/2.3.4/vue.min.js -> ${P}-vue.min.js
- https://cdnjs.cloudflare.com/ajax/libs/vue-router/2.7.0/vue-router.min.js -> ${P}-vue-router.min.js
- https://raw.githubusercontent.com/drudru/ansi_up/v1.3.0/ansi_up.js -> ${P}-ansi_up.js
- https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.2/Chart.min.js -> ${P}-Chart.min.js
- https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css -> ${P}-bootstrap.min.css"
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
- dev-libs/capnproto
- dev-libs/rapidjson
- dev-db/sqlite
- dev-libs/boost"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/laminar-${HASHV}"
-
-src_unpack() {
- # Note that ${A} contains also other files so no general unpack
- unpack "${P}.tar.gz"
-}
-
-# Note: lamianr build system in default downloads external files but that is not
-# possible for some reason in sandbox. THis downloads those files outside of
-# scripts and copies them to correct place before configure which prevents from
-# download happening/failing.
-src_configure() {
- local BUILD_DIR="${WORKDIR}/${P}_build"
- mkdir -p ${BUILD_DIR}/js
- for file in vue.min.js vue-router.min.js ansi_up.js Chart.min.js; do
- cat "${DISTDIR}/${P}-${file}" > "${BUILD_DIR}/js/${file}"
- done
- mkdir -p ${BUILD_DIR}/css
- for file in bootstrap.min.css; do
- cat "${DISTDIR}/${P}-${file}" > "${BUILD_DIR}/css/${file}"
- done
-
- local mycmakeargs=(
- "-DCMAKE_INSTALL_PREFIX=/"
- )
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
- newinitd "${FILESDIR}/laminar.init" laminar
-}