diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-06-30 02:35:50 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-06-30 02:35:50 +0000 |
commit | 39d8c5cf8a107990373d3249045bfa8d86ec2f26 (patch) | |
tree | 12cb83bd5e791443794b5f3f76ca7ffd50264a3e /sys-apps/gluelog | |
parent | sync IUSE (+gnome, -gnome), trim trailing whitespace (diff) | |
download | historical-39d8c5cf8a107990373d3249045bfa8d86ec2f26.tar.gz historical-39d8c5cf8a107990373d3249045bfa8d86ec2f26.tar.bz2 historical-39d8c5cf8a107990373d3249045bfa8d86ec2f26.zip |
clean up and dont use glibc
Diffstat (limited to 'sys-apps/gluelog')
-rw-r--r-- | sys-apps/gluelog/gluelog-1.0-r2.ebuild | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/sys-apps/gluelog/gluelog-1.0-r2.ebuild b/sys-apps/gluelog/gluelog-1.0-r2.ebuild index b4a0023336cc..019d4c6ef3c1 100644 --- a/sys-apps/gluelog/gluelog-1.0-r2.ebuild +++ b/sys-apps/gluelog/gluelog-1.0-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gluelog/gluelog-1.0-r2.ebuild,v 1.14 2004/06/24 22:07:51 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gluelog/gluelog-1.0-r2.ebuild,v 1.15 2004/06/30 02:35:50 vapier Exp $ DESCRIPTION="Pipe and socket fittings for the system and kernel logs" HOMEPAGE="http://www.linuxuser.co.za/projects.php3" @@ -8,22 +8,23 @@ SRC_URI="" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 amd64 ppc sparc " +KEYWORDS="x86 ppc sparc amd64" IUSE="" -DEPEND="virtual/glibc" +DEPEND="virtual/libc" -src_compile() { - mkdir ${S} +S=${WORKDIR} + +src_unpack() { + cp ${FILESDIR}/{gluelog,glueklog}.c . || die +} - cd ${FILESDIR} - gcc ${CFLAGS} gluelog.c -o ${S}/gluelog || die - gcc ${CFLAGS} glueklog.c -o ${S}/glueklog || die +src_compile() { + emake gluelog glueklog || die } src_install() { - dodir /usr/sbin - dosbin ${S}/gluelog ${S}/glueklog + dosbin gluelog glueklog || die exeopts -m0750 -g wheel dodir /var/log local x |