diff options
author | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2008-05-17 23:03:49 +0000 |
---|---|---|
committer | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2008-05-17 23:03:49 +0000 |
commit | 2ffd131591771c2859807752992f309c014c7625 (patch) | |
tree | 41704bbe44d685db91e38cdced19f8948c373f04 /packages/gallery | |
parent | fd9c8887b6481d7ec02e96f2b370555f2551bcb0 (diff) |
gallery: introduce SOURCE_FORGEMIRROR variable and replace hardcoded paths with variables. Closes 2450.
Diffstat (limited to 'packages/gallery')
-rw-r--r-- | packages/gallery/gallery_1.5.5.bb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/packages/gallery/gallery_1.5.5.bb b/packages/gallery/gallery_1.5.5.bb index 5756e98567..14c7c0f4e0 100644 --- a/packages/gallery/gallery_1.5.5.bb +++ b/packages/gallery/gallery_1.5.5.bb @@ -2,21 +2,21 @@ DESCRIPTION = "The Gallery v1 web image gallery" SECTION = "apps" LICENSE = "GPL" RDEPENDS = "apache2 modphp imagemagick jhead" -PR = "r1" +PR = "r2" -SRC_URI = "http://easynews.dl.sourceforge.net/sourceforge/gallery/gallery-${PV}-pl1.tar.gz" +SRC_URI = "http://{SOURCEFORGE_MIRROR}/sourceforge/gallery/gallery-${PV}-pl1.tar.gz" S = "${WORKDIR}/gallery" inherit autotools -HTTPCONF = "/etc/apache2/httpd.conf" -DEST_DIR = "/usr/share/apache2/htdocs/" +HTTPCONF = "${sysconfdir}/apache2/httpd.conf" +DEST_DIR = "${datadir}/apache2/htdocs/" # # don't list the albums as a file - it might get auto-deleted # -FILES_${PN} = "${DEST_DIR}/gallery /etc/apache2/modules.d" +FILES_${PN} = "${DEST_DIR}/gallery ${sysconfdir}/apache2/modules.d" # No configure step for gallery @@ -31,12 +31,12 @@ do_compile() { # do_install() { - mkdir -p ${D}/${DEST_DIR} ${D}/etc/apache2/modules.d + mkdir -p ${D}/${DEST_DIR} ${D}${sysconfdir}/apache2/modules.d cp -pPR ${S} ${D}/${DEST_DIR} - cp ${FILESDIR}/gallery.conf ${D}/etc/apache2/modules.d/95_gallery.conf + cp ${FILESDIR}/gallery.conf ${D}${sysconfdir}/apache2/modules.d/95_gallery.conf } # remove the gallery code, but not the albums! pkg_postrm_${PN}() { - rm -rf ${DEST_DIR}/gallery /etc/apache2/modules.d/95_gallery.conf + rm -rf ${DEST_DIR}/gallery /${sysconfdir}/apache2/modules.d/95_gallery.conf } |