diff options
author | 2007-10-28 10:11:46 +0000 | |
---|---|---|
committer | 2007-10-28 10:11:46 +0000 | |
commit | c220253a8c5e89a04b92a206a5f69ace2064f0b8 (patch) | |
tree | 8badd4632a3da0ec3bbfb70efc83096b11d93f16 /net-misc/d4x/d4x-2.5.6.ebuild | |
parent | version bump (diff) | |
download | historical-c220253a8c5e89a04b92a206a5f69ace2064f0b8.tar.gz historical-c220253a8c5e89a04b92a206a5f69ace2064f0b8.tar.bz2 historical-c220253a8c5e89a04b92a206a5f69ace2064f0b8.zip |
New ebuild and patch for #111769, #130479 and #193360 plus more.
Package-Manager: portage-2.1.3.16
Diffstat (limited to 'net-misc/d4x/d4x-2.5.6.ebuild')
-rw-r--r-- | net-misc/d4x/d4x-2.5.6.ebuild | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/net-misc/d4x/d4x-2.5.6.ebuild b/net-misc/d4x/d4x-2.5.6.ebuild deleted file mode 100644 index 24115033497b..000000000000 --- a/net-misc/d4x/d4x-2.5.6.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/d4x/d4x-2.5.6.ebuild,v 1.4 2006/04/24 00:42:44 metalgod Exp $ - -IUSE="nls esd gnome oss kde" - -inherit eutils flag-o-matic - -DESCRIPTION="GTK based download manager for X." -SRC_URI="http://www.krasu.ru/soft/chuchelo/files/${P}.tar.gz" -HOMEPAGE="http://www.krasu.ru/soft/chuchelo/" - -KEYWORDS="amd64 x86" -SLOT="0" -LICENSE="Artistic" - -DEPEND=">=x11-libs/gtk+-2.0.6 - >=dev-libs/glib-2.0.6 - >=sys-devel/gettext-0.11.2 - >=dev-libs/openssl-0.9.7e - esd? ( >=media-sound/esound-0.2.7 )" - -src_unpack() { - unpack ${A} - - epatch "${FILESDIR}/${P}-libintl_fix.patch" - - # Use our own $CXXFLAGS - cd ${S} - cp configure configure.orig - sed -e "s:CXXFLAGS=\"-O2\":CXXFLAGS=\"${CXXFLAGS}\":g;s:OPTFLAGS=\"-O2\":OPTFLAGS=\"\":g" \ - configure.orig >configure -} - -src_compile() { - - myconf="" - append-flags -D_FILE_OFFSET_BITS=64 - - use nls \ - && myconf="${myconf} --enable-nls" \ - || myconf="${myconf} --disable-nls" - - use esd \ - && myconf="${myconf} --enable-esd" \ - || myconf="${myconf} --disable-esd" - - use oss \ - && myconf="${myconf} --enable-oss" \ - || myconf="${myconf} --disable-oss" - - econf --enable-release \ - ${myconf} || die - - emake || die -} - -src_install () { - - dodir /usr/bin - dodir /usr/share/d4x - - einstall || die - - insinto /usr/share/pixmaps - doins share/*.png share/*.xpm - - if use kde - then - insinto /usr/share/applnk/Internet - newins share/nt.desktop d4x.desktop - fi - - if use gnome - then - echo "Categories=Application;Network;" >> ${S}/share/nt.desktop - insinto /usr/share/applications - newins share/nt.desktop d4x.desktop - fi - - rm -rf ${D}/usr/share/d4x/{FAQ*,INSTALL*,README*,LICENSE,NAMES,TROUBLES} - dodoc AUTHORS COPYING ChangeLog* NEWS PLANS TODO \ - DOC/{FAQ*,LICENSE,NAMES,README*,TROUBLES,THANKS} -} |