diff options
author | Stefan Knoblich <stkn@gentoo.org> | 2004-10-24 16:16:18 +0000 |
---|---|---|
committer | Stefan Knoblich <stkn@gentoo.org> | 2004-10-24 16:16:18 +0000 |
commit | c85c9c973a322f05d09b400784aedc655198ae0b (patch) | |
tree | b6376ac7a3a7eb1455c256e8c349f93f322b1675 /app-misc/pms | |
parent | marked stable (Manifest recommit) (diff) | |
download | gentoo-2-c85c9c973a322f05d09b400784aedc655198ae0b.tar.gz gentoo-2-c85c9c973a322f05d09b400784aedc655198ae0b.tar.bz2 gentoo-2-c85c9c973a322f05d09b400784aedc655198ae0b.zip |
using epatch instead of patch now, new ui.diff that works with latest version of cdk (#64688, thx to Urs Joss), tested with all cdk versions in tree
Diffstat (limited to 'app-misc/pms')
-rw-r--r-- | app-misc/pms/ChangeLog | 6 | ||||
-rw-r--r-- | app-misc/pms/files/ui.diff | 15 | ||||
-rw-r--r-- | app-misc/pms/pms-0.94.ebuild | 8 |
3 files changed, 22 insertions, 7 deletions
diff --git a/app-misc/pms/ChangeLog b/app-misc/pms/ChangeLog index 6d9ae7bbb59b..2a2cf3bbb86c 100644 --- a/app-misc/pms/ChangeLog +++ b/app-misc/pms/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-misc/pms # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/pms/ChangeLog,v 1.6 2004/07/10 15:27:00 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/pms/ChangeLog,v 1.7 2004/10/24 16:16:18 stkn Exp $ + + 24 Oct 2004; <stkn@gentoo.org> files/ui.diff, pms-0.94.ebuild: + using epatch now, replaced ui.diff with a version that works with newest cdk + in portage (#64688, thx to Urs Joss), tested with all cdk versions 10 Jul 2004; Tom Martin <slarti@gentoo.org> pms-0.94.ebuild: Marked ~amd64. diff --git a/app-misc/pms/files/ui.diff b/app-misc/pms/files/ui.diff index 5066919f7838..fab3401274e3 100644 --- a/app-misc/pms/files/ui.diff +++ b/app-misc/pms/files/ui.diff @@ -1,4 +1,11 @@ -78c78 -< drawCDKEntry(inputBox, inputBox->box); ---- -> drawCDKEntry(inputBox, inputBox->BoxAttrib); +--- pms-0.94/pms/ui.c.orig 2004-10-24 17:36:32.295703640 +0200 ++++ pms-0.94/pms/ui.c 2004-10-24 17:36:51.638763048 +0200 +@@ -75,7 +75,7 @@ + inputBox = newCDKEntry(cdkscreen, xpos, ypos, title, label, A_NORMAL, ' ', vMIXED, width, 0, maxLen, TRUE, TRUE); + + /* Show box and process user input */ +- drawCDKEntry(inputBox, inputBox->box); ++ drawCDKEntry(inputBox, ObjOf(inputBox)->box); + wgetnstr(inputBox->fieldWin, (char *) &ret, 70); + result = ret; + diff --git a/app-misc/pms/pms-0.94.ebuild b/app-misc/pms/pms-0.94.ebuild index bf1a1b554d32..6443964fc0bc 100644 --- a/app-misc/pms/pms-0.94.ebuild +++ b/app-misc/pms/pms-0.94.ebuild @@ -1,6 +1,10 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/pms/pms-0.94.ebuild,v 1.8 2004/07/10 15:27:00 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/pms/pms-0.94.ebuild,v 1.9 2004/10/24 16:16:18 stkn Exp $ + +IUSE="" + +inherit eutils DESCRIPTION="Password Management System" HOMEPAGE="http://passwordms.sourceforge.net/" @@ -17,7 +21,7 @@ DEPEND="sys-libs/ncurses src_unpack() { unpack ${A} cd ${S} - patch pms/ui.c "${FILESDIR}/ui.diff" + epatch ${FILESDIR}/ui.diff } src_install() { |