diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-03-02 20:26:27 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-03-02 20:26:27 +0000 |
commit | d1dae5e6f50226afa9753c5fadc37ef3a2d680cf (patch) | |
tree | 625425a96f58c156b28fb86b3ff993ce8900e5b2 /x11-misc/dclock | |
parent | Fix Manifest broken by Attic/ in the header of mod_jk-1.2.21.ebuild. (diff) | |
download | gentoo-2-d1dae5e6f50226afa9753c5fadc37ef3a2d680cf.tar.gz gentoo-2-d1dae5e6f50226afa9753c5fadc37ef3a2d680cf.tar.bz2 gentoo-2-d1dae5e6f50226afa9753c5fadc37ef3a2d680cf.zip |
Kill virtual/x11. Use emake. Add some quoting..
(Portage version: 2.1.2-r13)
Diffstat (limited to 'x11-misc/dclock')
-rw-r--r-- | x11-misc/dclock/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/dclock/dclock-2.1.2_p8.ebuild | 27 |
2 files changed, 16 insertions, 18 deletions
diff --git a/x11-misc/dclock/ChangeLog b/x11-misc/dclock/ChangeLog index b6ba42ade785..e894c2f6bb51 100644 --- a/x11-misc/dclock/ChangeLog +++ b/x11-misc/dclock/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/dclock -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/dclock/ChangeLog,v 1.10 2006/10/14 16:49:42 nelchael Exp $ +# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/dclock/ChangeLog,v 1.11 2007/03/02 20:26:27 drac Exp $ + + 02 Mar 2007; Samuli Suominen <drac@gentoo.org> dclock-2.1.2_p8.ebuild: + Kill virtual/x11. Use emake. 14 Oct 2006; Krzysiek Pawlik <nelchael@gentoo.org> -dclock-2.1.2_p5.ebuild: diff --git a/x11-misc/dclock/dclock-2.1.2_p8.ebuild b/x11-misc/dclock/dclock-2.1.2_p8.ebuild index ea0e7c756929..bdcfbe68a864 100644 --- a/x11-misc/dclock/dclock-2.1.2_p8.ebuild +++ b/x11-misc/dclock/dclock-2.1.2_p8.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/dclock/dclock-2.1.2_p8.ebuild,v 1.2 2006/08/06 21:17:09 deltacow Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/dclock/dclock-2.1.2_p8.ebuild,v 1.3 2007/03/02 20:26:27 drac Exp $ inherit eutils @@ -9,39 +9,34 @@ SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV/_p*/}.orig.tar.gz mirror://debian/pool/main/d/${PN}/${PN}_${PV/_p/-}.diff.gz" HOMEPAGE="ftp://ftp.ac-grenoble.fr/ge/Xutils/" -S=${WORKDIR}/${PN} +S="${WORKDIR}/${PN}" SLOT="0" LICENSE="GPL-2" KEYWORDS="amd64 ppc x86" IUSE="" -RDEPEND="|| ( ( - x11-libs/libX11 - x11-libs/libXt - x11-libs/libXext ) - virtual/x11 ) +RDEPEND="x11-libs/libX11 + x11-libs/libXt + x11-libs/libXext app-text/rman" DEPEND="${RDEPEND} - || ( ( - x11-misc/imake - x11-proto/xproto ) - virtual/x11 )" + x11-misc/imake" src_unpack() { unpack ${A} - cd ${S} + cd "${S}" epatch ../${PN}_${PV/_p/-}.diff ln -sf dclock.1 dclock.man # needed to fix xmkmf breakage } src_compile() { xmkmf || die "xmkmf failed" - make CFLAGS="${CFLAGS}" || die "make failed" + emake CFLAGS="${CFLAGS}" || die "make failed" } src_install() { - make DESTDIR=${D} install || die "make install failed" - make DESTDIR=${D} install.man || die "make install.man failed" + emake DESTDIR=${D} install || die "make install failed" + emake DESTDIR=${D} install.man || die "make install.man failed" insinto /usr/share/sounds doins sounds/* insinto /etc/X11/app-defaults |