blob: 66b42a1b1acef0d627aeaa438b7dff046d4485af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/odsclient/odsclient-1.02.ebuild,v 1.2 2003/09/07 00:09:56 msterret Exp $
inherit eutils
DESCRIPTION="Client for the Open Domain Server's dynamic dns"
HOMEPAGE="http://www.ods.org/"
SRC_URI="http://www.ods.org/${P}.tar.gz
mirror://gentoo/${PN}.patch"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/glibc"
src_compile() {
sed -i "s:CFLAGS=-O2::" Makefile
epatch ${DISTDIR}/${PN}.patch
emake || die
}
src_install() {
dosbin odsclient
}
|