summaryrefslogtreecommitdiff
path: root/gui/KPackageKit/main.cpp
blob: 09af3d93ae28e95ff5f47cd722c647a172f178b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/***************************************************************************
 *   Copyright (C) 2008 by Daniel Nicoletti   *
 *   dantti85-pk@yahoo.com.br   *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/

#include "kpk.h"
#include <KDebug>
#include <KConfig>
#include <KLocale>

#include <KUrl>
#include <KLocale>
#include <KAboutData>
#include <KCmdLineArgs>

int main(int argc, char **argv)
{
	// ignore SIGPIPE and SIGXFSZ
// 	signal(SIGPIPE,SIG_IGN);
// 	signal(SIGXFSZ,SIG_IGN);
	
// 	bt::SetClientInfo("KPackageKit",kt::MAJOR,kt::MINOR,kt::RELEASE,bt::NORMAL,"KT");
	
	KAboutData about(
		"KPackageKit", 0, ki18n("KPackageKit"),
		"0.1", ki18n("PackageKit Interface for KDE"),
		KAboutData::License_GPL, 
		ki18n("(C) 2008 Daniel Nicoletti"), 
		KLocalizedString(),
		"http://www.packagekit.org/");

	about.addAuthor(ki18n("Daniel Nicoletti"), KLocalizedString(), "dantti85-pk@yahoo.com.br","http://www.packagekit.org" );

	about.addCredit(ki18n("Adrien Bustany"),	ki18n("libpackagekit-qt and other stuff"),"@");

	KCmdLineArgs::init(argc, argv, &about);

	KCmdLineOptions options;
	options.add( "+[Url]", ki18n("Document to open") );
	options.add( "silent", ki18n("Silently open torrent given on URL") );
	options.add( "show-updates", ki18n("Displays Updates") );
	KCmdLineArgs::addCmdLineOptions(options);
	
	kpackagekit::Kpk::addCmdLineOptions();
	if (!kpackagekit::Kpk::start())
	{
		kDebug() << "kpackagekit is already running !";
		return 0;
	}

	kpackagekit::Kpk app;
	app.exec();
	return 0;
}