diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2004-10-30 22:21:17 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2004-10-30 22:21:17 +0000 |
commit | 999453bd061269792cb8e51f91bbbda140b73e53 (patch) | |
tree | a8969d7b2c09bbe9f64ff696b360936706b96680 /net-irc | |
parent | stable on mips (diff) | |
download | historical-999453bd061269792cb8e51f91bbbda140b73e53.tar.gz historical-999453bd061269792cb8e51f91bbbda140b73e53.tar.bz2 historical-999453bd061269792cb8e51f91bbbda140b73e53.zip |
Initial import. Ebuild by me.
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/xchat-xsys/ChangeLog | 9 | ||||
-rw-r--r-- | net-irc/xchat-xsys/Manifest | 4 | ||||
-rw-r--r-- | net-irc/xchat-xsys/files/digest-xchat-xsys-1.0.6 | 1 | ||||
-rw-r--r-- | net-irc/xchat-xsys/metadata.xml | 9 | ||||
-rw-r--r-- | net-irc/xchat-xsys/xchat-xsys-1.0.6.ebuild | 39 |
5 files changed, 62 insertions, 0 deletions
diff --git a/net-irc/xchat-xsys/ChangeLog b/net-irc/xchat-xsys/ChangeLog new file mode 100644 index 000000000000..83088c1cab00 --- /dev/null +++ b/net-irc/xchat-xsys/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for net-irc/xchat-xsys +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-xsys/ChangeLog,v 1.1 2004/10/30 22:21:17 chainsaw Exp $ + +*xchat-xsys-1.0.6 (30 Oct 2004) + + 30 Oct 2004; Tony Vroon <chainsaw@gentoo.org> +xchat-xsys-1.0.6.ebuild: + Initial import, ebuild by me + diff --git a/net-irc/xchat-xsys/Manifest b/net-irc/xchat-xsys/Manifest new file mode 100644 index 000000000000..1aeb96057b35 --- /dev/null +++ b/net-irc/xchat-xsys/Manifest @@ -0,0 +1,4 @@ +MD5 17e16e4ad86e950d3473abf9f27743c9 xchat-xsys-1.0.6.ebuild 983 +MD5 d00cabc3c40c8deda66de9457085a9b7 ChangeLog 350 +MD5 42cef2da59c81f792584c3f9048a1930 metadata.xml 250 +MD5 d17f93776f6856c326d07b3ac7526e14 files/digest-xchat-xsys-1.0.6 62 diff --git a/net-irc/xchat-xsys/files/digest-xchat-xsys-1.0.6 b/net-irc/xchat-xsys/files/digest-xchat-xsys-1.0.6 new file mode 100644 index 000000000000..24b0816ccd6e --- /dev/null +++ b/net-irc/xchat-xsys/files/digest-xchat-xsys-1.0.6 @@ -0,0 +1 @@ +MD5 dc422869d02d092946d058b61f24837d xsys-1.0.6.tar.bz2 16224 diff --git a/net-irc/xchat-xsys/metadata.xml b/net-irc/xchat-xsys/metadata.xml new file mode 100644 index 000000000000..77c44c0fa7e9 --- /dev/null +++ b/net-irc/xchat-xsys/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>net-irc</herd> +<maintainer> + <email>chainsaw@gentoo.org</email> + <name>Tony Vroon</name> +</maintainer> +</pkgmetadata> diff --git a/net-irc/xchat-xsys/xchat-xsys-1.0.6.ebuild b/net-irc/xchat-xsys/xchat-xsys-1.0.6.ebuild new file mode 100644 index 000000000000..95297ef1c965 --- /dev/null +++ b/net-irc/xchat-xsys/xchat-xsys-1.0.6.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-xsys/xchat-xsys-1.0.6.ebuild,v 1.1 2004/10/30 22:21:17 chainsaw Exp $ + +inherit flag-o-matic + +MY_P=${P/xchat-/} +DESCRIPTION="Sysinfo plugin for X-Chat." +SRC_URI="http://dev.gentoo.org/~chainsaw/xsys/download/${MY_P}.tar.bz2 mirror://gentoo/${MY_P}.tar.bz2" +HOMEPAGE="http://dev.gentoo.org/~chainsaw/xsys/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="bmp uptimed" +S=${WORKDIR}/${MY_P} + +DEPEND=">=dev-libs/glib-2.0.3 + >=net-irc/xchat-2.4.0 + bmp? ( media-sound/beep-media-player ) + uptimed? ( app-misc/uptimed )" + +src_compile() { + if use uptimed; then + append-flags -DUSE_UPRECORD + fi + if use bmp; then + append-flags -DUSE_BMP -I/usr/include/beep-media-player + append-ldflags -lbeep + fi + emake -j1 || die "Compile failed" +} + +src_install() { + exeinto /usr/lib/xchat/plugins + doexe libxsys-${PV}.so + + dodoc ChangeLog README +} |