Magellan Linux

Contents of /branches/R11-stable/core/libidn/libidn-1.28-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 18440 - (show annotations) (download)
Wed Jul 17 09:00:12 2013 UTC (10 years, 9 months ago) by niro
File size: 747 byte(s)
-release branches/R11-stable
1 # $Id$
2
3 PNAME="libidn"
4 PVER="1.28"
5 PBUILD="r1"
6
7 PCAT="net-dns"
8
9 DESCRIPTION="GNU Libidn is an implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names working group, used for internationalized domain names."
10 HOMEPAGE="http://www.gnu.org/software/libidn/"
11
12 DEPEND=">= virtual/glibc"
13
14 SRCFILE="${PNAME}-${PVER}.tar.gz"
15 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
16
17 sminclude mbuild
18
19 SRC_URI=(
20 gnu://${PNAME}/${SRCFILE}
21 ftp://alpha.gnu.org/pub/gnu/${PNAME}/${SRCFILE}
22 mirror://${PNAME}/${SRCFILE}
23 )
24
25 UP2DATE="updatecmd_gnu ${PNAME} gz"
26
27 src_compile()
28 {
29 cd ${SRCDIR}
30
31 # fix compile issues -> chost != build breaks the build
32 mconfigure --build=${CHOST} --host=${CHOST} || die
33 mmake || die
34 }