summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Ahlberg <aliz@gentoo.org>2003-02-05 13:36:16 +0000
committerDaniel Ahlberg <aliz@gentoo.org>2003-02-05 13:36:16 +0000
commit7f36edf673cf8e5ca14e101c03cef262102342e2 (patch)
treedfd4822e667856545339939f95a7b25799b566b0 /x11-libs
parentUpdated HOMEPAGE tag (diff)
downloadgentoo-2-7f36edf673cf8e5ca14e101c03cef262102342e2.tar.gz
gentoo-2-7f36edf673cf8e5ca14e101c03cef262102342e2.tar.bz2
gentoo-2-7f36edf673cf8e5ca14e101c03cef262102342e2.zip
Version bump
Diffstat (limited to 'x11-libs')
-rw-r--r--x11-libs/xosd/ChangeLog7
-rw-r--r--x11-libs/xosd/files/digest-xosd-2.1.01
-rw-r--r--x11-libs/xosd/xosd-2.1.0.ebuild36
3 files changed, 43 insertions, 1 deletions
diff --git a/x11-libs/xosd/ChangeLog b/x11-libs/xosd/ChangeLog
index 3aab7bb8adea..29b7e19482bc 100644
--- a/x11-libs/xosd/ChangeLog
+++ b/x11-libs/xosd/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-libs/xosd
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/xosd/ChangeLog,v 1.13 2003/02/03 20:35:00 nall Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/xosd/ChangeLog,v 1.14 2003/02/05 13:36:16 aliz Exp $
+
+*xosd-2.1.0 (05 Feb 2003)
+
+ 05 Feb 2003; Daniel Ahlberg <aliz@gentoo.org> xosd-2.1.0.ebuild :
+ Version bump.
*xosd-2.0.1-r1 (07 Jan 2003)
diff --git a/x11-libs/xosd/files/digest-xosd-2.1.0 b/x11-libs/xosd/files/digest-xosd-2.1.0
new file mode 100644
index 000000000000..f522bad17410
--- /dev/null
+++ b/x11-libs/xosd/files/digest-xosd-2.1.0
@@ -0,0 +1 @@
+MD5 2586f11cf1c4a13f36793ed45f2929c4 xosd-2.1.0.tar.gz 250916
diff --git a/x11-libs/xosd/xosd-2.1.0.ebuild b/x11-libs/xosd/xosd-2.1.0.ebuild
new file mode 100644
index 000000000000..465d0662ef3b
--- /dev/null
+++ b/x11-libs/xosd/xosd-2.1.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/xosd/xosd-2.1.0.ebuild,v 1.1 2003/02/05 13:36:16 aliz Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="Library for overlaying text/glyphs in X-Windows \
+X-On-Screen-Display plus binary for sending text from command line."
+HOMEPAGE="http://www.ignavus.net/"
+SRC_URI="http://www.ignavus.net/${P}.tar.gz"
+
+IUSE="xmms"
+DEPEND="virtual/x11
+ xmms? ( media-sound/xmms
+ media-libs/gdk-pixbuf )"
+RDEPEND=${DEPEND}
+SLOT="1"
+LICENSE="GPL-2"
+KEYWORDS="~x86 ~sparc ~ppc"
+
+src_compile() {
+ local myconf
+
+ if [ "`use xmms`" ]; then
+ myconf="--with-plugindir=/usr/lib/xmms"
+ else
+ myconf="--without-plugindir"
+ fi
+
+ econf || die
+ emake || die
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+ dodoc AUTHORS ChangeLog NEWS COPYING README
+}