copia del ebuild de silc-toolkit de portage
This commit is contained in:
parent
66cae6d78e
commit
0a9c4a8259
1 changed files with 40 additions and 0 deletions
40
net-im/silc-toolkit/silc-toolkit-1.1.10.ebuild
Normal file
40
net-im/silc-toolkit/silc-toolkit-1.1.10.ebuild
Normal file
|
@ -0,0 +1,40 @@
|
|||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit eutils
|
||||
|
||||
DESCRIPTION="SDK for the SILC protocol"
|
||||
HOMEPAGE="http://silcnet.org/"
|
||||
SRC_URI="http://silcnet.org/download/toolkit/sources/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
|
||||
IUSE="debug ipv6"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="virtual/pkgconfig"
|
||||
|
||||
src_prepare() {
|
||||
# They have incorrect DESTDIR usage
|
||||
sed -i \
|
||||
"s/^\(pkgconfigdir =\) \$(libdir)\/pkgconfig/\1 \/usr\/$(get_libdir)\/pkgconfig/"\
|
||||
"${S}"/lib/Makefile.{am,in}
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--datadir="${EPREFIX}/usr/share/${PN}" \
|
||||
--datarootdir="${EPREFIX}/usr/share/${PN}" \
|
||||
--includedir="${EPREFIX}/usr/include/${PN}" \
|
||||
--sysconfdir="${EPREFIX}/etc/silc" \
|
||||
--libdir="${EPREFIX}/usr/$(get_libdir)/${PN}" \
|
||||
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
|
||||
--disable-optimizations \
|
||||
--with-simdir=/usr/$(get_libdir)/${PN}/modules \
|
||||
$(use_enable debug) \
|
||||
$(use_enable ipv6)
|
||||
}
|
Loading…
Reference in a new issue