blob: 75e3e39cedc2e5338a94a94dafafd290638aa754 (
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
|
# Maintainer: Adrian Perez de Castro <aperez@igalia.com>
pkgdesc='Omron LUNA-I/LUNA-88K, Sharp X68030, and NEWS NWS-1750 emulator'
pkgname=nono
pkgver=1.3.0
pkgrel=1
url=http://www.pastel-flower.jp/~isaki/nono
license=(custom)
arch=(x86_64)
depends=(libbsd libkqueue libslirp termcap wxgtk3)
makedepends=(bmake freebsd-mk gettext)
source=("${url}/archive/${pkgname}-${pkgver}.tar.gz")
b2sums=('753c54f1c7ab2736a7e768d37fa39319cd3c9ca6334bbb6502049a5b434902dddeccdaa36061585c2de35d6f91f847b061ccc42f5365df4de9170e515f163e48')
prepare ()
{
# The configure script searches for <kqueue/sys/event.h> instead of the
# regular location <sys/event.h> as used by the libkqueue package, so
# provide a local directory with the expected layout.
mkdir -p "${srcdir}/include/kqueue/"
ln -vsnf /usr/include/sys "${srcdir}/include/kqueue/sys"
}
build ()
{
cd "${pkgname}-${pkgver}"
./configure \
CPPFLAGS="${CPPFLAGS} -I${srcdir}/include" \
WX_CONFIG=/usr/bin/wx-config-gtk3 \
--prefix=/usr
# The configuration generated by autoconf does NOT include CPPFLAGS,
# so add the include directory for the mangled libkqueue headers now.
sed -i "/^C\(C\|XX\)=/s,$, -I${srcdir}/include," \
Makefile.cfg
echo 'CXXFLAGS+= -Wno-error=template-id-cdtor -Wno-error=deprecated-declarations' >> Makefile.cfg
bmake -DNOTEST -m/usr/share/mk-freebsd
}
package ()
{
cd "${pkgname}-${pkgver}"
bmake -DNOTEST -m/usr/share/mk-freebsd DESTDIR="${pkgdir}" install
install -Dm644 doc/nono-license.txt \
"${pkgdir}/usr/share/licenses/${pkgname}/license.txt"
}
|