diff options
author | 2004-08-29 15:52:25 +0000 | |
---|---|---|
committer | 2004-08-29 15:52:25 +0000 | |
commit | 7e6bfc7ca17d9517f196caf8bea17e2ac475f9d5 (patch) | |
tree | 6f7d6cd4bfeeb50958d1cc9b4a17310033c1ae0e /app-misc/plextor-tool | |
parent | Version bump (masked in package.mask), removed old versions. (diff) | |
download | historical-7e6bfc7ca17d9517f196caf8bea17e2ac475f9d5.tar.gz historical-7e6bfc7ca17d9517f196caf8bea17e2ac475f9d5.tar.bz2 historical-7e6bfc7ca17d9517f196caf8bea17e2ac475f9d5.zip |
initial ebuild #62044
Diffstat (limited to 'app-misc/plextor-tool')
-rw-r--r-- | app-misc/plextor-tool/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/plextor-tool/Manifest | 13 | ||||
-rw-r--r-- | app-misc/plextor-tool/files/digest-plextor-tool-0.5.0 | 1 | ||||
-rw-r--r-- | app-misc/plextor-tool/plextor-tool-0.5.0.ebuild | 45 |
4 files changed, 67 insertions, 0 deletions
diff --git a/app-misc/plextor-tool/ChangeLog b/app-misc/plextor-tool/ChangeLog new file mode 100644 index 000000000000..ac7edda678d8 --- /dev/null +++ b/app-misc/plextor-tool/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for app-misc/plextor-tool +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/plextor-tool/ChangeLog,v 1.1 2004/08/29 15:52:25 vapier Exp $ + +*plextor-tool-0.5.0 (29 Aug 2004) + + 29 Aug 2004; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by Andreas Thalhammer #62044. diff --git a/app-misc/plextor-tool/Manifest b/app-misc/plextor-tool/Manifest new file mode 100644 index 000000000000..7ea08c78c09f --- /dev/null +++ b/app-misc/plextor-tool/Manifest @@ -0,0 +1,13 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 be6139eff49cd6f679c120c3897483ab ChangeLog 368 +MD5 2a9e0e5024cbceec9751f25b60c14fa2 plextor-tool-0.5.0.ebuild 1183 +MD5 314eb67b0d18075f122152b83e947bec files/digest-plextor-tool-0.5.0 74 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.9.10 (GNU/Linux) + +iD8DBQFBMfu/HTu7gpaalycRAkw9AKCiJWGWKkAfi4/PV3G1GxKfX/A9HgCg9lai +eJDBxAx5blmE5FTVdPdk6ko= +=sft8 +-----END PGP SIGNATURE----- diff --git a/app-misc/plextor-tool/files/digest-plextor-tool-0.5.0 b/app-misc/plextor-tool/files/digest-plextor-tool-0.5.0 new file mode 100644 index 000000000000..e9223a9663d5 --- /dev/null +++ b/app-misc/plextor-tool/files/digest-plextor-tool-0.5.0 @@ -0,0 +1 @@ +MD5 f3919c04e39bd71fddc8327331316113 plextor-tool-0.5.0.src.tar.bz2 51594 diff --git a/app-misc/plextor-tool/plextor-tool-0.5.0.ebuild b/app-misc/plextor-tool/plextor-tool-0.5.0.ebuild new file mode 100644 index 000000000000..2af9ad8124af --- /dev/null +++ b/app-misc/plextor-tool/plextor-tool-0.5.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/plextor-tool/plextor-tool-0.5.0.ebuild,v 1.1 2004/08/29 15:52:25 vapier Exp $ + +DESCRIPTION="Tool to change the parameters of a Plextor CD-ROM drive" +HOMEPAGE="http://das.ist.org/~georg/" +SRC_URI="http://das.ist.org/~georg/files/${P}.src.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="static gnome" + +RDEPEND="virtual/libc + gnome? ( gnome-base/gnome-panel )" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" + +S=${WORKDIR}/${PN} + +src_unpack() { + unpack ${A} + cd ${S}/src + sed -i \ + -e "/^CFLAGS=/s:$: ${CFLAGS}:" \ + Makefile || die "sed Makefile failed" +} + +src_compile() { + cd ${S}/src + local targets="plextor-tool" + use static && targets="${targets} pt-static" + use gnome && targets="${targets} plextor-tool-applet" +# use static && use gnome && targets="${targets} pta-static" + echo ${targets} > my-make-targets + emake ${targets} || die "make ${targets} failed" +} + +src_install() { + local targets="$(<src/my-make-targets)" + dodoc src/TODO doc/README doc/NEWS + cd src + dobin ${targets} || die "dobin failed" + doman plextor-tool.8.gz +} |