Magellan Linux

Annotation of /branches/R11-unstable/extras/xerces2-j/xerces2-j-2.11.0-r3.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 25874 - (hide annotations) (download)
Tue Nov 25 04:25:52 2014 UTC (9 years, 5 months ago) by niro
File size: 815 byte(s)
-release branches/R11-unstable
1 niro 9678 # $Id$
2    
3     PNAME="xerces2-j"
4     PVER="2.11.0"
5     PBUILD="r3"
6    
7 niro 10518 PCAT="dev-java"
8 niro 9678
9     DEPEND=">= virtual/java"
10    
11     DESCRIPTION="Xerces2-J is a validating XML parser written in a portable subset of Java."
12     HOMEPAGE="http://xml.apache.org/xerces2-j/"
13    
14     SRCFILE="Xerces-J-bin.${PVER}.tar.gz"
15     SRCDIR="${BUILDDIR}/xerces-${PVER//./_}"
16    
17     sminclude java
18    
19     SRC_URI=(
20     http://www.apache.org/dist/xerces/j/binaries/${SRCFILE}
21     mirror://${PNAME}/${SRCFILE}
22     )
23    
24     UP2DATE="updatecmd http://www.apache.org/dist/xerces/j/binaries/ | grep 'tar.gz' | sed -n -e 's/.*Xerces-J-bin\.\(.*\)\.tar.*/\1/;$ p'"
25    
26     src_prepare()
27     {
28     munpack ${SRCFILE} || die
29     cd ${SRCDIR}
30     rm xercesSamples.jar || die
31     }
32    
33     src_install()
34     {
35     cd ${SRCDIR} || die
36 niro 10518 minstalljar resolver.jar serializer.jar xercesImpl.jar xml-apis.jar || die
37 niro 9678 minstalldocs LICENSE NOTICE Readme.html || die
38     }