diff options
Diffstat (limited to 'app-cdr/pburn')
-rw-r--r-- | app-cdr/pburn/Manifest | 3 | ||||
-rw-r--r-- | app-cdr/pburn/metadata.xml | 5 | ||||
-rw-r--r-- | app-cdr/pburn/pburn-3.4.3.ebuild | 53 |
3 files changed, 61 insertions, 0 deletions
diff --git a/app-cdr/pburn/Manifest b/app-cdr/pburn/Manifest new file mode 100644 index 000000000000..0114ca77dc85 --- /dev/null +++ b/app-cdr/pburn/Manifest @@ -0,0 +1,3 @@ +DIST pburn-3.4.3.pet 66536 BLAKE2B 9a3129f5a7d85adbbf376c92b40eaf4036a931987752da3a18a265474d60913df47d0a29e06574ee5018c552ebff85dcd149f4f13b9a69655c5a78169eb8ccce SHA512 8bd67dfb9b3c08510ff9b675ec69929a0719871e2c9924fb4defe41147e2c7096b305776cca7f07fe7a28ec65133106636ee5804ca43ca2b5f6e1fe487eed99c +EBUILD pburn-3.4.3.ebuild 1114 BLAKE2B 9eff85207ba26301d1ca23f2e5ce3ce748e2d2a06eb6881be10783e071ae8cbfcf4fe2ff9e28f65b5db8d4558670c2df604daf8adb02a02de125def25c0a8bb5 SHA512 7bb35d89f8d0e78f4973338cfa9488ca229fc2d4c80a1dd78df8f23466c018793b5a244c2720d3af945389c35999969313d7f202f36be8d55825f70f370d4ea8 +MISC metadata.xml 166 BLAKE2B c254f1fb642881aba57637be14fb0a89b10384f91a128feaec3a8c870d76efc2cbacb92caccc0dee2dd19a5ac5eaf8643080dafa05c4e2ac96a68568927e5afd SHA512 a56648c974a1d14dd4c18237532773c72057a13ab90c58b5da04f185e3c12a8bd8d5c21fb06053507f31766291a82dc7d87b34cd65fd94cfe2af7295c813ef84 diff --git a/app-cdr/pburn/metadata.xml b/app-cdr/pburn/metadata.xml new file mode 100644 index 000000000000..6f49eba8f496 --- /dev/null +++ b/app-cdr/pburn/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<!-- maintainer-needed --> +</pkgmetadata> diff --git a/app-cdr/pburn/pburn-3.4.3.ebuild b/app-cdr/pburn/pburn-3.4.3.ebuild new file mode 100644 index 000000000000..4b38d8c05bdb --- /dev/null +++ b/app-cdr/pburn/pburn-3.4.3.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +# wget --user puppy --password linux "http://www.meownplanet.net/zigbert/${P}.pet" + +EAPI=4 +inherit eutils + +DESCRIPTION="A burning tool with GTK+ frontend" +HOMEPAGE="http://murga-linux.com/puppy/viewtopic.php?t=23881" +SRC_URI="mirror://gentoo/${P}.pet" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="app-admin/killproc + app-cdr/cddetect + app-cdr/dvd+rw-tools + sys-apps/hotplug2stdout + virtual/cdrtools + >=x11-misc/gtkdialog-0.8.0" +DEPEND="app-arch/pet2tgz" + +src_unpack() { + pet2tgz -i "${DISTDIR}"/${P}.pet -o "${WORKDIR}"/${P}.tar.gz + unpack ./${P}.tar.gz +} + +src_prepare() { + cat <<-EOF > "${T}"/${PN} + #!/bin/bash + "/usr/share/${PN}/${PN}" "\$@" + EOF + + sed -i -e 's:usleep:/sbin/&:' usr/local/pburn/box_splash || die +} + +src_install() { + dobin "${T}"/${PN} + + dodir /usr/share + cp -dpR usr/local/${PN} "${D}"/usr/share || die + + make_desktop_entry \ + ${PN} \ + "Pburn CD/DVD/Blu-ray writer" \ + /usr/share/${PN}/${PN}20.png \ + "AudioVideo;DiscBurning" + + dohtml -r usr/share/doc/${PN} +} |