diff options
author | V3n3RiX <venerix@rogentos.ro> | 2016-11-06 08:45:33 +0000 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2016-11-06 08:45:33 +0000 |
commit | 504532c0420a809db0dcda6269fd5b44b24256a0 (patch) | |
tree | 127e89e086392d8419c442cca9b17d8deff0b39d /app-admin/vasile | |
parent | c51257e7ecfd7ea0c3bc857657de05faf5dc9a35 (diff) |
rebranding
Diffstat (limited to 'app-admin/vasile')
-rw-r--r-- | app-admin/vasile/vasile-2.2.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/app-admin/vasile/vasile-2.2.ebuild b/app-admin/vasile/vasile-2.2.ebuild new file mode 100644 index 00000000..a7f134e6 --- /dev/null +++ b/app-admin/vasile/vasile-2.2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils git-2 + +DESCRIPTION="Versatile Advanced Script for ISO and Latest Enchantments" +HOMEPAGE="http://redcorelinux.org" + +EGIT_BRANCH="master" +EGIT_REPO_URI="https://gitlab.com/redcore/vasile.git" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64" +IUSE="" + +DEPEND=" + sys-apps/gentoo-functions + 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} + insopts -m 755 + doins ${S}/make* + doins ${S}/devmodeset + doins ${S}/usermodeset + doins ${S}/modereset +} + |