Magellan Linux

Annotation of /branches/R11-unstable/core/groff/groff-1.22.3-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 23256 - (hide annotations) (download)
Wed Nov 5 13:59:01 2014 UTC (9 years, 6 months ago) by niro
Original Path: trunk/core/groff/groff-1.22.3-r1.smage2
File size: 1682 byte(s)
auto added: ver bump to 1.22.3-r1
1 niro 23256 # $Id$
2    
3     PNAME="groff"
4     PVER="1.22.3"
5     PBUILD="r1"
6    
7     PCAT="sys-apps"
8    
9     DESCRIPTION="Text formatter used for man pages."
10     HOMEPAGE="http://www.gnu.org/software/groff/groff.html"
11    
12     DEPEND=">= virtual/glibc
13     >= sys-libs/libstdc++-4.8
14     >= sys-apps/texinfo-5"
15    
16     SRCFILE="${PNAME}-${PVER}.tar.gz"
17     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
18    
19     # defines default page layout, may become a virtual
20     # -> groff-A4, groff-letter = virtual/groff etc
21     GROFFPAGE=A4
22    
23     sminclude mtools
24    
25     SRC_URI=(
26     gnu://${PNAME}/${SRCFILE}
27     mirror://${PNAME}/${SRCFILE}
28     mirror://${PNAME}/${PNAME}-1.20.1-no-netpbm-depend.patch
29     mirror://${PNAME}/${PNAME}-1.19.2-man-unicode-dashes.patch
30     )
31    
32     UP2DATE="updatecmd http://ftp.gnu.org/gnu/${PNAME}/|grep tar.gz$|sed 's/.*-\(.*\)\.t.*/\1/'|sort|sed -n '$ p'"
33    
34     src_prepare()
35     {
36     munpack ${SRCFILE} || die
37     cd ${SRCDIR}
38    
39     # do not depend on netpbm
40     mpatch ${PNAME}-1.20.1-no-netpbm-depend.patch || die
41    
42     # make dashes the same as minus on the keyboard so that you
43     # can search for it
44     mpatch ${PNAME}-1.19.2-man-unicode-dashes.patch || die
45     }
46    
47     src_compile()
48     {
49     cd ${SRCDIR}
50    
51     # do not use mconfigure, this package is broken
52     # and do not use the parallel-make patch from gentoo, its broken too!!
53     PAGE=${GROFFPAGE} ./configure \
54     --prefix=/usr \
55     --libdir='${prefix}'/$(mlibdir) \
56     --without-x || die
57    
58     mmake -j1 || die
59     }
60    
61     src_install()
62     {
63     cd ${SRCDIR}
64    
65     # needed directories
66     minstalldir /usr || die
67    
68     make prefix=${BINDIR}/usr install || die
69    
70     mlink soelim /usr/bin/zsoelim || die
71     mlink eqn /usr/bin/geqn || die
72     mlink tbl /usr/bin/gtbl || die
73    
74     minstalldocs BUG-REPORT COPYING ChangeLog FDL LICENSE MANIFEST MORE.STUFF \
75     NEWS PROBLEMS PROJECTS README REVISION TODO VERSION || die
76     }