summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Nigbur <pyrania@gentoo.org>2004-03-06 02:20:55 +0000
committerMarkus Nigbur <pyrania@gentoo.org>2004-03-06 02:20:55 +0000
commitb35a9492c385f5031916c9f52049d345982356a0 (patch)
tree54713289624dafdef8ce66ffc686f2800de43538
parentfixes typo for unrealircd (diff)
downloadhistorical-b35a9492c385f5031916c9f52049d345982356a0.tar.gz
historical-b35a9492c385f5031916c9f52049d345982356a0.tar.bz2
historical-b35a9492c385f5031916c9f52049d345982356a0.zip
Initial import.
-rw-r--r--x11-plugins/wmcalendar/ChangeLog9
-rw-r--r--x11-plugins/wmcalendar/Manifest3
-rw-r--r--x11-plugins/wmcalendar/files/digest-wmcalendar-0.5.01
-rw-r--r--x11-plugins/wmcalendar/wmcalendar-0.5.0.ebuild36
4 files changed, 49 insertions, 0 deletions
diff --git a/x11-plugins/wmcalendar/ChangeLog b/x11-plugins/wmcalendar/ChangeLog
new file mode 100644
index 000000000000..a330a352723f
--- /dev/null
+++ b/x11-plugins/wmcalendar/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for x11-plugins/wmcalendar
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmcalendar/ChangeLog,v 1.1 2004/03/06 02:20:55 pyrania Exp $
+
+*wmcalendar-0.5.0 (06 Mar 2004)
+
+ 06 Mar 2004; Markus Nigbur <pyrania@gentoo.org> wmcalendar-0.5.0.ebuild:
+ Initial import.
+
diff --git a/x11-plugins/wmcalendar/Manifest b/x11-plugins/wmcalendar/Manifest
new file mode 100644
index 000000000000..281cf858a424
--- /dev/null
+++ b/x11-plugins/wmcalendar/Manifest
@@ -0,0 +1,3 @@
+MD5 7b41b5019e40f39382139dd5d80f7f42 wmcalendar-0.5.0.ebuild 912
+MD5 bc7c782e435a053633c912f93ed89593 ChangeLog 354
+MD5 e1445dfb0ac0d0dd189f22956e61de10 files/digest-wmcalendar-0.5.0 67
diff --git a/x11-plugins/wmcalendar/files/digest-wmcalendar-0.5.0 b/x11-plugins/wmcalendar/files/digest-wmcalendar-0.5.0
new file mode 100644
index 000000000000..ebd6d55b2126
--- /dev/null
+++ b/x11-plugins/wmcalendar/files/digest-wmcalendar-0.5.0
@@ -0,0 +1 @@
+MD5 bde2dfcbc8b94f9bbc60e45fc06b79b1 wmcalendar-0.5.0.tar.gz 42896
diff --git a/x11-plugins/wmcalendar/wmcalendar-0.5.0.ebuild b/x11-plugins/wmcalendar/wmcalendar-0.5.0.ebuild
new file mode 100644
index 000000000000..2cb2d1bff080
--- /dev/null
+++ b/x11-plugins/wmcalendar/wmcalendar-0.5.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmcalendar/wmcalendar-0.5.0.ebuild,v 1.1 2004/03/06 02:20:55 pyrania Exp $
+
+inherit eutils
+
+IUSE=""
+
+DESCRIPTION="wmCalendar is a calendar dockapp for Windowmaker."
+
+HOMEPAGE="http://wmcalendar.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+
+DEPEND="virtual/x11
+ >=dev-libs/libical-0.24_rc4
+ >=dev-util/pkgconfig-0.15.0
+ >=x11-libs/gtk+-2.2.1-r1"
+
+# default Makefile overwrites CC and CFAGS variables so we patch it
+src_unpack() {
+ unpack ${A}
+ cd ${WORKDIR}
+ epatch ${FILESDIR}/${P}.makefile.patch
+}
+
+S=${WORKDIR}/${P}/Src
+
+src_install() {
+ dodir /usr/bin /usr/man/man1
+ make DESTDIR=${D}/usr install || die
+ cd .. && dodoc BUGS CHANGES COPYING HINTS INSTALL README TODO || die
+}