mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-13 20:52:20 +01:00
73 lines
2.2 KiB
Plaintext
73 lines
2.2 KiB
Plaintext
# Contributor: Cameron Banta <cbanta@gmail.com>
|
|
# Maintainer: Cameron Banta <cbanta@gmail.com>
|
|
pkgname=ghostscript
|
|
pkgver=9.00
|
|
pkgrel=1
|
|
pkgdesc="An interpreter for the PostScript language and for PDF"
|
|
url="http://ghostscript.com/"
|
|
arch="all"
|
|
license="GPL"
|
|
makedepends="autoconf automake jpeg-dev libpng-dev jasper-dev expat-dev zlib-dev tiff-dev libiconv-dev"
|
|
subpackages="$pkgname-doc $pkgname-dev"
|
|
source="http://ghostscript.com/releases/$pkgname-$pkgver.tar.gz
|
|
ghostscript-system-jasper.patch"
|
|
|
|
prepare() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
# force it to use system-libs
|
|
rm -rf jpeg libpng jasper expat tiff zlib
|
|
|
|
# fix build with systems jasper
|
|
patch -Np1 -i "${srcdir}"/ghostscript-system-jasper.patch || return 1
|
|
|
|
# fix parallel builds
|
|
sed -i -e 's/ECHO_XE/ECHOGS_XE/g' \
|
|
-e 's/^\($(GLOBJ)md5.$(OBJ) :.*\)/\1 $(ECHOGS_XE)/' \
|
|
base/lib.mak || return 1
|
|
|
|
./autogen.sh \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--docdir=/usr/share/doc/"$pkgname" \
|
|
--enable-dynamic \
|
|
--with-system-libtiff \
|
|
--without-ijs --without-x \
|
|
--with-jbig2dec \
|
|
--without-omni \
|
|
--with-drivers=FILES \
|
|
--with-fontpath=/usr/share/fonts/Type1:/usr/share/fonts \
|
|
--disable-cups --disable-gtk --disable-cairo \
|
|
--disable-compile-inits # needed for linking with system-zlib
|
|
}
|
|
|
|
build(){
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make so all || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make -j1 DESTDIR="${pkgdir}" install soinstall || return 1
|
|
|
|
#create empty dir for future fonts
|
|
mkdir -p "${pkgdir}"/usr/share/fonts/Type1
|
|
|
|
# license and copying
|
|
install -m644 -D "$srcdir/$pkgname-$pkgver/LICENSE" \
|
|
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
install -m644 -D "$srcdir/$pkgname-$pkgver/doc/COPYING" \
|
|
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
|
|
# make the doc and examples more alpine like
|
|
# (the --docdir above doesn't seem to work so good)
|
|
mkdir -p "$pkgdir/usr/share/doc/$pkgname"
|
|
mv "$pkgdir/usr/share/$pkgname/$pkgver/doc" "$pkgdir/usr/share/doc/$pkgname"
|
|
mv "$pkgdir/usr/share/$pkgname/$pkgver/examples" "$pkgdir/usr/share/doc/$pkgname"
|
|
}
|
|
|
|
md5sums="a402462478b4cdda3e1816899227b845 ghostscript-9.00.tar.gz
|
|
f5bc029b0ed05ac8d602bff0e1c021bd ghostscript-system-jasper.patch"
|