diff options
author | V3n3RiX <venerix@rogentos.ro> | 2016-03-20 07:50:22 +0000 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2016-03-20 07:50:22 +0000 |
commit | 66f3f39974c987cce75b876fb89bd554d5657369 (patch) | |
tree | c2c1b16b71893696af133351d913725fdb82b648 | |
parent | 54ed447c1052f9bfefb5bd5209b40c70ad195224 (diff) |
vasile 1.2, the version that breaks argent
-rw-r--r-- | app-admin/vasile/vasile-1.2.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app-admin/vasile/vasile-1.2.ebuild b/app-admin/vasile/vasile-1.2.ebuild new file mode 100644 index 00000000..2b5d4b6d --- /dev/null +++ b/app-admin/vasile/vasile-1.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils git-2 + +DESCRIPTION="RogentOS Development Group buildbot, a safer alternative to Sabayons app-admin/matter" +HOMEPAGE="http://rogentos.ro" + +EGIT_BRANCH="master" +EGIT_REPO_URI="https://gitlab.com/rogentos/vasile.git" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +DEPEND=" + sys-fs/squashfs-tools + sys-boot/grub:2 + dev-libs/libisoburn + sys-fs/mtools" +RDEPEND="${DEPEND}" + +src_install() { + dodir /usr/bin + exeinto /usr/bin + doexe ${S}/${PN} + dodir /usr/$(get_libdir)/${PN} + insinto /usr/$(get_libdir)/${PN} + doins ${S}/libvasile + dodir /usr/share/${PN} + insinto /usr/share/${PN} + doins ${S}/build* + doins ${S}/iso* +} + |