diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2010-07-14 13:56:59 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2010-07-14 13:56:59 +0000 |
commit | dec3a388e505ca1aa659c934e9316091db8c686d (patch) | |
tree | 67faaceb5c3bed8967380c6cfd3751810dd045f4 /net-ftp | |
parent | stable x86, bug 325713 (diff) | |
download | gentoo-2-dec3a388e505ca1aa659c934e9316091db8c686d.tar.gz gentoo-2-dec3a388e505ca1aa659c934e9316091db8c686d.tar.bz2 gentoo-2-dec3a388e505ca1aa659c934e9316091db8c686d.zip |
Remove old ebuild
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/qshare/ChangeLog | 5 | ||||
-rw-r--r-- | net-ftp/qshare/qshare-0.9.ebuild | 46 |
2 files changed, 4 insertions, 47 deletions
diff --git a/net-ftp/qshare/ChangeLog b/net-ftp/qshare/ChangeLog index 4a1117aa09f5..1f9fe97a1582 100644 --- a/net-ftp/qshare/ChangeLog +++ b/net-ftp/qshare/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-ftp/qshare # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/qshare/ChangeLog,v 1.5 2010/07/14 13:40:27 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/qshare/ChangeLog,v 1.6 2010/07/14 13:56:59 hwoarang Exp $ + + 14 Jul 2010; Markos Chandras <hwoarang@gentoo.org> -qshare-0.9.ebuild: + Remove old ebuild 14 Jul 2010; Christian Faulhammer <fauli@gentoo.org> qshare-1.3.ebuild: stable x86, bug 325639 diff --git a/net-ftp/qshare/qshare-0.9.ebuild b/net-ftp/qshare/qshare-0.9.ebuild deleted file mode 100644 index 3c837b90c071..000000000000 --- a/net-ftp/qshare/qshare-0.9.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/qshare/qshare-0.9.ebuild,v 1.2 2010/03/09 11:26:18 abcd Exp $ - -EAPI="2" - -LANGS="en fr" - -inherit qt4-r2 - -DESCRIPTION="FTP server with a service discovery feature." -HOMEPAGE="http://qt-apps.org/content/show.php/qShare?content=116612" -SRC_URI="http://qt-apps.org/CONTENT/content-files/116612-${P}-src.7z" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug" - -RDEPEND="x11-libs/qt-gui:4[debug?]" -DEPEND="${RDEPEND} - app-arch/p7zip" - -S="${WORKDIR}/${PN}" - -src_prepare() { - #fix translations - sed -i "s:i18n:usr\/share\/${PN}\/translations:" src/config.cpp \ - || die "failed to fix translations path" - qt4-r2_src_prepare -} - -src_install() { - dobin ${PN} || die "dobin failed" - doicon icons/${PN}.png - make_desktop_entry /usr/bin/${PN} QShare ${PN} "Qt;Network;FileTransfer" - dohtml docs/* || die "dohtml failed" - for X in ${LINGUAS}; do - for Z in ${LANGS}; do - if [[ ${X} == ${Z} ]]; then - insinto /usr/share/${PN}/translations/ - doins i18n/${PN}_${X}.qm || die "failed to install ${X} translation" - fi - done - done -} |