version bump to 1.1.11 and 1.1.12
This commit is contained in:
parent
2ff1f9723b
commit
68dd8605fe
3 changed files with 47 additions and 3 deletions
|
@ -1,2 +1,4 @@
|
|||
DIST silc-toolkit-1.1.11.tar.gz 2603016 SHA256 34a6f1b786f5c4d4138ffc5b2596e6709531e8ce8dc1cd1764362a8329ec53dc SHA512 4b1f09d13833bead6d77d2115820e8776f98e8b867a3ca99965d358cc62ccde8709b56f3ad7ba28652dcd145815ab0ec1bde1466d4b5395dc1378822432b3dac WHIRLPOOL e8acc6a6cdbd674de184fe6b40ef4ceff18a1a28952393a5023d34536f346f4d84a85ee3e8aa85c9786140ba4c6a0d693d8e8bd60485941012164fa4b1d64b24
|
||||
DIST silc-toolkit-1.1.12.tar.gz 2596719 SHA256 7e0c3f73471b54ba55f5ac42979ed0d642afd8ae18a973c16b2a667c6c72db56 SHA512 21393e9e7880670550e2325aa2eeda65a802bca87888b6d807ebed3a86844428b2a99f7434e6208ff61308df3767a12dd5d047dc546197bb78782811cf2b5e60 WHIRLPOOL cd3d4fe2649d62fa58254e17124715417bfa4280f11fcdd3c11ab3e94705a47a83d9634fe294b41022671be03697b611fd3bfc7d6b7d117bfac8aa20d8ade6f0
|
||||
EBUILD silc-toolkit-1.1.11.ebuild 1099 SHA256 d21d5aad489da3944b281161520f641e464c07e816e787b3e5b854fc5b1d8342 SHA512 5af4fbafda8509328749976b31a61a810d70d8554e2ed9f04aa38584a1008e04f6ee96cce3204ee07b65edd124ad0138e12bdbc9dc5d73814559ac33398d5335 WHIRLPOOL f45ca6a13613d56f88b87e444242d1ab23d315d3df8a1b77a6779eb278e0fa3247c4a60237fff37a97e37d26fce7aca679c300ca470b0d1e103fd9e638651c93
|
||||
EBUILD silc-toolkit-1.1.12.ebuild 1099 SHA256 d21d5aad489da3944b281161520f641e464c07e816e787b3e5b854fc5b1d8342 SHA512 5af4fbafda8509328749976b31a61a810d70d8554e2ed9f04aa38584a1008e04f6ee96cce3204ee07b65edd124ad0138e12bdbc9dc5d73814559ac33398d5335 WHIRLPOOL f45ca6a13613d56f88b87e444242d1ab23d315d3df8a1b77a6779eb278e0fa3247c4a60237fff37a97e37d26fce7aca679c300ca470b0d1e103fd9e638651c93
|
||||
|
|
|
@ -2,17 +2,18 @@
|
|||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=4
|
||||
EAPI=5
|
||||
|
||||
inherit eutils
|
||||
|
||||
DESCRIPTION="SDK for the SILC protocol"
|
||||
HOMEPAGE="http://silcnet.org/"
|
||||
SRC_URI="http://silcnet.org/download/toolkit/sources/${P}.tar.bz2"
|
||||
#SRC_URI="http://silcnet.org/download/toolkit/sources/${P}.tar.bz2"
|
||||
SRC_URI="mirror://sourceforge/silc/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
|
||||
IUSE="debug ipv6"
|
||||
|
||||
RDEPEND=""
|
||||
|
|
41
net-im/silc-toolkit/silc-toolkit-1.1.12.ebuild
Normal file
41
net-im/silc-toolkit/silc-toolkit-1.1.12.ebuild
Normal file
|
@ -0,0 +1,41 @@
|
|||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils
|
||||
|
||||
DESCRIPTION="SDK for the SILC protocol"
|
||||
HOMEPAGE="http://silcnet.org/"
|
||||
#SRC_URI="http://silcnet.org/download/toolkit/sources/${P}.tar.bz2"
|
||||
SRC_URI="mirror://sourceforge/silc/${P}.tar.gz"
|
||||
|
||||
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