1c5f4690e6
That means that version comparators are not supported anymore in hostmakedepends and makedepends. This will ensure that a pkg is always built with the same build dependencies everywhere, if the srcpkgs tree is uptodate.
67 lines
1.8 KiB
Bash
67 lines
1.8 KiB
Bash
# Template file for 'ecryptfs-utils'
|
|
pkgname=ecryptfs-utils
|
|
version=106
|
|
revision=1
|
|
lib32disabled=yes
|
|
build_style=gnu-configure
|
|
configure_args="--with-pamdir=/usr/lib/security --enable-gpg --enable-gui
|
|
--with-gpgme-prefix=${XBPS_CROSS_BASE}/usr"
|
|
hostmakedepends="automake gettext-devel glib-devel libtool pkg-config intltool swig"
|
|
makedepends="python-devel pam-devel nss-devel libressl-devel keyutils-devel gpgme-devel gtk+-devel"
|
|
short_desc="ecryptfs cryptographic filesystem (utilities)"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="GPL-3"
|
|
homepage="http://ecryptfs.org/"
|
|
distfiles="http://launchpad.net/ecryptfs/trunk/${version}/+download/${pkgname}_${version}.orig.tar.gz"
|
|
checksum=173e0add31e898789076103723894964ce474233988ef8d3309021bad8a7b6b4
|
|
|
|
CPPFLAGS="-D_FILE_OFFSET_BITS=64"
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
# XXX disable python subpkg for now
|
|
configure_args+=" --disable-pywrap"
|
|
fi
|
|
|
|
pre_configure() {
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
}
|
|
|
|
post_install() {
|
|
vmkdir usr
|
|
mv ${DESTDIR}/sbin ${DESTDIR}/usr
|
|
chmod +s ${DESTDIR}/usr/sbin/mount.ecryptfs_private
|
|
|
|
vmkdir usr/lib/modules-load.d
|
|
echo "ecryptfs" > ${DESTDIR}/usr/lib/modules-load.d/ecryptfs.conf
|
|
chmod 644 ${DESTDIR}/usr/lib/modules-load.d/ecryptfs.conf
|
|
}
|
|
|
|
libecryptfs_package() {
|
|
short_desc="ecryptfs cryptographic filesystem (library)"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
|
|
libecryptfs-devel_package() {
|
|
depends="keyutils-devel libecryptfs>=${version}_${revision}"
|
|
short_desc="ecryptfs cryptographic filesystem (development)"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
|
|
ecryptfs-utils-python_package() {
|
|
lib32disabled=yes
|
|
depends="python"
|
|
short_desc="ecryptfs cryptographic filesystem (python binding)"
|
|
pkg_install() {
|
|
vmove usr/lib/python2.7
|
|
}
|
|
}
|
|
|
|
fi
|