diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-01-17 22:01:50 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-01-17 22:01:50 +0000 |
commit | 11776e75862e0563b5902948927c780173cc1c82 (patch) | |
tree | ea17d06a0a31905d09e0e7afa9034521faae8e91 /x11-plugins/wmtz | |
parent | removed init.d script (diff) | |
download | gentoo-2-11776e75862e0563b5902948927c780173cc1c82.tar.gz gentoo-2-11776e75862e0563b5902948927c780173cc1c82.tar.bz2 gentoo-2-11776e75862e0563b5902948927c780173cc1c82.zip |
removed WindowMaker from DEPEND and added config file
Diffstat (limited to 'x11-plugins/wmtz')
-rw-r--r-- | x11-plugins/wmtz/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/wmtz/wmtz-0.7.ebuild | 18 |
2 files changed, 13 insertions, 12 deletions
diff --git a/x11-plugins/wmtz/ChangeLog b/x11-plugins/wmtz/ChangeLog index d13d3e9ce4ec..8bb067a55dab 100644 --- a/x11-plugins/wmtz/ChangeLog +++ b/x11-plugins/wmtz/ChangeLog @@ -1,9 +1,14 @@ # ChangeLog for x11-plugins/wmtz # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmtz/ChangeLog,v 1.2 2002/12/17 19:51:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmtz/ChangeLog,v 1.3 2003/01/17 22:01:50 seemant Exp $ *wmtz-0.7 (4-Aug-2002) + 17 Jan 2003; Seemant Kulleen <seemant@gentoo.org> wmtz-0.7.ebuild : + + Put the config file in /etc as a default. Also, removed WindowMaker as a + DEPEND, since it's spurious. + 24 Oct 2002; Nick Hadaway <raker@gentoo.org> Added to portage. Made some minor changes to the initial ebuild. diff --git a/x11-plugins/wmtz/wmtz-0.7.ebuild b/x11-plugins/wmtz/wmtz-0.7.ebuild index 7f416f2d45bf..4f5f03406709 100644 --- a/x11-plugins/wmtz/wmtz-0.7.ebuild +++ b/x11-plugins/wmtz/wmtz-0.7.ebuild @@ -1,32 +1,28 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmtz/wmtz-0.7.ebuild,v 1.1 2002/10/24 19:12:24 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmtz/wmtz-0.7.ebuild,v 1.2 2003/01/17 22:01:50 seemant Exp $ -S="${WORKDIR}/${P}" +IUSE="" +S=${WORKDIR}/${P} DESCRIPTION="dockapp that shows the time in multiple timezones." SRC_URI="http://www.geocities.com/jl1n/wmtz/${P}.tar.gz" HOMEPAGE="http://www.geocities.com/jl1n/wmtz/wmtz.html" -DEPEND="virtual/x11 x11-wm/WindowMaker virtual/glibc" - LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" -IUSE="" +DEPEND="virtual/x11" src_compile() { - cd ${S}/wmtz emake CFLAGS="$CFLAGS" || die - } src_install () { - dobin wmtz/wmtz - - dodoc BUGS CHANGES COPYING README INSTALL wmtz/wmtzrc - + insinto /etc + doins wmtz/wmtzrc + dodoc BUGS CHANGES COPYING README INSTALL } |