Magellan Linux

Annotation of /branches/R11-stable/extras/gd/gd-2.1.0-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 21116 - (hide annotations) (download)
Tue Mar 11 14:22:11 2014 UTC (10 years, 3 months ago) by niro
Original Path: trunk/extras/gd/gd-2.1.0-r1.smage2
File size: 874 byte(s)
-fixed SRC_URI, SRCFILE/DIR and removed autoreconf
1 niro 21115 # $Id$
2    
3     PNAME="gd"
4     PVER="2.1.0"
5     PBUILD="r1"
6    
7     PCAT="media-libs"
8    
9     DESCRIPTION="GD is an open source code library for the dynamic creation of images by programmers."
10     HOMEPAGE="http://www.libgd.org/"
11    
12     DEPEND=">= media-libs/libjpeg-8
13     >= media-libs/libpng-1.5
14     >= media-libs/freetype-2.4
15     >= media-libs/fontconfig-2.8
16     >= x11-libs/libX11-1.3
17     >= x11-libs/libXau-1
18     >= x11-libs/libxcb-1.7
19     >= x11-libs/libXdmcp-1
20     >= x11-libs/libXpm-3
21     >= sys-libs/zlib-1.2.5"
22    
23 niro 21116 SRCFILE="lib${PNAME}-${PVER}.tar.xz"
24     SRCDIR="${BUILDDIR}/lib${PNAME}-${PVER}"
25 niro 21115
26     sminclude mbuild
27    
28     SRC_URI=(
29 niro 21116 https://bitbucket.org/libgd/gd-libgd/downloads/${SRCFILE}
30 niro 21115 mirror://${PNAME}/${SRCFILE}
31     )
32    
33     UP2DATE="updatecmd https://bitbucket.org/libgd/gd-libgd/downloads | highesttarball xz"
34    
35     src_compile()
36     {
37     cd ${SRCDIR}
38    
39     mconfigure --disable-rpath --with-jpeg --with-png --with-xpm --with-freetype || die
40     mmake || die
41     }