diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-10-04 15:38:19 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-10-04 15:38:19 +0000 |
commit | f908d8e019e4a68a489d192a20c4d5682b01bf73 (patch) | |
tree | 72c6d2f884e95757be17d207e93c6c2dbc3f8989 /x11-plugins/wmitime | |
parent | Initial add of ebuild to portage. Again, no homepage. This time I (diff) | |
download | gentoo-2-f908d8e019e4a68a489d192a20c4d5682b01bf73.tar.gz gentoo-2-f908d8e019e4a68a489d192a20c4d5682b01bf73.tar.bz2 gentoo-2-f908d8e019e4a68a489d192a20c4d5682b01bf73.zip |
Initial ebuild added to portage.
Diffstat (limited to 'x11-plugins/wmitime')
-rw-r--r-- | x11-plugins/wmitime/ChangeLog | 9 | ||||
-rw-r--r-- | x11-plugins/wmitime/files/digest-wmitime-0.3 | 1 | ||||
-rw-r--r-- | x11-plugins/wmitime/files/makefile.diff | 26 | ||||
-rw-r--r-- | x11-plugins/wmitime/wmitime-0.3.ebuild | 42 |
4 files changed, 78 insertions, 0 deletions
diff --git a/x11-plugins/wmitime/ChangeLog b/x11-plugins/wmitime/ChangeLog new file mode 100644 index 000000000000..2c971e2c8a2f --- /dev/null +++ b/x11-plugins/wmitime/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for x11-plugins/wmitime +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmitime/ChangeLog,v 1.1 2002/10/04 15:38:19 raker Exp $ + +*wmitime-0.3 (04 Oct 2002) + + 04 Oct 2002; Nick Hadaway <raker@gentoo.org> wmitime-0.3.ebuild, + files/digest-wmitime-0.3, files/makefile.diff : + Initial ebuild added to portage. diff --git a/x11-plugins/wmitime/files/digest-wmitime-0.3 b/x11-plugins/wmitime/files/digest-wmitime-0.3 new file mode 100644 index 000000000000..da3642d97897 --- /dev/null +++ b/x11-plugins/wmitime/files/digest-wmitime-0.3 @@ -0,0 +1 @@ +MD5 7168e9d6b5930d510727530a309d812c wmitime-0.3.tar.gz 21442 diff --git a/x11-plugins/wmitime/files/makefile.diff b/x11-plugins/wmitime/files/makefile.diff new file mode 100644 index 000000000000..97ed3b5c54c1 --- /dev/null +++ b/x11-plugins/wmitime/files/makefile.diff @@ -0,0 +1,26 @@ +diff -urN wmitime/wmitime/Makefile wmitime-modified/wmitime/Makefile +--- wmitime/wmitime/Makefile 1999-03-28 21:51:39.000000000 -0600 ++++ wmitime-modified/wmitime/Makefile 2002-10-04 10:35:16.000000000 -0500 +@@ -1,7 +1,6 @@ +-#LANG = fr + LIBDIR = -L/usr/X11R6/lib + LIBS = -lXpm -lXext -lX11 -lm +-FLAGS = -O2 ++FLAGS = $(CFLAGS) + OBJS = wmitime.o \ + ../wmgeneral/wmgeneral.o \ + ../wmgeneral/misc.o \ +@@ -9,11 +8,10 @@ + + + .c.o: +- cc -I/usr/X11R6/share/include $(FLAGS) -D$(LANG) -c -Wall $< -o $*.o ++ gcc -I/usr/X11R6/share/include $(FLAGS) -c -Wall $< -o $*.o + + wmtime: $(OBJS) +- cc $(FLAGS) -D$(LANG) -o wmitime $^ -lXext $(LIBDIR) $(LIBS) +- ++ gcc $(FLAGS) -o wmitime $^ -lXext $(LIBDIR) $(LIBS) + all:: wmtime + + clean:: diff --git a/x11-plugins/wmitime/wmitime-0.3.ebuild b/x11-plugins/wmitime/wmitime-0.3.ebuild new file mode 100644 index 000000000000..4a1ae51ff774 --- /dev/null +++ b/x11-plugins/wmitime/wmitime-0.3.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmitime/wmitime-0.3.ebuild,v 1.1 2002/10/04 15:38:19 raker Exp $ + +S="${WORKDIR}/${PN}" + +DESCRIPTION="Overglorified clock dockapp w/time, date, and internet time" +HOMEPAGE="http://www.neotokyo.org/illusion/" +SRC_URI="http://www.neotokyo.org/illusion/downloads/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND="virtual/glibc + virtual/x11" +RDEPEND="${DEPEND}" + +src_unpack() { + + unpack ${A} + cd ${S} + patch -p1 < ${FILESDIR}/makefile.diff || die "patch failed" + +} + +src_compile() { + + cd ${S}/wmitime + make || die "make failed" + +} + +src_install() { + + cd ${S}/wmitime + dobin wmitime + + cd ${S} + dodoc BUGS CHANGES COPYING README + +} |