diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-19 09:40:54 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-19 09:40:54 +0000 |
commit | d11dc1a266e147e9e305ce5952c7a5c3a23e10b1 (patch) | |
tree | 7e2453326ea0b60e2eb6615391f04128e624f2fc /app-cdr/multicd | |
parent | fix depend (bug #45110); tidy (diff) | |
download | historical-d11dc1a266e147e9e305ce5952c7a5c3a23e10b1.tar.gz historical-d11dc1a266e147e9e305ce5952c7a5c3a23e10b1.tar.bz2 historical-d11dc1a266e147e9e305ce5952c7a5c3a23e10b1.zip |
fix depend (bug #45110); tidy
Diffstat (limited to 'app-cdr/multicd')
-rw-r--r-- | app-cdr/multicd/ChangeLog | 7 | ||||
-rw-r--r-- | app-cdr/multicd/Manifest | 4 | ||||
-rw-r--r-- | app-cdr/multicd/multicd-1.7.2.ebuild | 15 |
3 files changed, 15 insertions, 11 deletions
diff --git a/app-cdr/multicd/ChangeLog b/app-cdr/multicd/ChangeLog index aa25ce99e17a..f5249eaac9ea 100644 --- a/app-cdr/multicd/ChangeLog +++ b/app-cdr/multicd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-cdr/multicd -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/multicd/ChangeLog,v 1.1 2003/10/09 16:15:10 mholzer Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/multicd/ChangeLog,v 1.2 2004/03/19 09:40:54 mr_bones_ Exp $ + + 19 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> multicd-1.7.2.ebuild: + fix depend (bug #45110); tidy *multicd-1.7.2 (10 Oct 2003) diff --git a/app-cdr/multicd/Manifest b/app-cdr/multicd/Manifest index c9d29fd92d5d..3afdd3a8f32b 100644 --- a/app-cdr/multicd/Manifest +++ b/app-cdr/multicd/Manifest @@ -1,3 +1,3 @@ -MD5 0a97fa708b6be36d27c932eb17908ec1 ChangeLog 401 -MD5 17903496cdd3f220577456a46b47a94f multicd-1.7.2.ebuild 764 +MD5 a7842b22a4c7316a2668d90180d44808 ChangeLog 513 +MD5 d799a56feda4709217ea50a6d28ad995 multicd-1.7.2.ebuild 775 MD5 54363392c9f700ede6a5d844ace05e44 files/digest-multicd-1.7.2 64 diff --git a/app-cdr/multicd/multicd-1.7.2.ebuild b/app-cdr/multicd/multicd-1.7.2.ebuild index 65141cdadef0..170445ef282b 100644 --- a/app-cdr/multicd/multicd-1.7.2.ebuild +++ b/app-cdr/multicd/multicd-1.7.2.ebuild @@ -1,28 +1,29 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/multicd/multicd-1.7.2.ebuild,v 1.3 2004/03/12 12:02:37 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/multicd/multicd-1.7.2.ebuild,v 1.4 2004/03/19 09:40:54 mr_bones_ Exp $ DESCRIPTION="Tool for making direct copies of your files to multiple cd's" HOMEPAGE="http://danborn.net/multicd/" SRC_URI="http://danborn.net/multicd/${P}.tar.gz" + LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" -RDEPEND=">=perl-5.6.1 + +RDEPEND=">=dev-lang/perl-5.6.1 >=app-cdr/cdrtools-1.11.33" src_install() { - dodir /opt/${PN} - exeinto /opt/${PN} - doexe multicd + exeinto "/opt/${PN}" + doexe multicd || die "doexe failed" dodoc sample_multicdrc } pkg_postinst() { - einfo "" + einfo einfo "Copy and edit sample configuration file from" einfo "/usr/share/doc/${PF}" einfo "directory to /etc directory as multicdrc" - einfo "" + einfo } |