diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-01-05 12:53:42 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-01-05 12:53:42 +0000 |
commit | 5d0dfc4d6a24fd58b294777d1882bcd9a9ece870 (patch) | |
tree | 9b704fb19d3b1166c62328d659bd66df867a881c /net-im/linpopup | |
parent | fixed ChangeLog (diff) | |
download | historical-5d0dfc4d6a24fd58b294777d1882bcd9a9ece870.tar.gz historical-5d0dfc4d6a24fd58b294777d1882bcd9a9ece870.tar.bz2 historical-5d0dfc4d6a24fd58b294777d1882bcd9a9ece870.zip |
Initial Version
Diffstat (limited to 'net-im/linpopup')
-rw-r--r-- | net-im/linpopup/ChangeLog | 9 | ||||
-rw-r--r-- | net-im/linpopup/files/digest-linpopup-1.2.0 | 1 | ||||
-rw-r--r-- | net-im/linpopup/linpopup-1.2.0.ebuild | 61 |
3 files changed, 71 insertions, 0 deletions
diff --git a/net-im/linpopup/ChangeLog b/net-im/linpopup/ChangeLog new file mode 100644 index 000000000000..8e6b2d21bc5a --- /dev/null +++ b/net-im/linpopup/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-admin/gentoolkit +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/net-im/linpopup/ChangeLog,v 1.1 2003/01/05 12:53:42 mholzer Exp $ + +*linpopup-1.2.0.ebuild (04 Jan 2002) + + 04 Jan 2002; Martin Holzer <mholzer@gentoo.org> linpopup-1.2.0.ebuild files/digest-linpopup-1.2.0 ChangeLog : + Initial Version submitted by m@lcolm.org.uk in #11861. + diff --git a/net-im/linpopup/files/digest-linpopup-1.2.0 b/net-im/linpopup/files/digest-linpopup-1.2.0 new file mode 100644 index 000000000000..2ca228660d39 --- /dev/null +++ b/net-im/linpopup/files/digest-linpopup-1.2.0 @@ -0,0 +1 @@ +MD5 26503ac44971e334cbbb0a79dd796d93 LinPopUp-1.2.0.src.tar.gz 145628 diff --git a/net-im/linpopup/linpopup-1.2.0.ebuild b/net-im/linpopup/linpopup-1.2.0.ebuild new file mode 100644 index 000000000000..f29f97c36b36 --- /dev/null +++ b/net-im/linpopup/linpopup-1.2.0.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/linpopup/linpopup-1.2.0.ebuild,v 1.1 2003/01/05 12:53:42 mholzer Exp $ + +MY_P=LinPopUp-${PV} +DESCRIPTION="LinPopUp, for sending/receiving WinPopup messages via Samba" +HOMEPAGE="http://www.littleigloo.org/" +SRC_URI="http://www.chez.com/littleigloo/files/${MY_P}.src.tar.gz" +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~x86" + +IUSE="" + +DEPEND=">=net-fs/samba-2.2.7 + =x11-libs/gtk+-1.2*" + +S=${WORKDIR}/${MY_P}/src + +src_compile() { + emake DESTDIR=/usr DOC_DIR=/usr/share/doc/${P} SHARE_DIR=/usr/share/${P} || die +} + +src_install() { + dobin LinPopUp + doman ../LinPopUp.1 + dodoc ../AUTHORS ../BUGS ../COPYING ../ChangeLog ../INSTALL ../MANUAL ../NEWS ../README ../TODO ../THANKS + insinto /usr/share/${P} + doins ../extra/gtkrc + insinto /usr/share/${P}/pixmaps + doins ../pixmaps/little_igloo.xpm + + # Install messages.dat if not already present + if [ ! -f /var/lib/linpopup/messages.dat ] + then + dodir /var/lib/linpopup + touch messages.dat # create (empty) file locally, then install + insinto /var/lib/linpopup + doins messages.dat + fperms 0666 /var/lib/linpopup/messages.dat + fi +} + +pkg_postinst() { + echo + einfo "To be able to receive messages that are sent to you, you will need to" + einfo "edit your /etc/samba/smb.conf file." + einfo "" + einfo "Add this line to the [global settings] section:" + einfo "" + einfo " message command = /usr/bin/LinPopUp \"%f\" \"%m\" %s; rm %s" + einfo "" + einfo "PLEASE NOTE that \"%f\" is not the same thing as %f , '%f' or %f" + einfo "and take care to enter \"%f\" \"%m\" %s exactly as shown above." + einfo + einfo "For more information, please refer to the documentation, found in" + einfo "/usr/share/doc/${P}/INSTALL" + echo +} + |