summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDror Levin <spatz@gentoo.org>2010-02-09 20:04:40 +0000
committerDror Levin <spatz@gentoo.org>2010-02-09 20:04:40 +0000
commit05d383d9c65c5fdd745579dbe98415e3fdd1a196 (patch)
tree292307250231fe21f611be169e3ce3c916c214a0 /app-admin
parentAdd patch to fix command line handling, bug 302757. Clean old patches. (diff)
downloadgentoo-2-05d383d9c65c5fdd745579dbe98415e3fdd1a196.tar.gz
gentoo-2-05d383d9c65c5fdd745579dbe98415e3fdd1a196.tar.bz2
gentoo-2-05d383d9c65c5fdd745579dbe98415e3fdd1a196.zip
Remove old.
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/keepassx/ChangeLog5
-rw-r--r--app-admin/keepassx/keepassx-0.3.4.ebuild45
2 files changed, 4 insertions, 46 deletions
diff --git a/app-admin/keepassx/ChangeLog b/app-admin/keepassx/ChangeLog
index 9334ccd1fa18..4b6e376632d6 100644
--- a/app-admin/keepassx/ChangeLog
+++ b/app-admin/keepassx/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-admin/keepassx
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/keepassx/ChangeLog,v 1.47 2010/01/10 21:35:25 spatz Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/keepassx/ChangeLog,v 1.48 2010/02/09 20:04:40 spatz Exp $
+
+ 09 Feb 2010; Dror Levin <spatz@gentoo.org> -keepassx-0.3.4.ebuild:
+ Remove old.
10 Jan 2010; Dror Levin <spatz@gentoo.org> keepassx-0.4.1.ebuild:
Fix dep on xextproto/libXtst, bug 300373.
diff --git a/app-admin/keepassx/keepassx-0.3.4.ebuild b/app-admin/keepassx/keepassx-0.3.4.ebuild
deleted file mode 100644
index 57a4d4ad3af9..000000000000
--- a/app-admin/keepassx/keepassx-0.3.4.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/keepassx/keepassx-0.3.4.ebuild,v 1.5 2009/10/05 18:48:31 ayoy Exp $
-
-EAPI="2"
-
-inherit eutils qt4
-
-DESCRIPTION="Qt password manager compatible with its Win32 and Pocket PC versions."
-HOMEPAGE="http://keepassx.sourceforge.net/"
-SRC_URI="mirror://sourceforge/keepassx/KeePassX-${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="debug"
-DEPEND="x11-libs/qt-core:4[qt3support]
- x11-libs/qt-gui:4[qt3support]
- x11-libs/qt-xmlpatterns:4"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- # generate translations
- cd "${S}/src"
- lrelease src.pro || die "lrelease failed"
- mv "${S}"/src/translations/*.qm "${S}"/share/keepassx/i18n
-
- cd "${S}"
- use debug && myconf="DEBUG=1"
- eqmake4 ${PN}.pro PREFIX="${D}/usr" ${myconf} || die "eqmake4 failed"
-}
-
-src_compile(){
- # workaround compile failure due to distcc, bug #214327
- PATH=${PATH/\/usr\/lib\/distcc\/bin:}
- emake || die "emake failed"
-}
-
-src_install(){
- # workaround pre-stripping the keepassx binary during install, bug #248711
- sed -i -e '/strip/d' "${S}"/src/Makefile || die "sed failed"
-
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc changelog todo || die "dodoc failed"
-}