789783addb
git-svn-id: http://svn.sabayonlinux.org/overlay@4 d7aec97c-591d-0410-af39-a8856400b30a
35 lines
841 B
Bash
35 lines
841 B
Bash
## Package by jhawk of SabayonLinux ##
|
|
## Ebuild by cvill64 of SabayonLinux ##
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
inherit eutils
|
|
|
|
DESCRIPTION="A GUI configuration tool to easily implement udftools for backups"
|
|
SRC_URI="http://sabayonlinuxdev.com/distfiles/sys-fs/${PN}-1.0.tar.gz"
|
|
HOMEPAGE="http://svn.sabayonlinuxdev.com/jhawk/udftool"
|
|
GENTOO_MIRRORS="http://sabayonlinuxdev.com/distfiles/"
|
|
SLOT="0"
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~x86 ~amd64"
|
|
RDEPEND="${DEPEND}
|
|
sys-fs/udftools
|
|
dev-lang/python
|
|
"
|
|
S=${WORKDIR}/${PN}
|
|
src_unpack() {
|
|
unpack ${A}
|
|
}
|
|
|
|
src_compile() {
|
|
einfo "Nothing to compile"
|
|
}
|
|
|
|
src_install() {
|
|
dodir /usr/share/${PN}
|
|
cp -dPR ${S} ${D}/usr/share/
|
|
dosym /usr/share/${PN} /usr/bin/${PN}
|
|
dobin ${PN}
|
|
doicon cdwriter.png
|
|
}
|