# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= libpaper VERSION= 1.1.26 KEYWORDS= print VARIANTS= standard SDESC[standard]= Library for paper size management HOMEPAGE= https://packages.qa.debian.org/libp/libpaper.html CONTACT= nobody DOWNLOAD_GROUPS= main SITES[main]= http://ftp.debian.org/debian/pool/main/libp/libpaper/ DISTFILE[1]= libpaper_1.1.26.tar.gz:main DF_INDEX= 1 SPKGS[standard]= single OPTIONS_AVAILABLE= none OPTIONS_STANDARD= none USES= autoreconf libtool DISTNAME= libpaper-1.1.26 FPC_EQUIVALENT= print/libpaper MUST_CONFIGURE= gnu INSTALL_TARGET= install-strip post-install: (cd ${WRKDIR} && \ ${INSTALL_DATA} papersize.a4 papersize.letter \ ${STAGEDIR}${PREFIX}/etc) post-configure: ${REINPLACE_CMD} -e 's|$${prefix}|${PREFIX}|g' \ ${WRKSRC}/config.h ${WRKSRC}/src/paperconfig post-extract: ${ECHO_CMD} a4 > ${WRKDIR}/papersize.a4 ${ECHO_CMD} letter > ${WRKDIR}/papersize.letter [FILE:381:descriptions/desc.single] The paper library and accompanying files are intended to provide a simple way for applications to take actions based on a system- or user-specified paper size. This release is quite minimal, its purpose being to provide really basic functions (obtaining the system paper name and getting the height and width of a given kind of paper) that applications can immediately integrate. [FILE:101:distinfo] a6950b67df66a53e974ffe0baec9a52775b909dd2c51497139af2af4e46519b1 42304 libpaper_1.1.26.tar.gz [FILE:544:manifests/plist.single] bin/paperconf etc/ papersize.a4 papersize.letter include/paper.h lib/ libpaper.a libpaper.so libpaper.so.1 libpaper.so.1.1.2 sbin/paperconfig share/man/man1/paperconf.1.gz share/man/man3/ defaultpapername.3.gz defaultpapersizefile.3.gz paperdone.3.gz paperfirst.3.gz paperinfo.3.gz paperinit.3.gz paperlast.3.gz papernext.3.gz paperprev.3.gz paperpsheight.3.gz paperpsname.3.gz paperpswidth.3.gz paperwithsize.3.gz systempapername.3.gz systempapersizefile.3.gz share/man/man5/papersize.5.gz share/man/man8/paperconfig.8.gz [FILE:711:patches/patch-lib_Makefile.am] --- lib/Makefile.am.orig 2006-01-07 21:17:55 UTC +++ lib/Makefile.am @@ -11,11 +11,11 @@ include_HEADERS = paper.h EXTRA_DIST = paperspecs paperspecs.h: paperspecs Makefile - echo ' /* This file has been automaticaly generated.' >$@ + echo ' /* This file has been automatically generated.' >$@ echo ' Edit paperspecs to make changes to the papers specifications. */' >>$@ echo >>$@ env LANG=C LC_ALL=C awk '{ factor = 1.0; \ if ($$4 == "mm") factor = 72.0 / 25.4; \ if ($$4 == "in") factor = 72.0; \ printf(" { \"%s\", %5f, %5f },\n", \ - $$1, $$2 * factor, $$3 * factor); }' < $< >> $@ + $$1, $$2 * factor, $$3 * factor); }' < paperspecs >> $@