Major infrastructure changes, part 2.

* Moved helpers, common and triggers dirs into xbps-src, where
  they belong.
* Renamed the templates dir to srcpkgs, it was so redundant before.
* Make it possible to add subpkgs with no restriction in names, for
  example udev now has a subpkgs called "libgudev". Previously
  subpkgs were named "${sourcepkg}-${pkgname}".
* xbps-src: changed to look for template files in current directory.
  That means that most arguments from the targets have been removed.
* xbps-src: added a reinstall target, to remove + install.
* xbps-src: do not overwrite binpkgs by default, skip them.

And more that I forgot because it's a mega-commit that I've been
working for some days already...

--HG--
extra : convert_revision : 0f466878584d1e6895d2a234f07ea1b2d1e61b3e
This commit is contained in:
Juan RP
2009-11-22 08:31:44 +01:00
parent 3c58e3ad40
commit 85cc462e1d
1305 changed files with 719 additions and 654 deletions

2
srcpkgs/librsvg/depends Normal file
View File

@@ -0,0 +1,2 @@
abi_depends=">=2.26.0"
api_depends="${abi_depends}"

View File

@@ -0,0 +1,32 @@
# Template file for 'librsvg-devel'.
#
short_desc="${sourcepkg} development files"
long_desc="${long_desc}
This package contains files for development, headers, static libs, etc."
Add_dependency run librsvg
Add_dependency run python
revision=1
do_install()
{
local gtk_abiver="2.10.0"
for dir in engines loaders; do
mkdir -p ${DESTDIR}/usr/lib/gtk-2.0/${gtk_abiver}/${dir}
done
mkdir -p ${DESTDIR}/usr/share ${DESTDIR}/usr/bin \
${DESTDIR}/usr/share/man
mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr
mv ${SRCPKGDESTDIR}/usr/lib/lib*.*a ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/lib/lib*.so ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/lib/pkgconfig ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/share/gtk-doc ${DESTDIR}/usr/share
mv ${SRCPKGDESTDIR}/usr/share/man/man1 ${DESTDIR}/usr/share/man
for dir in engines loaders; do
mv ${SRCPKGDESTDIR}/usr/lib/gtk-2.0/${gtk_abiver}/${dir}/*.*a \
${DESTDIR}//usr/lib/gtk-2.0/${gtk_abiver}/${dir}
done
}

32
srcpkgs/librsvg/template Normal file
View File

@@ -0,0 +1,32 @@
# Template build file for 'librsvg'.
pkgname=librsvg
version=2.26.0
revision=1
distfiles="${GNOME_SITE}/$pkgname/2.26/$pkgname-$version.tar.bz2"
build_style=gnu_configure
configure_args="--with-gimp=no --with-tags= --disable-mozilla-plugin"
short_desc="SVG library for GNOME2"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=fdcab5f0d86198d8cbd4ffe5b333076f75e707f6d7e4af5e87a8644ff7533bea
long_desc="
librsvg is Raph's scalable vector graphics library. It provides support for
SVG graphics, and is used by the GNOME desktop.
This package provides the librsvg library as well as some addons: a pixbuf
loader and a theme engine for the GTK+ toolkit."
triggers="gtk-immodules gtk-pixbuf-loaders"
subpackages="$pkgname-devel"
Add_dependency build pkg-config
Add_dependency build intltool
Add_dependency build python
Add_dependency full glibc
Add_dependency full gtk+
Add_dependency full libcroco
Add_dependency full libgsf
post_install()
{
rm -rf ${DESTDIR}/usr/lib/mozilla
}