Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 18367 - (hide annotations) (download)
Mon Jul 15 08:58:46 2013 UTC (10 years, 10 months ago) by niro
Original Path: trunk/core/libidn/libidn-1.28-r1.smage2
File size: 747 byte(s)
auto added: ver bump to 1.28-r1
1 niro 18367 # $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     }