diff options
author | Markus Nigbur <pyrania@gentoo.org> | 2004-03-06 02:20:55 +0000 |
---|---|---|
committer | Markus Nigbur <pyrania@gentoo.org> | 2004-03-06 02:20:55 +0000 |
commit | 53107835c260b9bc167dd8a2020eb2f9c17bfc43 (patch) | |
tree | f87987248aabc55c14e6d6adc6fb0f15c033e291 /x11-plugins/wmcalendar | |
parent | fixes typo for unrealircd (diff) | |
download | gentoo-2-53107835c260b9bc167dd8a2020eb2f9c17bfc43.tar.gz gentoo-2-53107835c260b9bc167dd8a2020eb2f9c17bfc43.tar.bz2 gentoo-2-53107835c260b9bc167dd8a2020eb2f9c17bfc43.zip |
Initial import.
Diffstat (limited to 'x11-plugins/wmcalendar')
-rw-r--r-- | x11-plugins/wmcalendar/ChangeLog | 9 | ||||
-rw-r--r-- | x11-plugins/wmcalendar/Manifest | 2 | ||||
-rw-r--r-- | x11-plugins/wmcalendar/files/digest-wmcalendar-0.5.0 | 1 | ||||
-rw-r--r-- | x11-plugins/wmcalendar/wmcalendar-0.5.0.ebuild | 36 |
4 files changed, 48 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..3fc13b6f98fb --- /dev/null +++ b/x11-plugins/wmcalendar/Manifest @@ -0,0 +1,2 @@ +MD5 42542975599142ac2a360bc8ba127cab wmcalendar-0.5.0.ebuild 973 +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 +} |