blob: e5f3fe971a82f212a42a09742c01c373cb3e0659 (
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
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/linux-eoip/linux-eoip-0.5.ebuild,v 1.2 2012/11/21 19:01:23 pinkbyte Exp $
EAPI=4
AUTOTOOLS_AUTORECONF=1
AUTOTOOLS_IN_SOURCE_BUILD=1
inherit eutils autotools-utils
DESCRIPTION="Linux support for proprietary MIkrotik EoIP protocol"
HOMEPAGE="http://code.google.com/p/linux-eoip/"
SRC_URI="http://linux-eoip.googlecode.com/files/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="
dev-libs/lzo:2
"
RDEPEND="${DEPEND}"
DOCS=( README )
src_prepare() {
esvn_clean
sed -e 's/bin_PROGRAMS/sbin_PROGRAMS/g' -i Makefile.am
autotools-utils_src_prepare
}
src_install() {
autotools-utils_src_install
insinto /etc
doins vip.cfg eoip.cfg
}
|