summaryrefslogtreecommitdiff
path: root/extra/lesstif/PKGBUILD
blob: 5d0d9135032e5194b45a40178db22f7ec186a7cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# $Id: PKGBUILD 143913 2011-11-30 20:33:57Z andrea $
# Maintainer:
# Contributor: Eric Belanger <eric@archlinux.org>
# Contributor: John Proctor <jproctor@prium.net>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>

pkgname=lesstif
pkgver=0.95.2
pkgrel=4
pkgdesc="LGPL'd re-implementation of Motif"
arch=('i686' 'x86_64')
url="http://www.lesstif.org/"
license=('LGPL' 'MIT')
depends=('freetype2' 'libxt' 'libxp')
options=('!libtool' '!buildflags')
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2"
        'LICENSE'
        '040_fedora_XxxxProperty-64bit.diff')
md5sums=('754187dbac09fcf5d18296437e72a32f'
         'b1f320192a9154f72d83e9d3d5a25a2f'
         '30e2c0babc84696af089d55cb9cb2908')

build() {
	cd "${srcdir}"/${pkgname}-${pkgver}

    # https://bugs.archlinux.org/task/17712
	patch -p1 -i "${srcdir}"/040_fedora_XxxxProperty-64bit.diff

	./configure --prefix=/usr \
      --mandir=/usr/share/man \
	  --docdir=/usr/share/doc \
      --enable-production \
	  --enable-nonstandard-conversions \
      --enable-editres \
      --with-xdnd \
      --enable-build-21 \
      --disable-debug \
	  --enable-static

	# fix linkage against already installed version
	perl -pi -e 's/^(hardcode_into_libs)=.*/$1=no/' libtool

	make

	# fix linkage against already installed version
	for f in `find . -name \*.la -type f` ; do
	    perl -pi -e 's/^(relink_command=.*)/# $1/' $f
	done

	make -C lib/Mrm-2.1
}

package() {
	cd "${srcdir}"/${pkgname}-${pkgver}

	make -C lib/Mrm-2.1 DESTDIR="${pkgdir}" install
	make appdir=/usr/share/X11/app-defaults rootdir=/usr/share/LessTif \
	    DESTDIR="${pkgdir}" install
	install -Dm644 "${srcdir}"/LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
}