diff options
author | Karel Kočí <cynerd@email.cz> | 2020-05-28 14:58:38 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2020-05-28 14:58:38 +0200 |
commit | a9111ed324cbd219713ab4acf8dcdcba1cc7a049 (patch) | |
tree | 27da116f78899f9d63f01caa48bf55cb5192805c /dev-util/laminar/laminar-0.8-r3.ebuild | |
parent | a8947f7987ddf4dd0e4776280cd60eb16414fd5b (diff) | |
download | gentoo-personal-overlay-a9111ed324cbd219713ab4acf8dcdcba1cc7a049.tar.gz gentoo-personal-overlay-a9111ed324cbd219713ab4acf8dcdcba1cc7a049.tar.bz2 gentoo-personal-overlay-a9111ed324cbd219713ab4acf8dcdcba1cc7a049.zip |
dev-util/laminar: try to fix laminar compilation by using latest
Diffstat (limited to 'dev-util/laminar/laminar-0.8-r3.ebuild')
-rw-r--r-- | dev-util/laminar/laminar-0.8-r3.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/dev-util/laminar/laminar-0.8-r3.ebuild b/dev-util/laminar/laminar-0.8-r3.ebuild deleted file mode 100644 index 479ed3b..0000000 --- a/dev-util/laminar/laminar-0.8-r3.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="Lightweight and modular Continuous Integration service for Linux" -HOMEPAGE="http://laminar.ohwg.net/" -SRC_URI="https://github.com/ohwgiles/${PN}/archive/${PV}.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} - acct-user/build -" - -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 -} |