Package Details: cnijfilter-ip2700series 3.30-2

Git Clone URL: https://aur.archlinux.org/cnijfilter-ip2700series.git (read-only, click to copy)
Package Base: cnijfilter-ip2700series
Description: Canon IJ Printer Driver for Pixma IP2700 series (with cnijfilter-common330)
Upstream URL: http://support-cn.canon-asia.com/contents/CN/ZH/0100271604.html
Licenses: custom
Submitter: cyker
Maintainer: cyker
Last Packager: cyker
Votes: 7
Popularity: 0.000000
First Submitted: 2010-10-14 09:05 (UTC)
Last Updated: 2016-11-21 01:32 (UTC)

Latest Comments

1 2 Next › Last »

cyker commented on 2016-11-21 01:35 (UTC)

@Scimmia Looks like make is OK without rpmextract. Now removed. Thank you.

Scimmia commented on 2016-11-21 00:02 (UTC) (edited on 2016-11-21 00:02 (UTC) by Scimmia)

Why does this makedepend on rpmextract when it doesn't (and shouldn't) use it?

cyker commented on 2015-02-12 01:18 (UTC)

@nothy Thanks, fixed.

nothy commented on 2015-02-11 22:56 (UTC)

i got this Missing package() function in /tmp/yaourt-tmp-nothy/aur-cnijfilter-ip2700series/./PKGBUILD

Fumon commented on 2014-02-25 23:09 (UTC)

x86_64 also requires lib32-libtiff3 and I would assume i686 would need libtiff3.

Cetronix commented on 2014-01-05 19:35 (UTC)

This works on my x86_64 arch: Added: lib32-libpng12, lib32-libtiff3 (libtiff3), ghostscript # Contributor: Cyker Way <cykerway@gmail.com> # Modified: Tomas Lindquist Olsen <tomas.l.olsen@gmail.com> pkgname=cnijfilter-ip2700series pkgver=3.30 pkgrel=3 pkgdesc="Canon IJ Printer Driver for Pixma IP2700 series (with cnijfilter-common330)" url="http://support-cn.canon-asia.com/contents/CN/ZH/0100271604.html" arch=('i686' 'x86_64') license=('custom') if [ "${CARCH}" = 'x86_64' ]; then depends=('lib32-libcups' 'lib32-popt' 'lib32-libpng12' 'lib32-libtiff3' 'ghostscript') elif [ "${CARCH}" = 'i686' ]; then depends=('libcups' 'popt' 'libpng12' 'libtiff3' 'ghostscript') fi makedepends=('rpmextract') source=(http://gdlp01.c-wss.com/gds/6/0100002716/01/${pkgname}-${pkgver}-1-i386-rpm.tar.gz) md5sums=('77a18b685c8cf884e752414066473b9a') build() { cd ${pkgdir} bsdtar xvf ${srcdir}/${pkgname}-${pkgver}-1-i386-rpm/packages/cnijfilter-common-3.30-1.i386.rpm bsdtar xvf ${srcdir}/${pkgname}-${pkgver}-1-i386-rpm/packages/${pkgname}-${pkgver}-1.i386.rpm mkdir -p usr/share/licenses/${pkgname} mv usr/share/doc/${pkgname}-${pkgver}/* usr/share/licenses/${pkgname} rm -rf usr/share/doc }

<deleted-account> commented on 2012-03-30 13:38 (UTC)

Recently, the driver stopped working for me after updating several stuff with pacman -Syu. By using the debug option of CUPS, I found out that -the driver wants all stuff to be in /usr/local/*, so I removed the following lines from the PKGBUILD: mv usr/local/bin usr/bin mv usr/local/share/* usr/share/ rm -r usr/local -the driver couldn't find 'libtiff.so.3', so I installed the 'libtiff3' package from the AUR. After that, the driver worked again as expected.

cyker commented on 2012-01-13 18:03 (UTC)

@ruario Thanks, ruario. PKGBUILD is updated.

ruario commented on 2012-01-13 13:49 (UTC)

actually it seems makepkg now opens rpms (using bsdtar) for you! ;)

ruario commented on 2012-01-09 14:44 (UTC)

you don't need rpmextract or rpm2cpio. Every Arch install includes bsdtar because it is provided by the libarchive package, which pacman itself depends on. bsdtar can open rpm files itself directly, e.g. bsdtar xf ${srcdir}/${pkgname}-${pkgver}-1-i386-rpm/packages/cnijfilter-common-3.30-1.i386.rpm