diff options
author | Saleem Abdulrasool <compnerd@gentoo.org> | 2007-08-14 02:40:20 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@gentoo.org> | 2007-08-14 02:40:20 +0000 |
commit | 8590f9cc62eeb8d808186e7c385a64485bb0f929 (patch) | |
tree | 90133e9f24c2a8ea906b9b31a3dae5065017fc37 /net-p2p/transmission/transmission-0.6.1-r1.ebuild | |
parent | Keyword ~ppc. (diff) | |
download | historical-8590f9cc62eeb8d808186e7c385a64485bb0f929.tar.gz historical-8590f9cc62eeb8d808186e7c385a64485bb0f929.tar.bz2 historical-8590f9cc62eeb8d808186e7c385a64485bb0f929.zip |
prune unused versions
Package-Manager: portage-2.1.3.4
Diffstat (limited to 'net-p2p/transmission/transmission-0.6.1-r1.ebuild')
-rw-r--r-- | net-p2p/transmission/transmission-0.6.1-r1.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/net-p2p/transmission/transmission-0.6.1-r1.ebuild b/net-p2p/transmission/transmission-0.6.1-r1.ebuild deleted file mode 100644 index 27fd1494e525..000000000000 --- a/net-p2p/transmission/transmission-0.6.1-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/transmission-0.6.1-r1.ebuild,v 1.7 2007/05/07 17:20:24 dertobi123 Exp $ - -inherit eutils - -MY_PN="Transmission" - -DESCRIPTION="Simple BitTorrent client" -HOMEPAGE="http://transmission.m0k.org/" -SRC_URI="http://download.m0k.org/transmission/files/${MY_PN}-${PV}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="gtk" - -RDEPEND="sys-devel/gettext - dev-libs/openssl - gtk? ( >=x11-libs/gtk+-2.6 )" -DEPEND="${RDEPEND} - sys-devel/gettext - >=dev-util/pkgconfig-0.19" - -S="${WORKDIR}/${MY_PN}-${PV}" - -src_unpack() { - unpack ${A} - cd ${S} - - epatch ${FILESDIR}/${PN}-0.6.1-gtk+-check.patch - epatch ${FILESDIR}/${PN}-0.6.1-as-needed.patch - - # Fix man page install location - sed -i -e 's|/man/man1|/share/man/man1|' mk/common.mk -} - -src_compile() { - econf $(use_enable gtk) || die "configure failed" - emake || die "build failed" -} - -src_install() { - make PREFIX="${D}/usr" LOCALEDIR="\$(PREFIX)/share/locale" install \ - || die "install failed" - - if use gtk ; then - doicon "${FILESDIR}/transmission.png" - make_desktop_entry "transmission-gtk" "${PN}" "${PN}.png" \ - "Network;Internet;P2P" - fi - - dodoc AUTHORS NEWS README -} |