You are not logged in.
KickPIM is a panel applet for quickly editing and accessing the KDE addressbook or sending emails to your contacts. It shows also a list of upcoming birthdays and waiting emails of multiple email-accounts.
PKGBUILD:
pkgname=kickpim
pkgver=0.5.3
pkgrel=1
pkgdesc="A KDE panel applet for quickly editing and accessing the KDE addressbook or sending emails to your contacts. It shows also a list of upcoming birthdays and waiting emails of multiple email-accounts."
url="http://kickpim.sourceforge.net"
depends=('kdepim>=3.1' 'qt>=3.1')
source=(http://cesnet.dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2
http://mircea.bardac.net/packs/src/$pkgname/fix.diff)
md5sums=('05c7affb1cac03885ea9109aa2a2e9eb' 'b6c10ba19e9bfcf82bf511deb6c166fa')
build() {
cd $startdir/src/$pkgname-$pkgver
cat ../fix.diff | patch -p1
./configure --prefix=/opt/kde
make || return 1
make prefix=$startdir/pkg/opt/kde install
}
I have hosted the .diff file. It fixes 4 files where ";" was found after "}" (gcc 3.4).
- The requirements are taken from the KickPIM Homepage.
The binary pack can be found here.
:: / my web presence
Offline
Change the url of the diff to
http://mircea.bardac.net/packs/src/kickpim/fix.diff
or use sed in the PKGBUILD to get rid of ";" after "}" in source files.
Offline
Change the url of the diff to
http://mircea.bardac.net/packs/src/kickpim/fix.diff
or use sed in the PKGBUILD to get rid of ";" after "}" in source files.
Ups, sorry.. forgot the "src".
I wanted to use sed to replace those lines but I thought that KickPIM might have some stucts/classes defined and they do need ";" after "}".
P.S. I updated the binary package also, although I think it worked because I had the .diff file in the right place (and the build&install worked for me).
:: / my web presence
Offline