Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 7231 - new ebuild for KGPG, GnuPG integration for KDE3
Summary: new ebuild for KGPG, GnuPG integration for KDE3
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High enhancement (vote)
Assignee: Gentoo KDE team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-08-29 15:24 UTC by Simon Keimer
Modified: 2003-02-04 19:42 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Simon Keimer 2002-08-29 15:24:37 UTC
Hey, 
 
it's my first ebuild script, so I hope it's usefull for you. I would appreciate 
if you could integrate it into the Gentoo distribution. 
 
If anything's wrong let me know. 
 
Yours, Simon 
 
# Copyright 1999-2002 Gentoo Technologies, Inc. 
# Distributed under the terms of the GNU General Public License, v2 or later 
# $Header: /home/cvsroot/gentoo-x86/app-crypt/kgpg/kgpg-0.5.1.ebuild,v 1.0 
# 2002/08/29 21:41 MET Simon Keimer 
 
inherit kde-base 
 
need-kde 3 
 
DESCRIPTION="KDE integration for GnuPG" 
SRC_URI="http://kgpg.tripod.com/${P}.tar.gz" 
HOMEPAGE="http://kgpg.tripod.com/" 
 
LICENSE="GPL-2" 
 
KEYWORDS="x86" 
 
DEPEND="kdebase? ( >=kde-base/kdebase-3* )" 
 
S="${WORKDIR}/kgpg" 
 
src_compile() { 
	local myconf 
 
	./configure ${myconf} --host=${CHOST} || die 
 
	emake || make || die 
} 
 
src_install () { 
	make DESTDIR=${D} install || die 
	dodoc AUTHORS COPYING ChangeLog INSTALL README TODO 
}
Comment 1 Troy Dack 2002-10-23 21:19:05 UTC
New homepage: http://devel-home.kde.org/~kgpg/index.html
New download link: http://devel-home.kde.org/~kgpg/src/kgpg-0.8.2.tar.gz
Comment 2 Hannes Mehnert (RETIRED) gentoo-dev 2002-10-24 12:48:59 UTC
thanks for submission, added it to portage after some changes, fex you don't need 
src_compile and src_install functions when you inherit kde-base.eclass.