diff options
author | Steve Dibb <beandog@gentoo.org> | 2008-06-03 14:45:55 +0000 |
---|---|---|
committer | Steve Dibb <beandog@gentoo.org> | 2008-06-03 14:45:55 +0000 |
commit | 4f99776031d832c5cbc9d78537e79d519b6485ef (patch) | |
tree | cf81b3f9a98da7b4ad846a74753d9fccb96b8d64 /app-cdr/dvdisaster | |
parent | Rework timezone upgrade so as to not try and parse conf.d/clock on baselayout... (diff) | |
download | gentoo-2-4f99776031d832c5cbc9d78537e79d519b6485ef.tar.gz gentoo-2-4f99776031d832c5cbc9d78537e79d519b6485ef.tar.bz2 gentoo-2-4f99776031d832c5cbc9d78537e79d519b6485ef.zip |
Version bump, bug 216357
(Portage version: 2.1.5.3)
Diffstat (limited to 'app-cdr/dvdisaster')
-rw-r--r-- | app-cdr/dvdisaster/ChangeLog | 7 | ||||
-rw-r--r-- | app-cdr/dvdisaster/dvdisaster-0.71.26.ebuild | 79 |
2 files changed, 85 insertions, 1 deletions
diff --git a/app-cdr/dvdisaster/ChangeLog b/app-cdr/dvdisaster/ChangeLog index f32a72950c63..666299b90c99 100644 --- a/app-cdr/dvdisaster/ChangeLog +++ b/app-cdr/dvdisaster/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-cdr/dvdisaster # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/dvdisaster/ChangeLog,v 1.10 2008/05/29 06:08:44 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/dvdisaster/ChangeLog,v 1.11 2008/06/03 14:45:55 beandog Exp $ + +*dvdisaster-0.71.26 (03 Jun 2008) + + 03 Jun 2008; Steve Dibb <beandog@gentoo.org> +dvdisaster-0.71.26.ebuild: + Version bump, bug 216357 29 May 2008; Christian Heim <phreak@gentoo.org> metadata.xml: Removing Lars Weiler (Pylon) from metadata.xml (as per #215644). diff --git a/app-cdr/dvdisaster/dvdisaster-0.71.26.ebuild b/app-cdr/dvdisaster/dvdisaster-0.71.26.ebuild new file mode 100644 index 000000000000..c110548a8a69 --- /dev/null +++ b/app-cdr/dvdisaster/dvdisaster-0.71.26.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/dvdisaster/dvdisaster-0.71.26.ebuild,v 1.1 2008/06/03 14:45:55 beandog Exp $ + +inherit eutils gnome2 + +DESCRIPTION="Data-protection and recovery tool for DVDs" +HOMEPAGE="http://dvdisaster.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~x86" +SLOT="0" +IUSE_LINGUAS="linguas_cs linguas_de linguas_it linguas_sv" +IUSE="${IUSE_LINGUAS} gnome nls" + +DEPEND=">=x11-libs/gtk+-2.2 + dev-util/pkgconfig + nls? ( sys-devel/gettext )" +RDEPEND=">=x11-libs/gtk+-2.2 + nls? ( virtual/libintl )" + +S=${WORKDIR}/${P/.1/} + +src_compile() { + local myconf + # use_with won't work + if use nls ; then + myconf="${myconf} --with-nls=yes --localedir=/usr/share/locale" + else + myconf="${myconf} --with-nls=no" + fi + use debug && myconf="${myconf} --debug --with-memdebug=yes" + econf ${myconf} \ + --docdir=/usr/share/doc \ + --docsubdir=${PF} \ + || die "econf failed" + make || die "make failed" +} + +src_install() { + local docdir="${D}/usr/share/doc/${PF}" + local mandir="${D}/usr/share/man" + local localedir="${D}/usr/share/locale" + + make install \ + BINDIR=${D}/usr/bin \ + DOCSUBDIR=${docdir} \ + MANDIR=${mandir} \ + LOCALEDIR=${localedir} \ + || die "make install failed" + + insinto /usr/share/pixmaps + newins contrib/${PN}48.png ${PN}.png + for res in 16 32 48 64 ; do + insinto /usr/share/icons/hicolor/${res}x${res}/apps/ + newins contrib/${PN}${res}.png ${PN}.png + done + + sed -i -e "s:48::" "${S}"/contrib/${PN}.desktop || die "sed failed" + insinto /usr/share/applications + doins contrib/${PN}.desktop + + # no sane way to disable unwanted LINGUAS at compile time + # there are no Italian docs, only manpage and localization for now + for lang in cs de it sv ; do + use linguas_${lang} || rm -rf ${docdir}/${lang} ${mandir}/${lang} ${localedir}/${lang} + use linguas_${lang} || rm -f ${docdir}/CREDITS.${lang} + done + rm -f "${D}"/usr/bin/*.sh +} + +pkg_postinst() { + use gnome && gnome2_pkg_postinst +} + +pkg_postrm() { + use gnome && gnome2_pkg_postrm +} |