diff options
author | Dominik Stadler <centic@gentoo.org> | 2004-07-31 15:25:19 +0000 |
---|---|---|
committer | Dominik Stadler <centic@gentoo.org> | 2004-07-31 15:25:19 +0000 |
commit | 499e1ee68a673359a8b13a3404a0f923d96d4945 (patch) | |
tree | 0e3bc027733bec25a753d858249214c553fa4c42 /net-im | |
parent | add in a src_test(), bug #55905 (diff) | |
download | gentoo-2-499e1ee68a673359a8b13a3404a0f923d96d4945.tar.gz gentoo-2-499e1ee68a673359a8b13a3404a0f923d96d4945.tar.bz2 gentoo-2-499e1ee68a673359a8b13a3404a0f923d96d4945.zip |
Add einfo and create missing directory.
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/kpopup/ChangeLog | 5 | ||||
-rw-r--r-- | net-im/kpopup/kpopup-0.9.7.ebuild | 28 |
2 files changed, 25 insertions, 8 deletions
diff --git a/net-im/kpopup/ChangeLog b/net-im/kpopup/ChangeLog index 917ae1fffb23..9843a2e8753d 100644 --- a/net-im/kpopup/ChangeLog +++ b/net-im/kpopup/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-im/kpopup # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/kpopup/ChangeLog,v 1.4 2004/06/29 16:50:37 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/kpopup/ChangeLog,v 1.5 2004/07/31 15:25:19 centic Exp $ + + 31 Jul 2004; Dominik Stadler <centic@gentoo.org> kpopup-0.9.7.ebuild: + Add einfo and create missing dir, reported in Bug 56633, thanks. *kpopup-0.9.7 (29 Jun 2004) diff --git a/net-im/kpopup/kpopup-0.9.7.ebuild b/net-im/kpopup/kpopup-0.9.7.ebuild index 6ae24061cffb..db5fc169ba43 100644 --- a/net-im/kpopup/kpopup-0.9.7.ebuild +++ b/net-im/kpopup/kpopup-0.9.7.ebuild @@ -1,20 +1,34 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/kpopup/kpopup-0.9.7.ebuild,v 1.2 2004/06/29 16:50:37 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/kpopup/kpopup-0.9.7.ebuild,v 1.3 2004/07/31 15:25:19 centic Exp $ inherit kde -MY_P=${P/_/} -S=${WORKDIR}/${MY_P} - DESCRIPTION="An SMB Network Messenger" HOMEPAGE="http://www.henschelsoft.de/kpopup.html" -SRC_URI="http://www.henschelsoft.de/kpopup/${MY_P}.tar.gz" +SRC_URI="http://www.henschelsoft.de/kpopup/${P}.tar.gz" SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86 ~ppc" IUSE="" -DEPEND=">=net-fs/samba" -need-kde 3
\ No newline at end of file +DEPEND=">=net-fs/samba-2.2" +need-kde 3 + +src_install() { + make DESTDIR=${D} install || die "make install failed" +# make DESTDIR=${D} create_kpopup_data_dir || die "create data dir failed" + diropts -m0777 + dodir /var/lib/kpopup + diropts -m0755 +} + +pkg_postinst() { + einfo "" + einfo "Locate the [global] section of your Samba configuration file (smb.conf) and" + einfo "add the following line:" + einfo "" + einfo "message command = sh -c '/usr/bin/receivepopup.sh \"%s\" \"%f\"'" + einfo "" +} |