Magellan Linux

Annotation of /trunk/extras/libnl3/libnl3-3.2.16-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 14252 - (hide annotations) (download)
Tue Dec 4 13:13:20 2012 UTC (11 years, 6 months ago) by niro
File size: 665 byte(s)
-typo
1 niro 14209 # $Id$
2    
3     PNAME="libnl3"
4     PVER="3.2.16"
5     PBUILD="r1"
6    
7     PCAT="dev-libs"
8    
9     DESCRIPTION="libnl3 is a library for applications dealing with netlink sockets."
10     HOMEPAGE="http://www.infradead.org/~tgr/libnl/"
11    
12     DEPEND=">= virtual/glibc"
13    
14     SRCFILE="${PNAME/3/}-${PVER}.tar.gz"
15     SRCDIR="${BUILDDIR}/${PNAME/3/}-${PVER}"
16    
17     sminclude mbuild
18    
19     SRC_URI=(
20     http://www.infradead.org/~tgr/${PNAME/3/}/files/${SRCFILE}
21     mirror://${PNAME}/${SRCFILE}
22 niro 14251 mirror://${PNAME}/${PNAME}-${PVER}-lex-failure.patch
23 niro 14209 )
24    
25     # fake
26     UP2DATE="updatecmd ${HOMEPAGE} | firsttarball gz"
27 niro 14251
28 niro 14252 src_prepare()
29 niro 14251 {
30     munpack ${SRCFILE} || die
31     cd ${SRCDIR}
32    
33     # fix flex issues
34     mpatch ${PNAME}-${PVER}-lex-failure.patch || die
35     }