# Copyright 2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 # Custom ebuild for osdchat - not part of gentoo...yet. # Installation: # 1) You should setup your PORTDIR_OVERLAY variable in make.conf so # that the next emerge sync doesn't wipe out the ebuild # 2) mkdir -p $PORTDIR_OVERLAY/x11-misc/osdchat # 3) copy this file to that directory then change dir to it. # 4) place the corresponding source tarball in /usr/portage/distfiles # 4) ebuild osdchat-[version].ebuild digest # 5) Done! just "emerge osdchat", if you have your ACCEPT_KEYWORDS in # make.conf set to anything but "~x86" then do: # ACCEPT_KEYWORDS="~x86" emerge osdchat DESCRIPTION="Simple on-screen display (OSD) messaging service" SRC_URI="http://osdchat.xexix.net/src/${P}.tar.gz" # If above failes switch to the URI below # SRC_URI="http://prdownloads.sourceforge.net/osdchat/osdchat-0.1.7.tar.gz?download" HOMEPAGE="http://osdchat.xexix.net" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND=">=x11-libs/xosd-2.1.3 >=sys-libs/readline-4.3" src_unpack() { unpack ${A} cd ${S} } src_compile() { emake || die } src_install () { dobin osdchatd cosdchat doman osdchatd.1 dodoc Changelog README NEWS TODO INSTALL }